Click here to Skip to main content
15,879,095 members
Articles / General Programming / Exceptions
Tip/Trick

Exception: Configuration System Failed to Initialize [With Solution]

Rate me:
Please Sign up or sign in to vote.
5.00/5 (7 votes)
1 Mar 2014CPOL 75.6K   3  
This tip provides one solution to the exception "Configuration system failed to initialize" in C#

Introduction

Today I encountered an exception while working on an application. The exception was configuration system failed to initialize. The problem that I was having in my application configuration file was that I declared the <appSettings> tag immediately after the root tag <configuration>.

The schema of a configuration file mandates the <configSections> tag to be the first child of the root tag. Thus, if you put any other tag as the first child of root <configuration> tag, the application would throw an exception. So, ALWAYS, the <configSections> tag should immediately follow root <configuration> tag.

Correct Format

XML
<?xml version="1.0"?> 
<configuration>
   <configSections>
      <sectionGroup name="applicationSettings" 
      type="System.Configuration.ApplicationSettingsGroup, 
      System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
          <section name="your_project_name.Properties.Settings" 
          type="System.Configuration.ClientSettingsSection, System, 
          Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" 
          requirePermission="false" />
      </sectionGroup>

Wrong Format

XML
<?xml version="1.0"?>
<configuration>
   <appSettings>
       ...
       ...
       ...
   </appSettings>
   <configSections>
      .....
    </configSections>

This is one of the reasons why this exception is thrown. This was the main cause for exception in my case. Hope it works out for you as well!

Hope this helps!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --