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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:58:08+00:00 2026-05-12T19:58:08+00:00

I have a client program that consumes a web service. It works quite well

  • 0

I have a client program that consumes a web service. It works quite well in a number of installations. Now I have a situation where a new customer connects to the internet via a proxy server, and my program’s attempt to access the web service gets the “HTTP status 407: Proxy authentication required” error.

I thought that all the configuring of internet access, including proxy server address, port number and authentication would be done in the Control Panel Internet Options, and that I wouldn’t have to worry about that in the code, or even in the app.config, of the Web Service client.

Have I got it all wrong?

What I have done in the mean time is give the user the chance to configure the proxy user name and password, and then in my code I do the following:

webServiceClient.ClientCredentials.UserName.UserName = configuredUsername;
webServiceClient.ClientCredentials.UserName.Password = configuredPassword;

But I don’t know that this is the right thing. Because it seems to me that the above ClientCredentials would refer to the web service binding/security, not to the internet proxy server.

I suppose I can try it at the customer, but I’d rather be sure of what I’m doing first.

  • 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-12T19:58:08+00:00Added an answer on May 12, 2026 at 7:58 pm

    I found out how to do this thing, with the help of a contributor to another forum which in the flurry of trying all sorts of things I’ve forgotten. So thank you to that now forgotten person.

    Here’s the code that worked in the end (suitably disguised, but gives the right idea):

        BasicHttpBinding binding = new BasicHttpBinding("APISoap"); /* APISoap is the name of the binding element in the app.config */
        binding.Security.Mode = BasicHttpSecurityMode.TransportCredentialOnly;
        binding.Security.Transport.ProxyCredentialType = HttpProxyCredentialType.Basic;
        binding.UseDefaultWebProxy = false;
        binding.ProxyAddress = new Uri(string.Format("http://{0}:{1}", proxyIpAddress, proxyPort)); 
        EndpointAddress endpoint = new EndpointAddress("http://www.examplewebservice/api.asmx");
    
        WebServiceClient client = new WebServiceClient(binding, endpoint);
    
        client.ClientCredentials.UserName.UserName = proxyUserName;
        client.ClientCredentials.UserName.Password = proxyPassword;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a client program written in .NET 2.0, that connects to the web
I have a java client program that uses mdns with service discovery to find
I have a client program that talks to a web server through a SSL
I have written an ActionScript client program that tries to connect to a local
I have a client/server program that attempts to send and receive an object. There
I have a client program based on LibCurl. I have run into a situation
I have a java program that acts as a POP3 client using javax.mail. I
I am to consume a certain web service that the server guys have developed
I have a client program that is getting an httpresponsemessage from a WCF rest
I have a server/client program that communicates with serialized objects. When I run the

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.