Server Client using TCP and WebRequest

Crirus

Newcomer
Joined
Oct 14, 2003
Messages
9
Hi

I designed a server with tcp that should listen on a port (9500) for
incoming connections
I designed a client application that use WebRequest to connect to my server.
Anyway, everything works just fine on my PC.

Now the client should be able to connect from any intranet/internet computer

I started the server on a LAN computer and tryed to make a request using my
client app from another PC.

The client cant connect to the server... no request are made to server...

A request using IE reach the server... something like http://myServerPc:9500
in address bar
The same request from the client is:
wbclient.UploadData("http://myServerPc:9500", DataToSend, 240) 'timeout 4 minutes
wbclient is a WebClient modified to accept timeout
Any ideea why?
 
Back
Top