jorge Posted August 24, 2003 Posted August 24, 2003 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 Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Gurus* divil Posted August 26, 2003 *Gurus* Posted August 26, 2003 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. Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
jorge Posted August 30, 2003 Author Posted August 30, 2003 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 Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* Bucky Posted August 31, 2003 *Experts* Posted August 31, 2003 [mshelp]ms-help://MS.MSDNQTR.2003FEB.1033/cpref/html/frlrfSystemNetSocketsTcpListenerClassTopic.htm[/mshelp] Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
jorge Posted August 31, 2003 Author Posted August 31, 2003 so: 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: Quote Jorge - http://www.blackdot.be/?page=apache.htm
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.