473,799 Members | 2,999 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Forms Authentication Error

Is anyone familiar with this error? I have this running just fine on my
local machine but when I pushed it out to our development server I get this
error. I have no idea what it is saying. Any clues?

-Brett-

Server Error in '/' Application.
----------------------------------------------------------------------------
----

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 ='MachineToAppl ication' beyond application level. This error
can be caused by a virtual directory not being configured as an application
in IIS.

Source Error:
Line 59: by Microsoft that offers a single logon and core profile
services for member sites.
Line 60: -->
Line 61: <authenticati on mode="Forms">
Line 62: <forms
Line 63: name="MIB.Ident ity"
Source File: C:\Webs\CorpWeb \products\image bridge\myimageb ridge\web.confi g
Line: 61

----------------------------------------------------------------------------
----

Version Information: Microsoft .NET Framework Version:1.1.432 2.573; ASP.NET
Version:1.1.432 2.573
Nov 18 '05
22 1287
Perfect! That is the golden answer I needed.

I simply created an application at the path I wanted and it now works
perfectly.

This also clarifies for me why it worked locally and not on the server.
Locally I had used VS.Net to create the app for me and had no idea that it
actually went into IIS and set that directory up as an application (the
problem with Wizards!).

Thank you so much for the help. You undoubtedly saved me much head-banging
and fumbling around. And less work for myself this weekend. Now I can go
enjoy the fabulous weather here in the Northwest.

-Brett-

"Pete Beech" <pe*********@ho tmail.nojunk.co m> wrote in message
news:OV******** ******@TK2MSFTN GP09.phx.gbl...
Hi Brett,
If you want to preserve the path, you don't need to create a virtual
directory at the point where the ASP.NET application code starts. As long as it is under the main web, or another virtual directory, then thats no
problem. You just need to create the application at that point.

E.g. I just tested this by creating an ASP.NET app called WebApplication1
under the main web - [incidentally, since its in a direct subfolder of the
main web, it doesn't create a virtual directory (e.g. its in
C:\Inetpub\wwwr oot\WebApplicat ion1). But it does create an application
there*. However, all this would apply if WebApplication1 was a virtual
directory too]

Then I created a simple page, at C:\Inetpub\wwwr oot\WebApplicat ion1, which
does something on the server - a button which sets a label to some text, in server side code. I ran that, using
http://localhost/WebApplication1/WebForm1.aspx , and made sure it worked.

Then I created a subfolder Sub1, then another under that, Sub2, and then
created a bin folder under Sub2. I copied the WebForm1.aspx, web.config into Sub2, and the dll into Sub2\bin.

If I then go to http://localhost/WebApplication1/Sub.../WebForm1.aspx, I get the parser error you got, about web.config containing stuff that should only be in the root folder. Fair enough, because it is just a subfolder of
the apps root folder.

So, in IIS, I can create an application on Sub2 (but not a virtual
directory), and I can access the same URL again, and everything works fine. Sub2 contains a completely separate IIS/ASP.NET application, which you can
access with the full path.

The way I think of it is that this creating an application thing sets
application boundaries, so that the folder you create the application at,
and every subfolder under it which is not itself an application defines the scope of that application. IIS and ASP.NET will treat all the folders making up the application as one entity, and any access to pages in those folders
will share Session and Application objects, global.asax, etc, etc. I'm sure thats over-simplified, but thats how I think of it.

HTH,
Pete

* You can tell if its created a virtual directory by looking at the
properties of the folder in IIS, and looking at the local path - if its
greyed out and just has a relative path in there (in this example,
\WebApplication 1) then its not a virtual directory. If it is not greyed out, and has a full path (say E:\MyOtherWebFo lders\Webapp1) then it is a virtual directory (also if the icon is a folder with a globe, and not just a folder icon, its a virtual directory).

"Brett Robichaud" <br************ @nospam.yahoo.c om> wrote in message
news:e%******** ********@TK2MSF TNGP10.phx.gbl. ..
Ok here is what I have.

The root web on this server is located at C:\Webs\CorpWeb . In IIS this is
setup as the Web Site. This is all classic ASP code. Everything below

this
directory is part of our web site.

My new ASP.NET app is located in
C:\Webs\CorpWeb \products\image bridge\myimageb ridge. This location is of
course a subfolder of the main web site. This is the only location of
ASP.NET code on our site as of today, so I have a web.config in that

subdir.
On IIS I started with no virtual directory in this subdir. From other
advice I tried creating a virtual directory in this subfolder and made

