Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 511207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:11:35+00:00 2026-05-13T07:11:35+00:00

In a project I’m working with we’re using external services exposed by SOAP. In

  • 0

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());
  //...
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T07:11:35+00:00Added an answer on May 13, 2026 at 7:11 am

    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>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The project I'm working is using n-tier architecture. Our layers are as follows: Data
A project I'm working on at the moment involves refactoring a C# Com Object
My project is currently using a svn repository which gains several hundred new revisions
Project file here if you want to download: http://files.me.com/knyck2/918odc So I am working on
Project#1 has some interfaces and classes that project#2 references. Now I want to use
Project Darkstar was the topic of the monthly JavaSIG meeting down at the Google
Every project invariably needs some type of reporting functionality. From a foreach loop in
My project is based on spring framework 2.5.4. And I try to add aspects
My project has both client and server components in the same solution file. I
The project is ASP.NET 2.0, I have never been able to reproduce this myself,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.