PC Review


Reply
Thread Tools Rating: Thread Rating: 2 votes, 3.00 average.

'current custom error settings for application prevent details of application error from being viewed. '

 
 
Damian
Guest
Posts: n/a
 
      30th Dec 2003
Hi everyone

I'm having an issue with one of our applications. I'm getting the
following error when attempting to log in to the site:

Server Error in 'xxxxxxxxxxxxxxxx' Application.
--------------------------------------------------------------------------------

Runtime Error
Description: An application error occurred on the server. The current
custom error settings for this application prevent the details of the
application error from being viewed.

Details: To enable the details of this specific error message to be
viewable on the local server machine, please create a <customErrors>
tag within a "web.config" configuration file located in the root
directory of the current web application. This <customErrors> tag
should then have its "mode" attribute set to "RemoteOnly". To enable
the details to be viewable on remote machines, please set "mode" to
"Off".


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</system.web>
</configuration>


Notes: The current error page you are seeing can be replaced by a
custom error page by modifying the "defaultRedirect" attribute of the
application's <customErrors> configuration tag to point to a custom
error page URL.


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="On" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The customErrors setting appears to make no difference, whether it's
the one on the machine.config file (.NET FWK 1.0) or the one on the
application's web.config file, or both, or any of the combinations
I've tried. The error stays the same

As I mention the current .NET version on the system is 1.0, however by
mistake I first installed (and uninstalled) the newer 1.1 version.

The machine is a W2K domain controller and the user I'm logging in to
the application with has been granted admin rights. The ProcessModel
line on the machine.config file is set to 'SYSTEM', and security on
IIS is set to Basic for the application. 'Impersonate' is set to True.

I checked the application mappings part of the Configuration dialog
for the application and the Microsoft .NET Framework entries are
pointing to the proper (installed) version.

I'm really not sure what else to check and I really need to get this
going. I'll appreciate any and all help you could give me.

Thanks in advance, regards

Damián
 
Reply With Quote
 
 
 
 
Jim Cheshire [MSFT]
Guest
Posts: n/a
 
      30th Dec 2003
Hi Damian,

The fact that a change in the web.config does not illicit a change in
behavior means that we aren't successfully parsing the configuration file.
We aren't getting that far.

The easiest way to figure out what's going on would be to create a simple
inline ASP.NET page and place it in the folder for the default Web site.
(If there is a web.config there, rename it first to web.config.old or
something.) Here's a sample file you can use. Just paste this into an
empty file and save it as test.aspx:

<%@ Page Language="C#" %>
<script runat="server">

