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 8335107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T03:33:56+00:00 2026-06-09T03:33:56+00:00

I have a simple web client in c# .Net framework 3.5 that calls a

  • 0

I have a simple web client in c# .Net framework 3.5 that calls a SOAP service HelloWorld like this:

HelloService myservice = new HelloService();
string result = myservice.HelloWorld();

I am using some middle-ware that adds basic security by asking for an Authorization Header: “Authorization=Bearer 123456abcd” which works with a REST service, but I wanted to consume the service with the .Net client above…

How can I add the header to the Service Call?
Does exists something like: myservice.addHeader("authorization=blah");?

  • 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-06-09T03:33:58+00:00Added an answer on June 9, 2026 at 3:33 am

    You should use OperationContextScope

    using (OperationContextScope scope = new OperationContextScope(wcfClient.InnerChannel))
          {
            MessageHeader header
              = MessageHeader.CreateHeader(
              "Service-Bound-CustomHeader",
              "http://Microsoft.WCF.Documentation",
              "Custom Happy Value."
              );
            OperationContext.Current.OutgoingMessageHeaders.Add(header);
    
            // Making calls.
            Console.WriteLine("Enter the greeting to send: ");
            string greeting = Console.ReadLine();
    
            //Console.ReadLine();
            header = MessageHeader.CreateHeader(
                "Service-Bound-OneWayHeader",
                "http://Microsoft.WCF.Documentation",
                "Different Happy Value."
              );
            OperationContext.Current.OutgoingMessageHeaders.Add(header);
    
            // One-way
            wcfClient.Push(greeting);
            this.wait.WaitOne();
    
            // Done with service. 
            wcfClient.Close();
            Console.WriteLine("Done!");
            Console.ReadLine();
          }
    

    For Authorization

    var messageProperty = new HttpRequestMessageProperty();
    messageProperty.Headers.Add(HttpRequestHeader.Authorization, AuthorizationHeader);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created my web socket server and client using this simple tutorial here
I have a simple web service that uses an oracle database. When I test
I have a simple web service that has an API third party developers are
I have a native Win32 client application, and a .NET web application. I'd like
Hello I have a simple wcf service like this, with a test method which
I have a java client that is calling a web service operation which takes
I have a simple web browser embedded in an application that allows a user
I have a simple web service method which I'm trying to convert: <WebMethod()> _
I have a simple web app built in asp.net webforms c# where and how
I have a WCF service hosted that is returning a byte[] of protobuf-net serialized

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.