Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently trying to implement a Custom Configuration Section in a project I am busy with and no matter what I try I keep getting the error below:

{"An error occurred creating the configuration section handler for pageAppearanceGroup/pageAppearance: Could not load type 'Samples.AspNet.PageAppearanceSection' from assembly 'System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. (E:\Three Nine Developments\lastfm\msdn\msdn\bin\Debug\Samples.Aspnet.vshost.exe.config line 6)"}

I have copied the code from this MSDN Artricle:

http://msdn.microsoft.com/en-us/library/2tw134k3.aspx

I still get the same error.

I have tried the all the advice/guide in the following articles but to no avail.
http://www.evanclosson.com/devlog/bettercustomerrorsinaspnetcustomconfigurationsection

http://geekswithblogs.net/akraus1/articles/64871.aspx

This must be something stupid that I am missing. I am running Vista, could that be a problem? some obscure security setting?

    <configuration>
  <!-- Configuration section-handler declaration area. -->
  <configSections>
    <sectionGroup name="pageAppearanceGroup">
      <section
        name="pageAppearance"
        type="Samples.AspNet.PageAppearanceSection"
        allowLocation="true"
        allowDefinition="Everywhere"
      />
    </sectionGroup>
    <!-- Other <section> and <sectionGroup> elements. -->
  </configSections>

  <!-- Configuration section settings area. -->
  <pageAppearanceGroup>
    <pageAppearance remoteOnly="true">
      <font name="TimesNewRoman" size="18"/>
      <color background="000000" foreground="FFFFFF"/>
    </pageAppearance>
  </pageAppearanceGroup>



</configuration>
share|improve this question
You will get more and better responses if you tag appropriately, i.e. with the technologies that you are using. – Paul Sonier May 13 '09 at 15:24
It sounds like a problem with your web.config, can you post the relevant sections? – Jason May 13 '09 at 15:25
Nope Config is fine, I have truied App.config and web.config I am able to read appSettings from the app.config and web.config jsut fine – Gary Woodfine May 13 '09 at 15:35

4 Answers

up vote 6 down vote accepted

You should also check out Jon Rista's three-part series on .NET 2.0 configuration up on CodeProject.

Highly recommended, well written and extremely helpful!

Marc

share|improve this answer
Thanks will definetly have a look at these – Gary Woodfine May 13 '09 at 15:46
Give a man a fish and feed him for a day, Show him how to fish and feed him for the rest of his life . Thanks will be going through those articles carefully – Gary Woodfine May 13 '09 at 16:06
I have read thos articles downloaded the projects they run no problem When I try replicate the project they fail?? I have no idea why – Gary Woodfine May 13 '09 at 21:51
Well, very often, it's just a matter of getting the assembly and class names 100% correct when you define the config section groups and config sections - that's caused the most trouble in my case. – marc_s May 14 '09 at 20:37

My guess is that you've copied the code, but you have different assembly names. Posting the config will help.

I would also fully quality your type in the config (something that sample doesn't show). Something like...

<section name="MySection" type="My.Assembly.Type, My.Assembly" />
share|improve this answer
Nope thats not right. I have named the assemblies correctly. Created different projects trying to do the same thing – Gary Woodfine May 13 '09 at 15:32
OK. Seeing the config section definition will help. – Martin Peck May 13 '09 at 15:33
Fully qualifying the Type did it for me. Ensure that all your other bits are plumbed to :) – brumScouse Apr 26 '11 at 11:59
This was exactly my problem, thanks! – Gunder May 23 '12 at 9:13
And mine too! +1 – Mark Bell May 31 '12 at 15:49

Please try with this

<configSections>
 <sectionGroup name="pageAppearanceGroup">
  <section name="pageAppearance"
           type="Samples.AspNet.PageAppearanceSection,Samples.AspNet"
           allowLocation="true"
           allowDefinition="Everywhere" />
 </sectionGroup>
 <!-- Other <section> and <sectionGroup> elements. -->
</configSections>  

Thanks, Vedi

share|improve this answer

Please try with the following code:

<configSections>
    <sectionGroup name="pageAppearanceGroup">
         <section name="pageAppearance" type="Samples.AspNet.PageAppearanceSection,Samples.AspNet" allowLocation="true"         allowDefinition="Everywhere"       />
    </sectionGroup>     <!-- Other <section> and <sectionGroup> elements. -->
</configSections>  
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.