Hello! I am writing an application for VKontakte. It uses server interaction via Socket. The server is on the Internet (not on the local computer). When I start the client from a local computer, everything works. And when I download VKontakte, the client does not connect to the server. Sometimes an error 2048 is issued. There is a crossdomain.xml file, as I have not already experimented with it. Here are its contents:
<?xml version="1.0"?> <cross-domain-policy> <allow-access-from domain="*" to-ports="*"/> <allow-http-request-headers-from domain="*"/> </cross-domain-policy>
Moreover, requests for scripts work fine, but the sockets are not. Tell me, what could be wrong?