Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It possible turn off soap extension on webmethod ? Something like this :

    [WebMethod]
    [SoapExtensionClass]
    public void func()
    {
        if(b)
        {
        // turn off soap extension on web method
        }
    }
share|improve this question

1 Answer

I think you should do the check for b inside the SOAP extension class, not in the web service method. If SOAP extension class is not your own, then create a wrapper class around that and specify that on your method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.