Tagged Questions

4
votes
3answers
2k views

How to trace ScriptService WebService requests?

I have a SoapExtension that is intended to log all SOAP requests and responses. It works just fine for calls from an application using the MS Soap Toolkit (OnBase Workflow). But it doesn't work for ...
0
votes
1answer
175 views

soap extension to log my webservices

I have this soap extension in order to trace my webservices: using System; using System.IO; using System.Web.Services.Protocols; namespace MyLibrary.MySystem { // Define a SOAP Extension that ...
0
votes
1answer
302 views

SOAP Extension enable / disable Web.config

I have created a TraceExtension class that inherits from SOAPExtension. I then apply the extension to the WebMethod using [TraceExtension] above the signature. This all works well and outputs to a ...