vote up 1 vote down star
2

Hi,

I am using ASP.net's AJAX framework and I am trying to do some exception logging on the javascript-called webservice.

Looking through the web, I find some people handling them client-side and sending them back to the server. I'd prefer not doing that since it relies on an other server call (if it failed the first time, sending an other request doesn't look like a good idea and that makes me change all my calls)

I see some other people decorating all their methods with try... catch blocks (which leads to duplicate error handling, and yet an other try catch block).

However, I'm trying to achieve something similar to global.asax's Application_Error() which handles every uncaught exception (nope, it doesn't seem to be called for AJAX called methods exceptions).

Is that even possible?

flag

1 Answer

vote up 2 vote down check

Use ELMAH - it can capture ajax errors.

link|flag
Yep, take a look at the MsAjaxDeltaErrorLogModule in that project. – Zhaph - Ben Duguid Apr 24 at 12:26
That looks awesome, however I can't download it at work (don't ask...) . Any chance for a snippet? – Luk Apr 24 at 12:35
The code's here: code.google.com/p/elmah/… – Rashack Apr 24 at 19:39
thanks a lot, Rashack! – Luk Apr 26 at 13:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.