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 ...
1
vote
1answer
654 views

How to create a web.config file to get SoapExtension loading?

I need to use a SoapExtension subclass (which I have created) but it seems that this class can only be initialized throught a "web.config" file (Though I have read that it should be possible through ...
0
votes
1answer
174 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
0answers
31 views

How to avoid SoapExtensionStream on Response

In two words, I'm building .Net Client that will use WebServices for upload large amount of data. Client should inform user about upload and download progress. I've created SOAP extension to wrap ...
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 ...
0
votes
1answer
158 views

Invoke other webmethod with SoapExtension

I've a WSDL defining a web service named CalendarService: <soap:address location="http://example.com/calendar"/> The WSDL defines following methods: String setDate(String date) int ...