WebService Logging

  • Thread starter Mohammed AlQuraishi
  • Start date
M

Mohammed AlQuraishi

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
 
E

erymuzuan

try SOAPScope, BTW WSE 2.0 SP2 offers this logging capibilities

regards
erymuzuan mustapa
 
G

Geoman

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,997
Messages
2,570,240
Members
46,830
Latest member
HeleneMull

Latest Threads

Top