IIS 7.5 finds the local website, but cannot load it.

I am having this strange problem: I just developed a WCF service (on VS2008) and created a website (ASP.net) to use this service. When I start a website from VS2008, it works fine, and I get β€œYou created a service method”, but if I try to open this service using IIS, it will not be able to load the website at all. I get a message that "the site was found, waiting for a response", but the browser cannot load the service at all.

Any help would be greatly appreciated!

+4
source share
2 answers

There was a problem with my IIS 7.5, because ASP.NET was not registered for IIS. The following article was helpful: http://msdn.microsoft.com/en-us/library/k6h9cz8h.aspx

I used the aspnet_ "regiis -i" command and the websites started loading. Thanks for helping everyone!

+2
source

Multiple troubleshooting items

  • Verify that inetmgr is in the Web Services Extensions section, that the required frameworks are unlocked.
  • Enable tracing to view messages
  • Allow failure exception details
  • Make sure that you use the website in the correct structure (in the website properties).
  • In web.config, clean and add the svc-Integrated-4.0 handler
0
source

All Articles