c# - Trace the soap message in windows form application -
i developing windows form application in visual studio 2010. consuming soap webservice on https. need trace messages debug. found out soap extension solution that. but, can used web applications.
have u checked service trace viewer tool. here link
in app config file use:
<system.diagnostics> <trace autoflush="true" /> <sources> <source name="system.servicemodel" switchvalue="information, activitytracing" propagateactivity="true"> <listeners> <add name="sdt" type="system.diagnostics.xmlwritertracelistener" initializedata= "sdrconfigexample.e2e" /> </listeners> </source> </sources>
Comments
Post a Comment