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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T18:05:40+00:00 2026-05-12T18:05:40+00:00

I’m using WCF to create a SOAP service with the following file layout hosted

  • 0

I’m using WCF to create a SOAP service with the following file layout hosted on IIS:

/
/web.config
/service
/service/test.svc
/service/web.config

In the /web.config, I have a few general settings (system.codedom, etc) and in the /service/web.config I have an appSettings section with a few settings defined.

<?xml version="1.0"?>
<configuration>
  <appSettings>
    <add key="Username" value="user" />
    <add key="Password" value="password" />
  </appSettings>

I then have custom password validator:

public class CustomUserNameValidator : UserNamePasswordValidator
{
    public override void Validate(string userName, string password)
    {
        string expectedUsername = WebConfigurationManager.AppSettings["Username"];
        string expectedPassword = WebConfigurationManager.AppSettings["Password"];

        ... snip ...
    }
}

This is where it gets weird:

  • On the first hit to this service, expectedUserName and expectedPassword are null
  • On the second and subsequent hits, these two variables contain the values from the /service/web.config file
  • If you get to the second or subsequent hit and it is indeed working as expected, a simple restart of the web server or recompile will break the next hit

In fact, what it is actually doing is loading the appSettings section from the /web.config on the first hit, and then after WCF has cached the creation of the WSDL/XSDs and such, it uses /service/web.config.

This seems like a bug and I can’t seem to find a workaround other than placing the appSettings into the /web.config file.

Perhaps it’s WCF, on the first hit, not considering the /service directory to be the root of the execution because test.svc isn’t compiled (or whatever the caching it does is called), yet? Then after that first hit, it does consider that directory in the web.config inheritance ordering?

UPDATE: per the comments below, you’ll see that even HttpContext.Current is null only on the first hit, but every hit after that it isn’t null (with the proper web.config and attribute on the service to allow for ASP.NET compatibility mode). The web.config not loading properly is just a symptom of a larger problem, it seems.

  • 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-12T18:05:41+00:00Added an answer on May 12, 2026 at 6:05 pm

    Turns out this is a bug in .NET 3.5. I’ve been notified by Microsoft that is has been fixed in .NET 4.0 beta 2 (http://connect.microsoft.com/wcf/feedback/ViewFeedback.aspx?FeedbackID=491844 has details)

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

Sidebar

Related Questions

No related questions found

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.