The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
34 views

How to add SoapInclude for a custom SoapHeader from within a SoapExtension under SoapRpcMethod

The situation is this: I have created a custom SoapExtension MySoapExtension which adds MyCustomSoapHeader to outgoing messages in web service proxies. This extension works well when the targeted ...
0
votes
1answer
210 views

How to handle Timeout exceptions in SoapExtension

I have a SoapExtension. It logs my all webservice requests and responses. I think there are over one thousand of webservice calls in project. My problem is i cant log request if my webservice call ...
1
vote
0answers
146 views

How to retry a SOAP call using a WebService Extension (at the server, not client)

I have developed a SOAP service that accesses a finicky back-end across a WAN. I want to implement retry logic to save the consumer apps from implementing retry logic. C# cleanest way to write retry ...
0
votes
1answer
873 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 ...
1
vote
0answers
653 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: ...
3
votes
2answers
3k 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
572 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 ...
1
vote
1answer
222 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
239 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
923 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 ...
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 ...