Hi,
Is there any way to log all the messages sent to and from a web service? I
am trying to debug a webservice but I need to look at the messages directly,
and IIS' built-in logging functionality doesn't contain the contents of
those messages.
Thanks for any help, and if there's a better newsgroup to post this message
in please advise.
Mohammed
erymuzuan - 17 Jan 2005 01:06 GMT
try SOAPScope, BTW WSE 2.0 SP2 offers this logging capibilities
regards
erymuzuan mustapa
> Hi,
>
[quoted text clipped - 7 lines]
>
> Mohammed
Geoman - 15 Feb 2005 18:47 GMT
Hello, got to web config and add the following, this should trace all the
input and output messages in the webservices folder. You need WSE2 for this.
The following code example specifies that tracing is enabled and specifies
the files that the trace is written to for incoming and sent SOAP messages.
Copy Code
<configuration>
<microsoft.web.services2>
<diagnostics>
<trace enabled="true"
input="inputTrace.webinfo"
output="outputTrace.webinfo"/>
</diagnostics>
</microsoft.web.services2>
</configuration
> Hi,
>
[quoted text clipped - 7 lines]
>
> Mohammed
Smike - 22 Feb 2005 22:01 GMT
use tool from
http://smike.ru
the log shows all the messages sent to and from a web service
plus all File I/O operation provided browser