Tagged Questions

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