web.config custom Configuration Section

G

Guest

I am trying to implement a configuration section in web.config and was
wondering if I could do it without writing a handeler. I tried in the
<configSections>.

<sectionGroup name="Domains" >
<section name="Domain"
type="System.Configuration.NameValueFileSectionHandler, System,
Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</sectionGroup>

and the section

<Domains>
<Domain>
<add key="DomainCD1" value="CD" />
<add key="DomainCD2" value="Extenal" />
</Domain>
<Domain>
<add key="DomainCD1" value="CD2" />
<add key="DomainCD2" value="Extenal2" />
</Domain>
</Domains>

and tried to read it with

Dim CDDomains As ConfigurationSectionGroup =
rootWebConfig1.GetSectionGroup("Domains")

That line worked but I think I am way off on this I could not read anymore
of the section.

Thank you for your help
 
W

Walter Wang [MSFT]

Hi,

First, I'm not sure if it's a typo in your code: there should be only
section <Domain> under the <Domains> section group.

To read the custom section, it's actually quite simply in .NET 2.0 since we
have a new way to read it:

1) Reference System.Configuration.dll in your project
2) Use following code to read the settings in section <Domain>:

Dim nv As NameValueCollection =
System.Configuration.ConfigurationManager.GetSection("Domains/Domain")
Dim v1 As String = nv("DomainCD1")
Dim v2 As String = nv("DomainCD2")


You can also iterate over all the keys in the collection using
NameValueCollection's methods.


Sincerely,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 
G

Guest

Walter,

Thank you for your reply. I wanted to have multiple sections in the section
group. I don't know if that is possible in the config file. So I could find
all "domain" sections with psudo code like

for each domain in domains
' read all the keys and do something.
next

is this possible without a custom handeler.

Thank you
 
W

Walter Wang [MSFT]

Hi Jerry,

As far as I know, it's not possible to have multiple sections with same
name in a section group. When you register a section under a section group,
only one instance can be used.

I'm afraid you will have to create a custom section handler and put those
<domain> elements in the section. Please feel free to let me know if you
need further information on this.

Regards,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top