65.9K
CodeProject is changing. Read more.
Home

Exception: Configuration System Failed to Initialize [With Solution]

starIconstarIconstarIconstarIconstarIcon

5.00/5 (7 votes)

Mar 1, 2014

CPOL
viewsIcon

76490

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 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 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!