I am using a Web service. Can anybody tell me how to debug through it?
A:
this solution is for debugging asmx or wcf-webservices:
attach to the process of the service (w3wp), not the client!
Andreas Niedermair
2009-03-20 13:52:21
+1
A:
That all depends, do you have the webservice, or are you trying to debug the webservice through an application that connects to the webservice?
Matt Grande
2009-03-20 13:52:51
+1
A:
Attach to the instance of w3wp.exe in which your application pool is executing.
Colby Africa
2009-03-20 13:54:29
+1
A:
If you have control over the webservice, it's as simple as adding it to your solution, running it from localhost (or a server you have the proper credentials for) and then stepping into it through the IDE.
If you don't have control over it, you're out of luck and at the mercy of whomever is providing it.
Josh W.
2009-03-20 13:55:25