Capturing inbound and outbound soap request

I have a console application in C # that calls SSRS soap based on webservice (starting services on a remote computer). I want to capture an incoming and outgoing soap request.

How can I do that?

thanks

+2
source share
1 answer

Is this just for debugging purposes? If so, Fiddler is probably your best bet. Wireshark is also great, but it doesn't do the HTTPS stuff that Fiddler does.

You can capture data on the service side by effectively adding an inbound and outbound filter that simply transfers the data, writing it down as it is, but this is slightly difficult from what I remember. It is worth the effort if you are trying to do this for a long-term audit, etc., but for a simple check, I would go with Fiddler.

+5
source

Source: https://habr.com/ru/post/1479088/


All Articles