Error handling not working

T

tshad

This has been driving me crazy.

I have been trying to get the error handling working on my system and can
get parts of it working and others won't work at all.

I found that you can't access session variables from Application_Error
event, but I need to so I don't need to set up traces to see what they are
during an error. I am emailing the error condition to myself when it
happens.

So I moved the code to one of my error pages and it works fine if called
directly. So I added this code to my Application_Error routine:

Sub Application_Error(Sender As Object, E as EventArgs)
response.Redirect("/PageError.aspx")
End Sub

And it goes fine to my error page which emails my session variables to me,
but when I try to do:

Dim exception As Exception = Server.GetLastError()

I get nothing. I assume the Application_Error routine cleared it.

I then tried to comment out the Application_Error code so it would go to the
CustomErrors in my webconfig file:

<customErrors defaultRedirect="PageUnavailable.aspx" mode="Off" />

but the page is never called - it goes to the MS Error page. If Change mode
to "On",

<customErrors defaultRedirect="PageUnavailable.aspx" mode="On" />

I get the following page:

*********************************************************************
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 remotely (for security reasons). It could, however,
be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable
on remote machines, 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 "Off".


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

<configuration>
<system.web>
<customErrors mode="Off"/>
</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="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
************************************************************************************

I also tried setting up a Page_Error in my program and it never gets called.

I don't understand why this is a problem.

Tom
 
G

Guest

T

tshad

That will get me the last error, but I am trying to get all the errors and
am looping through the innerException object. The GetBaseException also
gets me the last one, which would be fine. But I found that the error
response I get back is unreadable.

If I don't do the Application_Error, I get this error:

*******************************************************************
Compilation Error
Description: An error occurred during the compilation of a resource required
to service this request. Please review the following specific error details
and modify your source code appropriately.

Compiler Error Message: BC30451: Name 'SearchType' is not declared.

Source Error:

Line 89: Else
Line 90: 'We aren't dealing with an array, so just display the
variable
Line 91: if
SearchType.IndexOf(Session.Contents(strName).GetType.ToString()) >= 0 then
Line 92: trace.warn(strName & " - " & Session.Contents(strName) & "
" & Session.Contents(strName).GetType.ToString)
Line 93: else

Source File:
C:\Inetpub\wwwroot\staffingworkshop\ADMINISTRATION\showExceptions.aspx
Line: 91

*******************************************************************

If I do the following:

*******************************************************************
Sub Application_Error(Sender As Object, E as EventArgs)
Dim exception As Exception = Server.GetLastError().GetBaseException()
Dim ErrorString as String

While Not exception Is Nothing
ErrorString &= "Source: " & exception.Source & vbCrLf & _
"Message: " & exception.Message & vbCrLf & _
"Stack Trace: " & vbCrLf & exception.StackTrace & vbCrLf &
vbCrLf
exception = exception.InnerException
End While

Dim MyMessage as New MailMessage
MyMessage.To = (e-mail address removed)
MyMessage.From = "(e-mail address removed)"
MyMessage.Subject = "Unhandled ASP.Net Error"
MyMessage.Body = vbCrLf & vbCrLf & "An Error was Generated on " & now &
vbCrLf & vbCrLf & _
"To see a list of Errors:
HTTP:\\www.staffingworkshop.com\administration\showExceptions.aspx" & vbCrLf
& vbCrLf & _
"Page: " & HTTPContext.Current.Request.Url.ToString() & vbCrLf &
vbCrLf & ErrorString

SmtpMail.SmtpServer = Application("MailServer")
SmtpMail.Send(MyMessage)

Context.ClearError()
response.Redirect("/PageError.aspx")
End Sub
*******************************************************************

I get the following results:

********************************************************************
An Error was Generated on 2/21/2006 5:39:25 PM

To see a list of Errors:
HTTP:\\www.staffingworkshop.com\administration\showExceptions.aspx

Page: http://www.staffingworkshop.com/ADMINISTRATION/showExceptions.aspx

Source: System.Web
Message: External component has thrown an exception.
Stack Trace:
at
System.Web.Compilation.BaseCompiler.ThrowIfCompilerErrors(CompilerResults
results, CodeDomProvider codeProvider, CodeCompileUnit sourceData, String
sourceFile, String sourceString)
at System.Web.Compilation.BaseCompiler.GetCompiledType()
at System.Web.UI.PageParser.CompileIntoType()
at System.Web.UI.TemplateParser.GetParserCacheItemThroughCompilation()
********************************************************************

If I take out the GetBaseException():

Dim exception As Exception = Server.GetLastError().GetBaseException()

I get

***********************************************************************
An Error was Generated on 2/21/2006 5:41:49 PM

To see a list of Errors:
HTTP:\\www.staffingworkshop.com\administration\showExceptions.aspx

Page: http://www.staffingworkshop.com/ADMINISTRATION/showExceptions.aspx

Source: System.Web
Message: External component has thrown an exception.
Stack Trace:
at System.Web.UI.TemplateParser.GetParserCacheItemInternal(Boolean
fCreateIfNotFound)
at System.Web.UI.TemplateParser.GetParserCacheItemWithNewConfigPath()
at System.Web.UI.TemplateParser.GetParserCacheItem()
at
System.Web.UI.TemplateControlParser.CompileAndGetParserCacheItem(String
virtualPath, String inputFile, HttpContext context)
at System.Web.UI.TemplateControlParser.GetCompiledInstance(String
virtualPath, String inputFile, HttpContext context)
at System.Web.UI.PageParser.GetCompiledPageInstanceInternal(String
virtualPath, String inputFile, HttpContext context)
at System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context,
String requestType, String url, String path)
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String
requestType, String path, String pathTranslated, Boolean useAppConfig)
at
System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&
completedSynchronously)

Source: System.Web
Message: External component has thrown an exception.
Stack Trace:
at
System.Web.Compilation.BaseCompiler.ThrowIfCompilerErrors(CompilerResults
results, CodeDomProvider codeProvider, CodeCompileUnit sourceData, String
sourceFile, String sourceString)
at System.Web.Compilation.BaseCompiler.GetCompiledType()
at System.Web.UI.PageParser.CompileIntoType()
at System.Web.UI.TemplateParser.GetParserCacheItemThroughCompilation()

***********************************************************************

Either way there is nothing like: BC30451: Name 'SearchType' is not
declared.

Where do you get that?

These message are pretty useless without it.

Thanks,

Tom
 

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

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,077
Latest member
SangMoor21

Latest Threads

Top