I am writing a C # WinForms application that uses a web service using WCF. I would like to be able to display the XML request and response in the application in real time as I call. Is it possible?
You might want to use / write your own MessageInspector:
http://msdn.microsoft.com/en-us/library/aa717047%28v=VS.90%29.aspx
Another convenient way to look at the raw message is to enable tracing (but this will result in logging messages outside your application that may not meet your needs):
http://msdn.microsoft.com/en-us/library/ms733025.aspx
Source: https://habr.com/ru/post/912155/More articles:Is there a way to do batch geocoding (get lat / lon by address and vice versa)? - google-geocoding-apiUsing a web service using POST instead of the usual WSDL route - httpHow to save global variables in iOS development? - iosSigning SOAP Messages Using X.509 Certificate from WCF Service for Java Web Service - c #How to sign a SOAP request with WCF - c #How to sign an Amazon web service request in .NET using SOAP and without WSE - c #How to convert uint32_t to struct in_addr? - cHow to save GD :: Graph from writing the last X shortcut and overwrite my other shortcuts? - perlHow is the absolute back loop method embedded? - c #C ++ double-sort data with multiple elements - c ++All Articles