private void Page_Load(object sender, System.EventArgs e) {
lblWho.Text = "ASP.NET running as : " +
System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblWho" runat="server">Label</asp:Label>
</form>
</body>
</html>


Jim Cheshire, MCSE, MCSD [MSFT]
ASP.NET Developer Support

This post is provided "as-is" and confers no rights.


--------------------
>From: (E-Mail Removed) (Damian)
>Newsgroups: microsoft.public.dotnet.framework.aspnet
>Subject: 'current custom error settings for application prevent details of

application error from being viewed. '
>Date: 30 Dec 2003 07:54:47 -0800
>Organization: http://groups.google.com
>Lines: 68
>Message-ID: <(E-Mail Removed)>
>NNTP-Posting-Host: 200.80.152.107
>Content-Type: text/plain; charset=ISO-8859-1
>Content-Transfer-Encoding: 8bit
>X-Trace: posting.google.com 1072799687 32106 127.0.0.1 (30 Dec 2003

15:54:47 GMT)
>X-Complaints-To: groups-(E-Mail Removed)
>NNTP-Posting-Date: Tue, 30 Dec 2003 15:54:47 +0000 (UTC)
>Path:

cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
..phx.gbl!newsfeed00.sul.t-online.de!t-online.de!newsfeed.icl.net!newsfeed.fj
serv.net!news.maxwell.syr.edu!postnews1.google.com!not-for-mail
>Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:198864
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>
>Hi everyone
>
>I'm having an issue with one of our applications. I'm getting the
>following error when attempting to log in to the site:
>
>Server Error in 'xxxxxxxxxxxxxxxx' Application.
>---------------------------------------------------------------------------

-----
>
>Runtime Error
>Description: An application error occurred on the server. The current
>custom error settings for this application prevent the details of the
>application error from being viewed.
>
>Details: To enable the details of this specific error message to be
>viewable on the local server machine, please create a <customErrors>
>tag within a "web.config" configuration file located in the root
>directory of the current web application. This <customErrors> tag
>should then have its "mode" attribute set to "RemoteOnly". To enable
>the details to be viewable on remote machines, please set "mode" to
>"Off".
>
>
><!-- Web.Config Configuration File -->
>
><configuration>
> <system.web>
> <customErrors mode="RemoteOnly"/>
> </system.web>
></configuration>
>
>
>Notes: The current error page you are seeing can be replaced by a
>custom error page by modifying the "defaultRedirect" attribute of the
>application's <customErrors> configuration tag to point to a custom
>error page URL.
>
>
><!-- Web.Config Configuration File -->
>
><configuration>
> <system.web>
> <customErrors mode="On" defaultRedirect="mycustompage.htm"/>
> </system.web>
></configuration>
>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
>The customErrors setting appears to make no difference, whether it's
>the one on the machine.config file (.NET FWK 1.0) or the one on the
>application's web.config file, or both, or any of the combinations
>I've tried. The error stays the same
>
>As I mention the current .NET version on the system is 1.0, however by
>mistake I first installed (and uninstalled) the newer 1.1 version.
>
>The machine is a W2K domain controller and the user I'm logging in to
>the application with has been granted admin rights. The ProcessModel
>line on the machine.config file is set to 'SYSTEM', and security on
>IIS is set to Basic for the application. 'Impersonate' is set to True.
>
>I checked the application mappings part of the Configuration dialog
>for the application and the Microsoft .NET Framework entries are
>pointing to the proper (installed) version.
>
>I'm really not sure what else to check and I really need to get this
>going. I'll appreciate any and all help you could give me.
>
>Thanks in advance, regards
>
>Damián
>


 
Reply With Quote
 
BruceJohnson
Guest
Posts: n/a
 
      30th Dec 2003
As another possible way to diagnose web.config problems, trying running
the web site though VS.NET using the Start without Debugging (Ctrl-F5)
option. That causes the errors associated with web.config to be
displayed (within the restrictions of remote debugging, of course).

HTH

Bruce Johnson
http://www.ObjectSharp.com/Bruce

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Reply With Quote
 
Jim Cheshire [MSFT]
Guest
Posts: n/a
 
      30th Dec 2003
Bruce,

That's not going to help here. We shouldn't be attempting to attach a
debugger anyway. In this scenario, the user is simply browsing to the
ASP.NET application. If there is something wrong with the ASP.NET worker
process running the app and the app domain loading, you will get this
error. It really isn't related to the web.config file. There's an problem
somewhere else.

Jim Cheshire, MCSE, MCSD [MSFT]
Microsoft Developer Support
ASP.NET
(E-Mail Removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
>From: BruceJohnson <(E-Mail Removed)>
>References: <(E-Mail Removed)>
>X-Newsreader: AspNNTP 1.50 (ActionJackson.com)
>Subject: RE: 'current custom error settings for application prevent

details of application error from being viewed. '
>Mime-Version: 1.0
>Content-Type: text/plain; charset="us-ascii"
>Content-Transfer-Encoding: 7bit
>Message-ID: <(E-Mail Removed)>
>Newsgroups: microsoft.public.dotnet.framework.aspnet
>Date: Tue, 30 Dec 2003 09:50:05 -0800
>NNTP-Posting-Host: actionjackson133.dsl.frii.net 216.17.147.133
>Lines: 1
>Path:

cpmsftngxa07.phx.gbl!cpmsftngxa06.phx.gbl!cpmsftngxa09.phx.gbl!TK2MSFTNGP08.
phx.gbl!TK2MSFTNGP11.phx.gbl
>Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.aspnet:198912
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>
>As another possible way to diagnose web.config problems, trying running
>the web site though VS.NET using the Start without Debugging (Ctrl-F5)
>option. That causes the errors associated with web.config to be
>displayed (within the restrictions of remote debugging, of course).
>
>HTH
>
>Bruce Johnson
>http://www.ObjectSharp.com/Bruce
>
>*** Sent via Developersdex http://www.developersdex.com ***
>Don't just participate in USENET...get rewarded for it!
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Service application Occurs Application Error Event ID 1000 =?Utf-8?B?VGVkZHk=?= Microsoft Dot NET Framework 1 11th Dec 2006 01:14 PM
Custom Application Settings rob Microsoft Dot NET Framework Forms 1 23rd Jun 2006 06:13 PM
Custom Application Settings rob Microsoft C# .NET 1 23rd Jun 2006 06:13 PM
Application Error Handler can not get current Unicode Url Steve Microsoft ASP .NET 1 1st May 2005 11:54 PM
The application, C:\WINDOWS\system32\lsass.exe, generated an application error The error occurred on 05/03/2004 @ 10:50:46.755 The exception generated was c0000005 at address 00900090 () =?Utf-8?B?cmljayBj?= Windows XP General 2 5th May 2004 03:36 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:47 AM.