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

  • Home
  • SEARCH
  • 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 323681
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:03:12+00:00 2026-05-12T09:03:12+00:00

What is <client> element of app.config ? Why it’s added to client side when

  • 0

What is <client> element of app.config ?

Why it’s added to client side when i add service reference?

How can i access this element programmatically ?

  • 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-12T09:03:13+00:00Added an answer on May 12, 2026 at 9:03 am

    It’s the counterpart to the <service> section on the WCF service side. It’s primarily used to configure the endpoints used to connect the client and service together. In other words, it says where to connect to the service, and which binding to use.

    For example if you have a WCF service hosted in IIS, you might have a section like this:

    <system.serviceModel>
      <services>
        <service name="MyService">
          <endpoint address="http://localhost:8080/MEX" binding="mexHttpBinding" bindingConfiguration="" name="mex" contract="IMetadataExchange" />
          <endpoint address="http://localhost:8111" binding="wsHttpBinding" bindingConfiguration="WS_HTTP_Secure" name="WS_HTTP_Endpoint" contract="IMyService" />
        </service>
      </services>
    </system.serviceModel>
    

    So on the client side, you would have a corresponding set of entries for the <client> section, e.g.

    <system.serviceModel>
      <client>
        <endpoint address="http://localhost:8111/" binding="wsHttpBinding" 
          bindingConfiguration="WS_HTTP_Endpoint_Binding" contract="MyService" name="WS_HTTP_Endpoint" />
      </client>
    </system.serviceModel>
    

    There should generally be no need to access this section programmatically. Adding the service reference to your project would have added the proxy classes to your project though, and when using these classes you can specify the endpoint to use there. For example say you called your service classes “MyService”, you may initialise it like this:

    MyServicesClient client = new MyServicesClient("WS_HTTP_Endpoint");
    

    There’s no need to actually specify it in the constructor like this unless you have multiple endpoints though.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've added as wsdl file using the add servece reference dialog in vs2008. MyService
I have a WCF client/service app that relies on secure communication between two machines
I have an outlook 2010 add-in that has a service reference to a simple
My app is using JavascriptMVC on the client side, and ASP MVC is basically
My client wants to send email announcements and reports for customers. Now. The python-side
I have a class library (.NET) with a reference to a web service (in
I am attempting to insert a custom behavior into my service client, following the
I now get the ASP.NET Ajax client-side framework failed to load. javascript error in
I'm creating a Rails app which has an e-commerce element for multiple clients -
I created an eBay console app that runs from a service. If I run

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.