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

In a project I'm working with we're using external services exposed by SOAP. In the proxy classes to access these services generated by Visual Studio 2005, the member InnerChannel was exposed, but this is not the case with the proxy classes generated by Visual Studio 2008.

I'm trying to do this, but of course get an error because the member doesn't exist:

using (new OperationContextScope(proxy.InnerChannel)) {
  OperationContext.Current.OutgoingMessageHeaders.Add(GetHeader());
  //...
}
share|improve this question

1 Answer

up vote 0 down vote accepted

SOAP seems to have been completely redone in VS2008.

To do the same in VS2008 you need to create a class that implements SoapExtension:

public class classname : SoapExtension {
  public override object GetInitializer(LogicalMethodInfo methodInfo, SoapExtensionAttribute attribute) {
    throw new NotImplementedException();
  }

  public override object GetInitializer(Type serviceType) {
    return null;
  }

  public override void Initialize(object initializer) {}

  public override void ProcessMessage(SoapMessage message) {
    switch (message.Stage) {
      case SoapMessageStage.BeforeSerialize:
        var header = GetHeader(); // Returns a class implementing SoapHeader
        message.Headers.Add(header);
        break;
      case SoapMessageStage.AfterSerialize:
        break;
      case SoapMessageStage.BeforeDeserialize:
        break;
      case SoapMessageStage.AfterDeserialize:
        break;
    }
  }
}

And register that class in your config file:

....
  <webServices>
    <soapExtensionTypes>
      <add type="namespace.classname, namespace" priority="1" group="Low"/>
    </soapExtensionTypes>
  </webServices>
</system.web>
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.