Is it posible?? if yes some tips to get me started?

jorge

Junior Contributor
Joined
Jul 13, 2003
Messages
239
Location
Belgium
Well,
What i wond to do is make a application that listens on port 999
and when:
127.0.0.1:999/user:pass-start is requested that it would load a program on the server's computer??

so is it posible? if yes how?

thanx in advance
 
Yes, it's possible. You're going to have to break your requirement down in to individual problems before you get much help, though. To start you off, you can use a TcpListener class (amongst other things) to listen for connections on a specific port. Consult the documentation for more info and examples.
 
hey sry,
back from vacation so thats why the late reply :o

ok can't find info on TcpListener, is it in msdn lib? look but got nothing. thanx in advance
 
so:
Visual Basic:
Dim server As New TcpListener("0.0.0.0:999")
server.start()
'will start the to listen on port 999 on all IP's on this computer?
That avout i'll i can figure out :mad:
 
Back
Top