Help - Long shot

  • Thread starter Thread starter David Pope
  • Start date Start date
D

David Pope

I this webservice that I have developed. The webservice is only accessible
if the Windows SP2 Firewall is turned off.

How do give someone access to my local webservice and keep the firewall
running?

thanks,

Dave
 
You should only need to open port 80 in your Firewall.

Go to the Control Panel.
Network Connections
select "Change Windows Firewall settings"
click the Exceptions tab.
Click on "Add Port..." button.
Enter a description for the port in the name field, example "Web"
Enter 80 for the port number.
Make sure TCP option is selected.
Click on OK.

This will allow ANY computer that has access to your network the
ability to connect to port 80 (web) on your computer. This will
expose all files / applications you have configured under an IIS web
site running on port 80.

If the computer trying to access your webservice is on your local
network, then you should be all set. If you are trying to allow a
computer on the Internet to access the webservice you may need to do
some more configuration. (like setup port forwarding on your router if
you have one).
 
Nice. I got it. Thanks!

Also, I had to open my 1433 for SQL Access. I can turn it off when I done
testing.

Thank you!!

Dave
 
Nice. I got it. Thanks!

Also, I had to open my 1433 for SQL Access. I can turn it off when I done
testing.

Now why did you have to do that? It's a really bad idea.
 
I will tell why I did it. I can't tell you what I have to do it that way.

My pocket pc app hits SQL Server on my wireless network directly. It was not
allowing me to communicate to SQL Server. I decided to open the 1433 port to
allow that to happen. SQL server is on my laptop.

Dave
 
That's odd. If you use SQL Server for CE, then it will sync with SQL Server
over port 80. You don't need to open 1433. Are you using SQL Server for
the CE?

--- Nick

David Pope said:
I will tell why I did it. I can't tell you what I have to do it that way.

My pocket pc app hits SQL Server on my wireless network directly. It was not
allowing me to communicate to SQL Server. I decided to open the 1433 port to
allow that to happen. SQL server is on my laptop.

Dave
 
Nah... I am using SQL Server 2000. The scanners we are using have built-in
wireless 802.11b so we can access SQL Server directly.

Dave

Nick Malik said:
That's odd. If you use SQL Server for CE, then it will sync with SQL
Server
over port 80. You don't need to open 1433. Are you using SQL Server for
the CE?

--- Nick
 
Back
Top