Click here to Skip to main content
15,891,375 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Any one know about the trace the soap messages. i tried this
C#
HttpUtility.HtmlEncode(strResult)
method..
i search in google also but i didn't understand..
if anyone knows please explain with example..
i want to trace the saop message and display in other page


thanks in advance
Posted
Updated 15-Feb-12 22:04pm
v3

1 solution

Assuming you want to look at the messages being passed accross the wire:

You can get a tool called Fiddler2, this acts as a proxy and can be set up to listen between your service and client, see: http://stackoverflow.com/questions/3744602/soapui-with-fiddler[^]

Years ago I used to use this http://www.pocketsoap.com/tcpTrace/[^]. Don't be fooled: is traces http. The advantage of this is it won't hook into your browser directly and has a simpler interface. The downside is that it is less fully featured than Fiddler.

Both tools are free. There may be better ones out there now ( I use Fiddler for Web-UI work, it is excellent for this) but if you just want a basic see what is going across the wire utility, tcptrace is pretty good.
 
Share this answer
 
Comments
Ramanathan Narayanan 16-Feb-12 6:38am    
thank you keith... but i dont need to trace from tool i want trace from application onwards

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900