Reputation: 39
Hello i have a problem of debugging in VS with iis that is :
so what i should do always is :
and here there is the pool of application in IIS :
How can i resolve this problem ?
Upvotes: 0
Views: 112
Reputation: 31721
Two options
Debug
-> Attach To Process
and filter/select w3wp.exe
. If you have multiple sites/services running its best to put different sites/services on different app pools. That way you can identify which one to attach to. Below my service I attach to is on App Pool 8.F5
debug the site/service. You may need to change some web.config values like such as allowunlisted
if dealing with restful web services. Also setting the debug
in compilation is helpful <compilation targetFramework="4.5.2" debug="true"/>
as an example.Upvotes: 2