Using VS2012, .NET 4.0 and ASP.NET web service.
I created a web service that runs on port 8080. I also created a web client program that sends some data to the web service.
When I run the web service from VS on my local PC, netstat shows it is running on 127.0.0.1:8080. My web client program running in VS on my local system sends data and I get a positive acknowledgement back from the web service.
I tried a similar thing on Windows Server 2008 R2. I deployed the web service to a file system, and did the setup in IIS 7. I can open the web page and it shows the methods.
netstat shows the web service on 0.0.0.0:8080. If I send data from the web client, I get a timeout.
Any ideas why the web client cannot connect? Many thanks
Go to the complete details ...