ASP.NET application/web service not working on Windows Vista/IIS 7: 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
22:33 UTC
Read the original article
Hit count: 832
I have a .NET 3.5 based web service running at http://localhost/serivce.svc/. Then I have an ASP.NET application running at http://localhost/myApp. In Application_Load
my application reads some XML configuration from the web service. That works fine on my machine, but:
- On Windows Vista with IIS 7 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 application 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