sure
it was setup as an app. It made no difference.

I guess I'm not familiar with how virtual directories work with regards to ASP.NET, so bear with my ignorance here.

As an experiment I did create new subfolder off the main website named MIB and made it a virtual directory. I copied all my ASP.NET code into that
folder and it seems to work ok. But this isn't really what I want. There are a number of pages in our site that reference the ASP.NET code in the
original directory /products/imagebridge/myimagebridge. I can create
virtual directory in this location if necessary, but I need pages to be

able
to reference it as the full path not the virtual directory name.

I think I've just confused myself even more. Maybe I need to go back to

the
basics of ASP.NET and virtual directories. I think what has confused me

is
that it all works fine on my local dev box with no virtual directories,

just
the default web site.

-Brett-

"Steven Cheng[MSFT]" <v-******@online.m icrosoft.com> wrote in message
news:cj******** ******@cpmsftng xa06.phx.gbl...
Hi Pete,

Since you've mentioned that the web application run well on the dev

machine
but failed on the deployment server. I think the problem mainly due to the deployment server's IIS site's virtual folder hierarchy. I've mentioned the
error info contains the folder struture of your develpment site as below: C:\Webs\CorpWeb \products\image bridge\myimageb ridge\web.confi g

It's so deep that I suspect whether there is any virutal folder(at the
upper-level of your appliation) which has host a asp.net web application. If so, your application will be consided as a sub folder of the upper

level
asp.net web application. Also, you can try creating a new virutual folder under the site's root folder and deployment the web application in
that virutal directory to see whether the problem remains.

In addition, would you provide me more detailed of your deployment

site's IIS folder info?
Just those vds within
"C:\Webs\CorpWe b\products\imag ebridge\myimage bridge\web.conf ig"
which are the upper-level of your web application and how are their
Directory setting in the IIS. Then, I can try generating some tests on my side regarding on the issue. Thanks.
Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx



Nov 18 '05 #21
Thanks a lot for Pete's excellent solution.

Hi Brett,

I'm very glad that you've resolved the problem. I've consulted some further
experts on IIS and confirm some concepts on the IIS virutal folder and a
certain folder created as application. Here are some additional infos:
1. A Virtual Directory:
Generally we can create a virtual directory at any position of a website's
folder hierarchy. For example, create one under the site's root or create
one under another virutal diretory or even create one under another normal
folder in the site's folder hierarchy. Then we can access the virtual
folder(the pages or resources in it) via its virtual url( its parent
folder's url + the vitual folder's name). Such virutal folder can host
normal static web resources or classic ASP web pages. But not able to host
ASP.NET application.

2. create a folder and set it as an "Applicatio n" via its properties in
IIS setting. In fact , when we set a folder( in the site's folder
hierarchy) as "applicatio n", the IIS will automatically set it as a Virutal
Directory. In other word, it is just like we create a virutal folder with
the same name of this folder under its parent folder. Such folder(created
as application) can host asp.net web application. Also the session states
and application stats are separated from their parent web applications( in
the folder which at higher level). For example, if we have the following
hierarchy:

site root/
webapp1/ ' this is a asp.net web application(vir utal folder
and created as applcation)
sub1/ 'normal folder
sub2/ 'normal folder
if we create a new normal folder under sub2, suppose it is named "sub3".
Then it's unable to run asp.net application in it. After we set the "sub3"
as a "applicatio n" , its ok to run asp.net web application. However, at the
time we set it as a application, it is automatically a virutal folder.
Which is just like we create a virutal folder under sub2 and set it as an
application.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx


Nov 18 '05 #22
Thanks Steven, I appreciate the additional info. This helps clear up and
verify what Pete stated.

-Brett-

"Steven Cheng[MSFT]" <v-******@online.m icrosoft.com> wrote in message
news:KI******** ******@cpmsftng xa10.phx.gbl...
Thanks a lot for Pete's excellent solution.

Hi Brett,

I'm very glad that you've resolved the problem. I've consulted some further experts on IIS and confirm some concepts on the IIS virutal folder and a
certain folder created as application. Here are some additional infos:
1. A Virtual Directory:
Generally we can create a virtual directory at any position of a website's
folder hierarchy. For example, create one under the site's root or create
one under another virutal diretory or even create one under another normal
folder in the site's folder hierarchy. Then we can access the virtual
folder(the pages or resources in it) via its virtual url( its parent
folder's url + the vitual folder's name). Such virutal folder can host
normal static web resources or classic ASP web pages. But not able to host
ASP.NET application.

