Viewing the HTTP Headers from a WCF service

Ezhis

New Member
I am following the following example for my first experience with WCF.http://msdn.microsoft.com/en-us/library/bb386386.aspxI follow the routine and these are the XML codes that I can find with the inbuilt WCF Test Client that comes with Visual Studio 2010.\[code\]Request\[/code\] :-\[code\]<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Header> <Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://tempuri.org/IService1/GetData</Action> </s:Header> <s:Body> <GetData xmlns="http://tempuri.org/"> <value>re</value> </GetData> </s:Body>\[/code\]\[code\]Response\[/code\] :-\[code\]<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Header /> <s:Body> <GetDataResponse xmlns="http://tempuri.org/"> <GetDataResult>You entered: re</GetDataResult> </GetDataResponse> </s:Body></s:Envelope>\[/code\]I m trying to figure out where and how I can view the 200 OK http response message. It is probably happening somewhere in the background and I would like some help to figure out where to find it. I have looked online and searched on google, still cant find it.
 
Back
Top