The application-error tag has no wiki summary.
1
vote
1answer
30 views
which one is better: CustomErrors in web.config or application_error?
I'm trapping 404 errors in my MVC website. I have the option to either do that via adding the customerrors element in web.config or application_error, but I don't know which one is better. What is the ...
0
votes
0answers
55 views
Handle exception inside Application_Error global.asax
I have code written in global file on Application_Error.
I am inserting the error detail in my database.
But some how sometimes it is inserting thousand record of same error.
Does this mean that ...
0
votes
0answers
45 views
FolderBrowserDialog is killing the application on a particular XP machine but not Windows 7 machines
I have a VB.NET application that has been deployed on many windows 7 machines (both 32 and 64 bit) and a few XP machines with no problems. However, one particular customers XP machine is giving a ...
0
votes
0answers
467 views
Unable to start 0xc000007b [closed]
I am receiving an error when trying to start certain x64bit programs like Maya
or the Unreal Development Kit. At first I thought it was just Maya, but then I
downloaded and tried to run the UDK and ...
0
votes
0answers
188 views
Windows server 2008 R2 Application error, and site is getting slow down
Im using windows server 2008 R2 and recently my site become very slow and when I checked the event viewer and found an error logged, following is the details of the error
Faulting application name: ...
3
votes
2answers
148 views
Hunting down application errors coming from csrss.exe
I'm the maintainer of a legacy Delphi application. On machines running this program an Application Error appears sometimes with the caption referring to this Delphi app and a message like the ...
1
vote
1answer
231 views
How to trap an ASP.NET error which triggers Custom Error Page, but not Application_Error
I have an ASP.NET application using custom errors. There is one error that occurs that I can't seem to get any information about. When the error happens, it does trigger the custom error page, but for ...
0
votes
1answer
181 views
Any way to get more info from unhandled exceptions caught by Application_Error in Global.asax?
In production, I have the Application_Error event handled in Global.asax to log (and email me) details of any uncaught exceptions that sneak through:
void Application_Error(object sender, EventArgs ...
0
votes
0answers
58 views
Application stopped working while reading registry entries?
My application searches the registry (Win7) under some processing. The problem is that the application stops working on some of the systems. I looked for what is the problem exactly, and found that it ...
0
votes
1answer
372 views
MVC ELMAH v/s Application_Error
Background
I had [HandleError] in place in my MVC web app for exception handling but later it couldn't handle some exceptions so I was suggested to move on to the alternative Application_Error (my SO ...
0
votes
2answers
217 views
Throwing all errors to be handled in Application_Error handler in Global.asax
I want to throw all the form errors to the event log. To achieve this, I added code to Application_Error handler to send the error text to event log. I would like to know how to throw the exception to ...
1
vote
1answer
301 views
Changing a label text in Global.asax
I have a message zone defined in the master page (an update panel with a label inside). I want to handle all the exceptions globally and I thought I can catch them in the Application_Error event in ...
3
votes
2answers
384 views
Application_Error firing even for handled exceptions
I have some code to display a button if a URL exists:
try
{
string dashboardURL = Config.RootUrl + "/Dashboard/Default.aspx";
WebRequest req = WebRequest.Create(dashboardURL);
WebResponse ...
0
votes
0answers
126 views
Application Error on Heroku - Looking for app/config, but my config file is in the root directory
I'm trying to deploy to Heroku. Originally I was not having any issues, though I have recently come across an Application Error. It seems that Heroku is looking for the rooting ...
1
vote
1answer
859 views
Why “File does not exist.” exception in Application_Error does not have access to Session Data?
HttpContext.Current.Session object is null when application throws "File does not exist." exception in Application_Error event.
protected void Application_Error(object sender, EventArgs e)
{
...
0
votes
0answers
383 views
Runtime Exception At ECLIPSE Indigo Startup
An error has occurred. Check log file.
Error Details:
!ENTRY org.eclipse.osgi 4 0 2012-04-26 16:04:01.984
!MESSAGE Application error
!STACK 1
java.lang.RuntimeException: Application ...
0
votes
1answer
147 views
Handle Application-Level Errors
I have code(It is found in the Internet) to handle application error. I wrote in Event Log.
void Application_Error(object sender, EventArgs e)
{
Exception myError = null;
...
1
vote
0answers
459 views
Global.asax ApplicationError does not trigger for exceptions in webmethods
I have a situation where I use jQuery to call Webmethod in .aspx codebehind (not asmx webservice or anything similar). I have a simple error logger defined in Global.asax ApplicationError, so (almost) ...
4
votes
1answer
3k views
System.Web.HttpException File does not exist - Page loads just fine (ASP.NET)
I'm using Log4Net and logging everytime my ASP.NET-Application throws an error:
protected void Application_Error(object sender, EventArgs e)
{
Exception ex = Server.GetLastError();
...
2
votes
2answers
2k views
How to know if the request is ajax in asp.net in Application_Error()
How to know if the request is ajax in asp.net in Application_Error()
I want to handle app error in Application_Error().If the request is ajax and some exception is thrown,then write the error in ...
0
votes
1answer
295 views
Asp.net MVC 3 view engine error
I am trying for custom error handling at global level in Application_Error.
Exception ex = Server.GetLastError();
Server.ClearError();
AssortmentDefinitionLogManager.LogException(ex);
...
0
votes
1answer
159 views
.Net Application_Error
In Global.asax i have code in Application_Error handler which stores the error message in HttpRuntime.Cache, logs the error to the application log file and then Transfers the user over to the ...
40
votes
7answers
12k views
Application_Error not firing when customerrors = “On”
I have code in the global.asax file's Application_Error event which executes when an error occurs and emails details of the error to myself.
void Application_Error(object sender, EventArgs e)
{
...
1
vote
0answers
279 views
how do i fire elmah logger after Application_Error
I'm small mechanism that analyse 404 errors
i have small xml that contain old urls and redirect it to new
im doing it in Application_Error but i see that elmah log error first and the fire ...
5
votes
2answers
2k views
ErrorAttribute vs OnException vs Application_Error
I want to handle application wide error and show a ErrorView page in asp.net mvc.
There are 3 ways to do it (or i know).
1) ErrorAttribute in BaseController:Controller class.
Can be used on ...
1
vote
2answers
201 views
Is it possible set cookies in Application_error
I'm trying to see if I can set a cookie during the Application_Error() event of the global.asax.
When I debug my application, it looks like the code adds the cookie but the next time it loads, the ...
0
votes
1answer
341 views
Static file requests don't raise application_error event
in my Asp.Net MVC project I'm cathing Http FileNotFound Exceptions (for a missing image) and then redirect request to a default image like below
protected void Application_Error(object sender, ...
0
votes
1answer
2k views
Application_Error not firing
I'm not able to get my Application_Error method to fire in global.asax. I've placed a breakpoint in the first line of my Application_Error function but it never breaks there. Instead, the server is ...
1
vote
1answer
407 views
Can I handle all errors through ASP.Net?
I am trying to create a 404 handling page but I am now stuck with the page only working for .aspx files, which isn't really what I need.
I am running on IIS6. The site has a wildcard mapping, for ...
0
votes
0answers
887 views
IIS 7.5 Application_Error Integrated mode
Please help, I am struggling with this all the day long.
I have an MVC application and I am having some code in Application_Error (global.asa)
This application uses a dedicated application pool ...
0
votes
0answers
1k views
ASP.NET MVC - Illegal characters in path - redirect from Application_Error
In my application I generated few url which contained " (double quotes), unfortunately.
I corrected the url's but google bot already indexed wrong urls.
Now I get quite often following exception:
...
13
votes
3answers
8k views
How to solve exception “File does not exist”?
I have a basic ASP.NET MVC2 site which logs a single "File does not exist" error every time a view (not partial views) is loaded. I am pretty sure this is because I am referencing a file, from the ...
1
vote
1answer
199 views
How to detect that the application start failed?
Our Situation:
We have several webservers behind a loabalancer (Astaro Security Gateway). On the webservers we run an asp.net application and we have customerrorpages configured for 404 and 500 ...
1
vote
2answers
504 views
DDE Server Windows:orcascr9.exe: Application Error
I've looked at the queries on SO that pertain to similar errors - but haven't found anything so far, to help with this particular problem I am having with an orcascript which I am running under ...
3
votes
1answer
2k views
Convert an exception into HTTP 404 response in the Application_Error
First of all, quickly what exactly I want to achieve: translate particular exception into the HTTP 404 so the ASP.NET can handle it further.
I am handling exceptions in the ASP.NET (MVC2) this way:
...
1
vote
3answers
2k views
Server.Transfer(“error_404.aspx”) in Application_Error returns a blank page
I look for HttpExceptions in the Application_Error sub of my global.asx
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
Dim ex As Exception = ...
7
votes
3answers
3k views
Handle “potentially dangerous Request.Form value…”
What's the best way to handle errors such as "A potentially dangerous Request.Form value was detected from the client" in ASP.NET? I'd like to keep the validation on, as my forms have no valid reasons ...
0
votes
1answer
806 views
Application_Error event in Global.asax not firing in Release Mode? ASP.NET MVC application
I'm working on an ASP.NET MVC application. I'm having a problem where my Application_Error() event in my Global.asax file isn't firing in Release Mode. If I compile in Debug it fires just
fine.
PS: ...
2
votes
4answers
3k views
Application Error thrown in Compact Framework app on Windows Ce 6.0
I get an application error thrown when I close the program using as cancel button which all it does is close the form.
The error says:
"Application appName.exe encountered a serious error and must ...
0
votes
1answer
808 views
Server.Transfer cannot render an MVC-View
In my Application_Error event handler i want to render an MVC-View for 404. I do not want to redirect because of SEO.
void Application_Error(...)
{
if (serverException is HttpException && ...
1
vote
1answer
471 views
How to handle non-existing routes in MVC that lead to errors?
In my application, I have some controllers that use specific routes and some that use the default route. As a result, I have something like this:
//.. other more specific routes
routes.MapRoute(
...
0
votes
1answer
221 views
Application error
HI,
I'm getting following error when I run the application after building it. Any solution to this problem is appreciated.
"The application failed to initialize properly (0xc0000022). Click on OK ...
4
votes
2answers
3k views
How to get which page threw an exception to Application_error in aspx
I have a general exception handler, Application_error in my global.asax where I'm trying to isolate all the uncaught exceptions on all my many pages. I don't want to use Page_error to catch exception ...
