Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web Service SOAP Message Monitoring

Status
Not open for further replies.

Skittle

ISP
Sep 10, 2002
1,528
US
I have consumed my first remote web service and it works fine.

I need to be able to view the SOAP messages sent over http so that I can duplicate the messages on another programming platform. Is there a method that can do this in VS2005 or is there another tool that can do it simply?


The messages I am after look like this:-



<soapenv:Envelope xmlns:soapenv=" <soapenv:Body>
<m:GetLastTradePrice xmlns:m="Some-URI">
<m:tickerSymbol>DIS</m:tickerSymbol>
</m:GetLastTradePrice>
</soapenv:Body>
</soapenv:Envelope>


<soapenv:Envelope xmlns:soapenv=" <soapenv:Body>
<m:GetLastTradePriceResponse xmlns:m="Some-URI">
<m:price>34.5</m:price>
</m:GetLastTradePriceResponse>
</soapenv:Body>
</soapenv:Envelope>




Dazed and confused.

Remember.. 'Depression is just anger without enthusiasum'.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top