Asp.Net application/web service not working on Vista/IIS7: access right problem?

Posted by Achim on Stack Overflow See other posts from Stack Overflow or by Achim
Published on 2009-08-13T09:14:53Z Indexed on 2010/04/10 19:03 UTC
Read the original article Hit count: 383

Filed under:
|
|
|

I have an .Net 3.5 based web service running at http://localhost/serivce.svc/. Then I have a Asp.Net application running at http://localhost/myApp. In Application_Load my App reads some XML configuration from the web service. That works fine on my machine, but:

  • On Vista with IIS7 the request to the web services fails.
  • The web service can be accessed via the browser without any problem.
  • I configured the app pool of my App to run as admin. I added the admin to the IIS_USRS group, but it still cannot access the web service. impersonate=true/false seems not to make a difference.

© Stack Overflow or respective owner

Related posts about iis7

Related posts about ASP.NET