[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

How to trace SOAP messages of a WSE web service ?

Catalin Hatmanu

1/23/2003 6:15:00 PM

Hi all,

Is there a tool for tracing SOAP messages of an WSE enabled web service ?

Thank you,
Catalin



1 Answer

Yasser Shohoud [MS]

1/23/2003 9:31:00 PM

0

Catalin,

The WSE has a built in tracing mechanism. You need to modify your
web.config file.

<configuration>
<microsoft.web.services>
<diagnostics>
<trace enabled="true"
input="inputTrace.config"
output="outputTrace.config"/>
</diagnostics>
</microsoft.web.services>
</configuration>

You'll also need to give ASP.Net write permissions to whatever directory
your output files will be placed.

Check out "Web Services Enhancements Diagnostic Settings" in the WSE
documentation.

Michael Clark
Microsoft

--
Please do not send email directly to this alias. This alias is for newsgroup
purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.


"Catalin Hatmanu" <catalin@caseware.com> wrote in message
news:uOto$LwwCHA.2396@TK2MSFTNGP10...
> Hi all,
>
> Is there a tool for tracing SOAP messages of an WSE enabled web service ?
>
> Thank you,
> Catalin
>
>
>