2. create a folder and set it as an "Applicatio n" via its properties in
IIS setting. In fact , when we set a folder( in the site's folder
hierarchy) as "applicatio n", the IIS will automatically set it as a Virutal Directory. In other word, it is just like we create a virutal folder with
the same name of this folder under its parent folder. Such folder(created
as application) can host asp.net web application. Also the session states
and application stats are separated from their parent web applications( in
the folder which at higher level). For example, if we have the following
hierarchy:

site root/
webapp1/ ' this is a asp.net web application(vir utal folder
and created as applcation)
sub1/ 'normal folder
sub2/ 'normal folder
if we create a new normal folder under sub2, suppose it is named "sub3".
Then it's unable to run asp.net application in it. After we set the "sub3" as a "applicatio n" , its ok to run asp.net web application. However, at the time we set it as a application, it is automatically a virutal folder.
Which is just like we create a virutal folder under sub2 and set it as an
application.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx

Nov 18 '05 #23

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

Similar topics

6
4842
by: Billy Jacobs | last post by:
I have a website which has both secure and non-secure pages. I want to uses forms authentication. How do I accomplish this? Originally I had my web.config file in the root with Forms Authentication set up and it worked just fine. Then I realized that I needed to have some pages unsecure. I then created 2 directories. One named Secure and the other named Public. I placed my web.config file in my
1
2522
by: MJ | last post by:
I'm building an application that has a file structure similar to the following: /myapp/user_login.aspx /myapp/user_page_1.aspx /myapp/user_page_2.aspx /myapp/user_page_3.aspx /myapp/admin/admin_login.aspx /myapp/admin/admin_page_1.aspx /myapp/admin/admin_page_2.aspx
1
3964
by: techfuzz | last post by:
I'm posting my problem experience and solution I found here for other ASP.NET developers. I have a web application that uses Forms Authentication with Active Directory to control access. In this web application, I have search page that utilizes the Windows Indexing Service (MSIDXS provider). For reasons I'm not aware of at this time, setting <identity impersonation="true" /> in the web.config causes an error whenever you try to search.
3
4874
by: Kris van der Mast | last post by:
Hi, I've created a little site for my sports club. In the root folder there are pages that are viewable by every anonymous user but at a certain subfolder my administration pages should be protected by forms authentication. When I create forms authentication at root level it works but when I move my code up to the subfolder I get this error: Server Error in '/TestProjects/FormsAuthenticationTestingArea' Application.
4
12331
by: Andrew Banks | last post by:
Can anyone help me out with why the following code in web.config <authentication mode="Forms" /> <forms loginUrl = "Secure/Login.aspx" /> </authentication> gives me the following error Configuration Error Description: An error occurred during the processing of a configuration file
0
4251
by: Anonieko Ramos | last post by:
ASP.NET Forms Authentication Best Practices Dr. Dobb's Journal February 2004 Protecting user information is critical By Douglas Reilly Douglas is the author of Designing Microsoft ASP.NET Applications and owner of Access Microsystems. Doug can be reached at doug@accessmicrosystems.com. --------------------------------------------------------------------------------
12
1626
by: Brett Robichaud | last post by:
Is anyone familiar with this error? I have this running just fine on my local machine but when I pushed it out to our development server I get this error. I have no idea what it is saying. Any clues? -Brett- Server Error in '/' Application. ---------------------------------------------------------------------------- ----
2
1426
by: Thomas Scheiderich | last post by:
I am trying to set up forms authentication in my IIS pages. I have a folder inside of my root folder I am trying to protect and I am getting an error when a page in the folder is accessed. The error is: **************************************************************************** **** Server Error in '/' Application. ----------------------------------------------------------------------------
1
1627
by: Sumaira Ahmad | last post by:
Hi, Please help me with this.. I am trying to use Forms Authentication in a sample project. I basically want to have two folders in my application , one in which I store pages that can be accesed without authentication and one which can be accessed only by authenticated users.. In my Anonymous folder: there is a default.aspx - which is a start up page
2
1657
by: Darrel | last post by:
My app has an 'admin' folder. This is the only directory i need to apply forms authentication to. Googling seems to indicate that the solution is to just give the admin folder it's own config file and set the authentication rules there. However, when I do that, I get this error: -------------------------- Parser Error Message: It is an error to use a section registered as
0
9688
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10491
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10031
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9079
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7571
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6809
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5593
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4146
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2941
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.