Questions tagged [soap-extension]

Questions related to extensions, or extending functionality, for SOAP method calls.

Questions related to extensions, or extending functionality, for SOAP method calls. For example, in ASP.NET, this is done by extending the SoapExtension class and then configuring that extension to be used by the SOAP methods in a web application.

32 questions
0
votes
1 answer

Log both webservice Request, Response in SoapExtension

I am using a SoapExtension to log both the webservice request, response when an error occurs in a webservice. Both the request and response XMLDocument's have incorrect data. Can someone review the code to see what I could be doing wrong? If I am…
Ajit Goel
  • 4,180
  • 7
  • 59
  • 107
0
votes
1 answer

Calling a Method with a SoapExtensionAttribute

I have problem, I want set soap extension attribute in web method: Soap extension in web service: public class EncryptMessageAttribute : SoapExtensionAttribute { private string strKey="null"; public void setKey(string s) { …
klerik123456
1 2
3