Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
0answers
267 views

.NET SoapExtension cannot modify soap request on the server

I'm trying to implement a SoapExtension in .NET that would compresses all soap traffic (both requests and responses). I have control over both the client and the server. I've started by copying this: ...
1
vote
1answer
652 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
118 views

Passing information to the object on which a SoapExtensionAttribute is applied on

In my application, I'm calling a web service and by using SoapExtension and SoapExtensionAttribute I can intercept the incoming and outgoing SOAP messages for logging purposes. I used the example in ...
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 ...
0
votes
1answer
740 views

ASMX web service with Soap extension - problem with Encryption method

I try sing and encrypt SOAP message in ASP.NET Web Service. //I have Crypt class, which input parameters is Stream: public class CryptUtility { public virtual Stream EncryptAndSingXml (Stream ...