473,394 Members | 1,738 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

configSections - .Net Bug - Please Help

Hi,
I have added the following group and section:
<configSections>
<section name="sampleSection"

type="System.Configuration.SingleTagSectionHandler " />
<sectionGroup name="tilos.sdk">
<section name="tilos.data"
type="System.Configuration.NameValueSectionHandler ,System"
/>
</sectionGroup>
</configSections>

<tilos.sdk>
<tilos.data>
<add key="Configured Environments"
value="EnvironmentList.aspx" />
</tilos.data>
</tilos.sdk>

When I debug my web application I get "Exception creating
section handler". It seems that the application does not
find the System.Dll (Standard Reference). All the paths
attempted are incorrect and does not include the framework
path. See Error detail below:
=== Pre-bind state information ===
LOG: DisplayName = System
(Partial)
LOG: Appbase = file:///C:/Source_Tilos_2_3/Tilos.SDK
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time
(private, custom, partial, or location-based assembly
bind).
LOG: Post-policy reference: System
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Tempor
ary ASP.NET Files/tilos.sdk/a3c073d2/199faa55/System.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Tempor
ary ASP.NET
Files/tilos.sdk/a3c073d2/199faa55/System/System.DLL.
LOG: Attempting download of new URL
file:///C:/Source_Tilos_2_3/Tilos.SDK/bin/System.DLL.
LOG: Attempting download of new URL
file:///C:/Source_Tilos_2_3/Tilos.SDK/bin/System/System.DLL
..
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Tempor
ary ASP.NET Files/tilos.sdk/a3c073d2/199faa55/System.EXE.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Tempor
ary ASP.NET
Files/tilos.sdk/a3c073d2/199faa55/System/System.EXE.
LOG: Attempting download of new URL
file:///C:/Source_Tilos_2_3/Tilos.SDK/bin/System.EXE.
LOG: Attempting download of new URL
file:///C:/Source_Tilos_2_3/Tilos.SDK/bin/System/System.EXE
..

Jul 19 '05 #1
1 2538
You need to give the *complete* name of the system DLL. 'System' is just the
DOS file name part of it (the short name), you need to supply the version,
culture and public key token:

type="System.Configuration.NameValueSectionHandler , System,
Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />

Richard
--
my email ev******@zicf.bet is encrypted with ROT13 (www.rot13.org)
"Jaco De Villiers" <ja*******@hotmail.com> wrote in message
news:04****************************@phx.gbl...
Hi,
I have added the following group and section:
<configSections>
<section name="sampleSection"

type="System.Configuration.SingleTagSectionHandler " />
<sectionGroup name="tilos.sdk">
<section name="tilos.data"
type="System.Configuration.NameValueSectionHandler ,System"
/>
</sectionGroup>
</configSections>

<tilos.sdk>
<tilos.data>
<add key="Configured Environments"
value="EnvironmentList.aspx" />
</tilos.data>
</tilos.sdk>

When I debug my web application I get "Exception creating
section handler". It seems that the application does not
find the System.Dll (Standard Reference). All the paths
attempted are incorrect and does not include the framework
path. See Error detail below:
=== Pre-bind state information ===
LOG: DisplayName = System
(Partial)
LOG: Appbase = file:///C:/Source_Tilos_2_3/Tilos.SDK
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time
(private, custom, partial, or location-based assembly
bind).
LOG: Post-policy reference: System
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Tempor
ary ASP.NET Files/tilos.sdk/a3c073d2/199faa55/System.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Tempor
ary ASP.NET
Files/tilos.sdk/a3c073d2/199faa55/System/System.DLL.
LOG: Attempting download of new URL
file:///C:/Source_Tilos_2_3/Tilos.SDK/bin/System.DLL.
LOG: Attempting download of new URL
file:///C:/Source_Tilos_2_3/Tilos.SDK/bin/System/System.DLL
.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Tempor
ary ASP.NET Files/tilos.sdk/a3c073d2/199faa55/System.EXE.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Tempor
ary ASP.NET
Files/tilos.sdk/a3c073d2/199faa55/System/System.EXE.
LOG: Attempting download of new URL
file:///C:/Source_Tilos_2_3/Tilos.SDK/bin/System.EXE.
LOG: Attempting download of new URL
file:///C:/Source_Tilos_2_3/Tilos.SDK/bin/System/System.EXE
.

Jul 19 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Jaco de Villiers | last post by:
Hi, I have added the following group and section: <configSections> <section name="sampleSection" type="System.Configuration.SingleTagSectionHandler" /> <sectionGroup name="tilos.sdk">...
2
by: WFB | last post by:
Hi I have an application with a couple of referenced assemblies. The referenced assemblies and my application all share a few configuration settings with the same name but different values. Is...
1
by: eje | last post by:
I want to use configSections for applicationsettings but I get Exception creating section handler. My code in web.config: <configuration> <configSections> <sectionGroup...
1
by: Andrea Moro | last post by:
In web.config file I do as follow: <configsections> <sectiongroup name="Database"> <section name="Access" type=".... Ok problem is there in type. According to the help is only needed the...
2
by: Joseph Geretz | last post by:
Parser Error Message: Only one <configSections> element allowed. It must be the first child element of the root <configuration> element. OK, fine, easy enough to fix, I just need to copy and...
5
by: wolfgang wagner | last post by:
hi all! i'm trying to define a custom config section like described in the online help of VS2005: <configuration> <configSections> <section name="sampleSection"...
0
by: Jeffrey Hornby | last post by:
I'm getting "Exception in configuration section handler" when I start my web program and its indicating the opening tag of a custom configSection in my web.config. The relevant parts of the...
3
by: =?Utf-8?B?TUNN?= | last post by:
I have the following configSections in my web.config. Again, it's not clear to me what this is doing because I can delete the entire section and the application compiles and runs fine. Why do I...
7
by: =?Utf-8?B?RXZl?= | last post by:
I have the following sections defined in my app.config file: <configSections> <section name="1" type="System.Configuration.DictionarySectionHandler" /> <section name="2"...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.