pistacchio
pistacchio

Reputation: 58873

How to see a webservice's raw request

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

Answers (4)

Seb
Seb

Reputation: 2715

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

Upvotes: 0

Dustin Laine
Dustin Laine

Reputation: 38503

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

Upvotes: 0

Janusz Skonieczny
Janusz Skonieczny

Reputation: 18982

Use a proxy in WS client

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

Upvotes: 0

Nate
Nate

Reputation: 30636

I'd try using Fiddler.

Upvotes: 4

Related Questions