views:

49

answers:

4

Hi,

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

+3  A: 

I'd try using Fiddler.

Nate Bross
A: 

Use a proxy in WS client

http://www.pocketsoap.com/tcptrace/

WooYek
A: 

On Firefox you can view requests and response with Firebug, I like fiddle as well.

Dustin Laine
What you do in your spare time is your business my friend
Nick Allen - Tungle139
A: 

HttpContext.Current.Request contains the information of the incoming request.

Seb
Not in WCF, it doesn't.
John Saunders