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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:26:35+00:00 2026-05-14T06:26:35+00:00

I want to check whether the endpoint is defined in the configuration before I’ll

  • 0

I want to check whether the endpoint is defined in the configuration before I’ll try to create it

System.ServiceModel.ClientBase<T> sourceClient = new System.ServiceModel.ClientBase<T>(EndpointName, new EndpointAddress(discoveryUri));

To check it I need get a configuration but how can I define whether I need to use WebConfigurationManager or ConfigurationManager. Is there any way to define where a WCF service is hosted?

  • 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-14T06:26:35+00:00Added an answer on May 14, 2026 at 6:26 am

    You would have to need to have the information yourself – the WCF service itself doesn’t know whether it’ll be hosted in IIS or self-hosted. After all, it’s just a ServiceHost instance being spun up some way.

    So I guess you’d have to have some setting that you can put into either web.config or app.config – something like:

    <add key="WCFHost" value="IIS" />
    

    or

    <add key="WCFHost" value="CustomApp" />
    

    and then evaluate that value and depending on what you get back, either open WebConfigurationManager or just ConfigurationManager.

    You might think you could check for the presence of HttpContext: if it’s NULL, then you’re running in a custom app, if it’s not NULL, then it’s the web scenario. But that doesn’t work since you can host a WCF Service in IIS (thus you’d have a web.config to consult) but without the ASP.NET compatibility settings, in which case, HttpContext would be NULL even though you’re running inside a web hosting scenario.

    One option would be to check this setting here:

    AppDomain.CurrentDomain.SetupInformation.ConfigurationFile
    

    This will contain the full path to the current AppDomain’s configuration file – if it’s a web app, this will contain a path + web.config at the end.

    So if you check

    if(Path.GetFileName(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile) == "web.config")
    

    you can be pretty sure you’re in a web app and you have a web.config to look at.

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

Sidebar

Related Questions

String urlString=http://myApp:8080/new/bin/save/SellerMyPage/WebHome i want to check whether above string contains the string MyPage between
I have developed a simple application before testing it i want to check whether
Before a thread locks a mutex, I want to check whether it has already
I am new to iPhone development. I want to check for a condition whether
I want to check whether string is empty or not when i create object=Shared.getLocal(abc);
I want to check whether a field in a table has been defined with
Before saving the user entered data I want to check whether the entered data
I have a list of jar files. I want to check whether any new
I want to check whether a string is a file name (name DOT ext)
I want to check whether a Tag (Case-Sensitive) exists in SQL Server 2005 table

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.