The onexception tag has no wiki summary.
3
votes
2answers
620 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 ...
2
votes
1answer
186 views
Determine result type in OnException of controller
I'm working on an MVC.NET 2.0 project where I'm trying to put in some special error handling logic in the OnException method of the controller. Basically I want to be able to determine the result ...
2
votes
6answers
2k views
ASP.NET MVC Controller.OnException not being called
I have a base controller class where I'm overriding to the Controller.OnException handler method in order to provide a generic error handling for certain types of controllers that will inherit from ...
0
votes
0answers
29 views
Got 500 error on PPE site
I am use MVC2 with IIS7. I try to use below code to return some fixed exception message to user.
THe issue is that in my localhost or dev web server, this works well. However, when we deploy it to ...
0
votes
1answer
272 views
Does javax.jms.ExceptionListener delay the onException callback when network connection goes down?
I'm using Websphere Application Server (WAS) 6.1's default messaging provider for JMS. My remote client application creates a connection, then does a setExceptionListener to register the callback.
...