ntlam
ntlam

Reputation: 313

IIS Network Error (tcp_error)

I have a problem when using IIS. I deployed a web project at a server, then run "local" at this server, its ok. But when I connect from another computer, I get this message

Network Error (tcp_error)

A communication error occurred: "Operation timed out" The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.

For assistance, contact your network support team.

Please help me fix this error. Sorry my English is not good. Thank you.

Upvotes: 2

Views: 19357

Answers (1)

John
John

Reputation: 1900

First up, click on start -> run -> iisreset. And test to see if that fixes it.

Secondly, if there are other sites on the same IIS try giving different ports.

Alternatively, if you are using ip address, try computer name. As a quick fix this may work.

Edit: From your comment the computer hosting the application is 172.29.3.36. Try it's name in the url i.e. http://myComputerName:8080/index.aspx. If you're running windows 7 or similar you can type 'computer name' into the start menu and select 'See the name of this computer'. Or start menu->computer (right click and select 'properties' on computer).

Also, check the iis logs for more clues on the error: c:\inetpub\logs\LogFiles. C:\Windows\System32\LogFiles\HTTPERR

Upvotes: 2

Related Questions