Advanced Forum Search Results
-
In the line <socket-resource port="4502-4534" protocol="tcp" /> put just the port that ju're using. In my case it didn't work writing here a rank of ports.
-
Thanks, it's working!!!
-
Hello
I'm trying to connect an application done with version Silverlight 2 Beta 2 with another one in java using sockets.
The java application acts as server:
ServerSocket dateServer = new ServerSocket(4503);
Socket client = dateServer.accept();
...