you have to open the port number on the windows firewall software on your
machine. look under control panel->services->windows firewall
the port number is not 80, because you configured vs to run the standadlone
test webserver which requests a free port from the portmapper (this means
the port number is not stable. i use iis so not sure if you can configure a
fixed port number for the test webserver).
-- bruce (sqlwork.com)
>I have the simple Hello World web service running in debug mode on my
> development machine
[quoted text clipped - 31 lines]
>
> Please help.
Hello, Naveed.
To specify the Web server for an already-created Web site,
open your local website with VS.NET and, in the Solution Explorer,
right-click the name of the Web site for which you want
to specify a Web server, and then click Property Pages.
In the Property Pages dialog box, click the Start Options tab.
Under Server, click Use custom server.
In the Base URL box, type the URL that Visual Web Developer
should start when running the current Web site. You can use localhost.
From that point on, the VS.NET IDE will not use the internal web server,
but will use IIS to open your pages, i.e., if you are working on default.aspx,
it will be opened as : http://localhost/default.aspx
This assumes that you have IIS 5.1 installed on Win XP Pro.
If you don't have it installed, install it before you do this.
Also, now you will only need to open port 80 on the firewall,
instead of having to open all the ports above 1024, since the
internal web server ( which you won't use any more ) runs
on a random port above 1024.
Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
>I have the simple Hello World web service running in debug mode on my
> development machine
[quoted text clipped - 27 lines]
>
> Please help.
Naveed Ahmed - 19 Oct 2005 23:38 GMT
Thanks, Juan, that fixed the problem.
Naveed
> Hello, Naveed.
>
[quoted text clipped - 61 lines]
>>
>> Please help.
Scott Allen - 20 Oct 2005 13:50 GMT
>Also, now you will only need to open port 80 on the firewall,
>instead of having to open all the ports above 1024, since the
>internal web server ( which you won't use any more ) runs
>on a random port above 1024.
I believe the WebDev server drops any connections from a remote host,
so even opening the firewall doesn't help.
--
Scott
http://www.OdeToCode.com/blogs/scott/