|
-
Apr 10th, 2005, 04:17 AM
#1
Thread Starter
New Member
how to listen to port 80
help me to write a code that listen to port 80!!!
-
Apr 10th, 2005, 04:30 AM
#2
Hyperactive Member
Re: how to listen to port 80
Code:
Private Sub Form_Load()
Winsock1.LocalPort = "80"
Winsock1.Listen
End Sub
If my post was helpful please rate it 
-
Apr 10th, 2005, 04:34 AM
#3
Thread Starter
New Member
vb code error
i try your code
it's so simple and clear (Thanks)
but when i run it i get an error that mean : the address is in use
the error number Is : 10048
-
Apr 10th, 2005, 04:44 AM
#4
Hyperactive Member
Re: how to listen to port 80
Your internet browser uses port 80 to connect to the internet and download webpages and what not (not always the case, but its the default port for it).
You can try using other ports such as 8080 which is another standard for the internet.
Depending on what your server is for, you can set the port to what ever you want thats not assigned to a service already.
If my post was helpful please rate it 
-
Apr 10th, 2005, 04:51 AM
#5
Thread Starter
New Member
Yeeeeeeeeeeeeeeeesss
I change my IIS port from 80 to another
-
Apr 10th, 2005, 08:14 AM
#6
Re: how to listen to port 80
 Originally Posted by wiccaan
Your internet browser uses port 80 to connect to the internet and download webpages and what not (not always the case, but its the default port for it).
You can try using other ports such as 8080 which is another standard for the internet.
Depending on what your server is for, you can set the port to what ever you want thats not assigned to a service already.
Web browsers connect to port 80 on other computers but they do not listen on port 80. Web servers listen on poort 80, IIS for instance, so you'll either need to change its port or stop it altogether.
-
Apr 10th, 2005, 01:48 PM
#7
Thread Starter
New Member
Re: how to listen to port 80
you are right . Its listen for to localhost only.
i want to listen to the data that come to my computer from the internet !!!
Help.
Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|