views:

58

answers:

1

I'm doing some test hosting of an asp.net program I created

I can access it fine from the local machine (both debugging and pointing the virtual directory to it)

I can also access (local) by using the localhost or using the ip

however when i get on a different machine on the same network (i can ping my machine)

I get the following error:

Connection Interrupted

The connection to the server was reset while the page was loading.


The network link was interrupted while negotiating a connection. Please try again.

Does anyone have any idea what I'm doing wrong?

Crash893

EDIT:

I have duplicate this question on serverfault.com

A: 

I would generally take a snapshot of the network traffic with Wireshark (or other network sniffer) and see what is happening on the wire. Compare this to a site that works. Windows firewall, a browser proxy, or some other network software may be at fault.

BrianLy
I will give that a try
Crash893