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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:15:25+00:00 2026-05-13T06:15:25+00:00

By default a IIS hosted WCF service can’t use libraries that uses user scope

  • 0

By default a IIS hosted WCF service can’t use libraries that uses user scope settings. The only scope that it accepts is the Application scope.

When you try to do otherwise it throws an exception:

[System.Configuration.ConfigurationErrorsException]{“The current configuration system does not support user-scoped settings.”}

How to circumvent this?

  • 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-13T06:15:25+00:00Added an answer on May 13, 2026 at 6:15 am

    You could use the .NET 2.0 config system to load/manage a user-scoped config file for your service, e.g. located in IsolatedStorage or something.

    Once you have that file, you can load and access its contents with code something like this:

    ExeConfigurationFileMap map = new ExeConfigurationFileMap();
    map.ExeConfigFilename = "ConfigLibrary.config";  // set it to whatever 
    
    Configuration libConfig = ConfigurationManager.
                      OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
    
    AppSettingsSection section = 
                       (libConfig.GetSection("appSettings") as AppSettingsSection);
    
    string value = section.Settings["Test"].Value;
    string item = section.Settings["Item"].Value;
    

    and so on. This uses the standard, default .NET 2.0 config stuff, but it allows you to have your own custom config files, named whatever you like, located wherever you like, and they can be accessed directly from your class library, no need to put them into web.config or your host app’s app.config.

    For more on the .NET 2.0 config system, check out Jon Rista’s three-part series on .NET 2.0 configuration up on CodeProject.

    • Unraveling the mysteries of .NET 2.0 configuration
    • Decoding the mysteries of .NET 2.0 configuration
    • Cracking the mysteries of .NET 2.0 configuration

    Highly recommended, well written and extremely helpful!

    Marc

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

Sidebar

Related Questions

My requirement is to call WCF web service from ASP.NET code behind and pass
IIS / ASP.NET sends HTTP headers to identify itself by default. Server Microsoft-IIS/7.5 X-AspNetMvc-Version
When I try to access a page (default.aspx) in a web site in IIS
Having a bit of a problem with my hosted ASP.NET applications. I noticed slowness
I have a page that reveives a lot of incoming traffic. Some of these
We have two subdomains for the same site, we would like that depending on
I'm working on a personal website and I'm using webforms and .NET 3.5 and
In my site, I have used IIS7's URL rewrite module to redirect URLs like
If I look at something for Java I an see JBoss, WebSphere, others. Ruby
I'm using Wix to install my web application, and it includes a Silverlight app.

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.