Reputation: 26192
I'm trying to consume the external web service, and I'm able to do it using soapUI with xml.
And apparently I'm sending something else from my code, is there a way I can monitor all outgoing requests, inspect them and then forward them to the actual service?
Update:
The webservice is not on my machine, it sits somewhere on the internet.
Update II: I downloaded wireshark, there are like milion things popping on my screen, I can't see what's what. Any better tools out there? I've used tcpMon before
Upvotes: 1
Views: 73
Reputation: 715
I would recommend using the Fiddler tool, provided you're running Fiddler and the website on the same machine you should be able to see the requests being fired.
There is some extra setup required to capture the service calls, have a look at this Blog for more details.
The parameters should be available in the headers when you inspect the request.
Upvotes: 1