Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

proble with web.config

0 views
Skip to first unread message

aa

unread,
Dec 23, 2003, 9:16:23 AM12/23/03
to
I am using VS2003 and when I am launching the web application in the sub
folder page he me show the error
Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This error
can be caused by a virtual directory not being configured as an application
in IIS.

Source Error:

Line 82: <location path="Gedimai">
Line 83: <system.web>
Line 84: <authentication mode="Windows">
Line 85: </authentication>
Line 86: <authorization>

Source File: c:\inetpub\wwwroot\Pirmadienis\web.config Line: 84


----------------------------------------------------------------------------
----
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET
Version:1.1.4322.573


Kevin Spencer

unread,
Dec 23, 2003, 10:10:21 AM12/23/03
to
In .Net configuration files, there are <section> elements which have a
number of attributes, one of which is the "allowDefinition" attribute. This
attribute defines where this configuration section is allowed to be defined.
When a configuration section has this element set to "MachineToApplication"
it means that the section can appear in the machine.config file, and in
application-level web.config files, which can overrule the machine.config
settings on an individual web basis. You can put a web.config file in a
sub-folder of an application; however, you can not have any sections with
"allowDefinition" attribute set to "MachineToApplication" in them. Only the
web.config file in the root folder of the web application can have these
sections in it.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"aa" <a...@centras.lt> wrote in message
news:uPBY39Vy...@TK2MSFTNGP09.phx.gbl...

0 new messages