Reputation: 58873
in a standard .NET webservice (lie the basic sample "hello word" one created by VisualStudio), how can I access the raw call coming from a client? Thanks
Upvotes: 1
Views: 702
Reputation: 2715
HttpContext.Current.Request
contains the information of the incoming request.
Upvotes: 0
Reputation: 38503
On Firefox you can view requests and response with Firebug, I like fiddle as well.
Upvotes: 0
Reputation: 18982
Use a proxy in WS client
http://www.pocketsoap.com/tcptrace/
Upvotes: 0