Hello,
I am working on .Net Web Service Client to consume a Java Axis Web Service from the third party. For debuging purpose, I would like to get soap message being created by .Net Proxy Class. Can anybody tell me how to get the information
Many Thanks in advance.
-Qing

How to log Soap Message created by .Net Client's Proxy Class
Richard Hein
setting up a sniffer, is basically the best, it requires little or no change to configuration or code at all. you can find good sniffers everywhere , I like SOAPScope or Axis tcp monitor.
the second best option is to enable WSE for your project, then enebale the trace option.
another option is to override proxys' GetWebRequest and GetWebResponse method.
Devin Breshears - MSFT
http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemwebservicesprotocolssoapextensionclasstopic.asp
And also the conceptual documentation on MSDN:
http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconAlteringSOAPMessageUsingSOAPExtensions.asp
Daniel Roth