C# SOAP Web Services client - example that shows how to log all raw SOAP intput and output? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T11:35:47Zhttp://stackoverflow.com/feeds/question/566855http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/566855/c-soap-web-services-client-example-that-shows-how-to-log-all-raw-soap-intput-a0C# SOAP Web Services client - example that shows how to log all raw SOAP intput and output?Keith Palmer2009-02-19T19:48:02Z2009-06-12T04:00:04Z
<p>I'm looking for a C# example showing how to access a remote SOAP Web Service, and logging (to a file, or even just to a string I can do whatever with) all complete raw SOAP requests and complete raw SOAP responses. </p>
<p>I found some other posts on StackOverflow with similar topics, but they seem to reference a web.config file, which my <em>desktop</em> application does not have. I assume this is because they are using C# in the form of a web application querying a remote SOAP web service. Mine is a desktop application. </p>
<p>Any takers? </p>
http://stackoverflow.com/questions/566855/c-soap-web-services-client-example-that-shows-how-to-log-all-raw-soap-intput-a/566894#5668941Answer by Tom A for C# SOAP Web Services client - example that shows how to log all raw SOAP intput and output?Tom A2009-02-19T19:58:17Z2009-02-19T20:04:07Z<p>See <a href="http://stackoverflow.com/questions/493883/silverlight-wcf-problem-expecting-application-soapxml-received-text-xml/493931#493931">this answer</a> for info on WCF logging. You can log to a file, and there is a special viewer to make reading the logs easy. </p>
<p>Your windows configuration file is named AppConfig.xml rather than WebConfig.xml and lives in the bin folder alongside the exe file. Within Visual Studio there is a "top level" AppConfig file that VS copies to the bin folder when you compile. You may need to add the AppConfig file to your project -- it is a special file type in the Add Item dialog.</p>
<p>+tom</p>
http://stackoverflow.com/questions/566855/c-soap-web-services-client-example-that-shows-how-to-log-all-raw-soap-intput-a/566924#5669241Answer by John Saunders for C# SOAP Web Services client - example that shows how to log all raw SOAP intput and output?John Saunders2009-02-19T20:05:52Z2009-02-19T20:05:52Z<p>In the above post, that should be "app.config" and "web.config", and the better URL is the one at <a href="http://msdn.microsoft.com/en-us/library/ms730064.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms730064.aspx</a>.</p>
http://stackoverflow.com/questions/566855/c-soap-web-services-client-example-that-shows-how-to-log-all-raw-soap-intput-a/567011#5670110Answer by nzpcmad for C# SOAP Web Services client - example that shows how to log all raw SOAP intput and output?nzpcmad2009-02-19T20:32:10Z2009-02-19T20:37:16Z<p>You could use <a href="http://msdn.microsoft.com/en-us/library/esw638yk(VS.71" rel="nofollow">SOAP extensions</a>.aspx) to get the SOAP content as a string and then log it wherever.</p>
<p>Note: seems to be a bug in stackoverflow - the URL is:
<a href="http://msdn.microsoft.com/en-us/library/esw638yk" rel="nofollow">http://msdn.microsoft.com/en-us/library/esw638yk</a>(VS.71).aspx</p>
<p>Another article is <a href="https://ebay.custhelp.com/cgi-bin/ebay.cfg/php/enduser/std_adp.php?p_faqid=350" rel="nofollow">How can I log my .NET SOAP requests</a>.</p>