I am trying to analyze a browser-based Flash application that communicates to a backend with SOAP. What I'd like to do is capture each of the SOAP calls that are made - both the POSTed SOAP message and the response. I can see it in Firebug, or HttpFox, or Chrome's Developer tools, but saving each call I'm not sure how to开发者_开发问答 do.
Are there tools available to capture each call? I'd like to capture each SOAP call along with HTTP headers (including cookies) so I can look at them in something other than the tools in-browser?
I tried using soapUI against the WSDL url but I'm getting errors indicating there are errors in the WSDL.
You're going to want to take a look at a proxy.
Several that should suffice:
http://www.wireshark.org/
http://www.parosproxy.org/
http://www.fiddler2.com/fiddler2/
have you tried fiddler2, it works for me
精彩评论