how to dump a webservice xml
could you suggest how can i dump an XML. I tried using tcpmon but it isn't not showing my xml request/response. my app is running externally in webl开发者_C百科ogic server at port 8001 and i am debugging it in eclipse using remote debugging hooking at port 5001.
You might want to give RESTClient a try.
I used Fiddler2 which solved my problems.
Appreciate your help.
I don't know tcpmon, but as far as I know, if the communication is on the same machine, you can't capture it using a sniffer (like WireShark).
I once used the wsi-testing-tools as a cheap solution for setting up a man-in-the-middle. You configure the wsi-testing-tools' monitor to listen on a certain port, and direct all your WS calls to this port. The monitor records all the requests and responses, and creates a nice formatted output that can be viewed in any browser.
(Please note that this is probably by far not the best solution. I had to use it due to draconian limitations on my tools selection, but it works)
精彩评论