vote up 9 vote down star
4

Hi

Im running a ASP.NET Site where I have problems to find some JavaScript-Errors just with manual testing.

Is there a possibility to catch all JavaScript-Errors on the Client Side and log them on the Server i.e. in the EventLog (via Webservice or something like that)?

Thanks for your answers!

flag

67% accept rate

6 Answers

vote up 9 vote down check

You could try setting up your own handler for the onerror event and use XMLHttpRequest to tell the server what went wrong, however since it's not part of any specification, support is somewhat flaky.

Here's an example: Using XMLHttpRequest to log JavaScript errors

link|flag
vote up 3 vote down

I have just implemented server side error logging on javascript errors on a project at work. There is a mixture of legacy code and new code using jQuery.

I use a combination of window.onerror and wrapping the jQuery event handlers and onready function with an error handling function (see: JavaScript Error Tracking: Why window.onerror Is Not Enough).

  • window.onerror: catches all errrors in IE (and most errors in Firefox), but does nothing in Safari and Opera.
  • jQuery event handlers: catches jQuery event errors in all browsers.
  • jQuery ready function: catches initialisation errors in all browsers.

Once I have caught the error, I add some extra properties to it (url, browser, etc) and then post it back to the server using an ajax call.

On the server I have a small page which just takes the posted arguments and outputs them to our normal server logging framework.

I would like to open source the code for this (as a jQuery plugin). If anyone is interested let me know, it would help to convince the bosses!

link|flag
I'd be interested in seeing the source – Ryu Jun 17 at 18:48
I would be interested as well. – orip Aug 30 at 9:21
vote up 2 vote down

You could potentially make an Ajax call to the server from a try/catch, but that's probably about the best you can do.

May I suggest JavaScript unit testing instead? Possibly with JSUnit?

link|flag
The problem why we are not using JavaScript UnitTesting is because there are too many people contributing to the Site/Content and they are using JavaScript (but don't have a clue about it!) so a general solution would be better. – MADMap Sep 23 '08 at 6:48
vote up 0 vote down

The problem why we are not using JavaScript UnitTesting is because there are too many people contributing to the Site/Content and they are using JavaScript. The Content is nothing we (as developers) should care about, but there are mistakes in the code. So a general solution would be better.

link|flag
I assume you don't mean average user contributed (else that is XSS hole)... but... you could maybe isolate their JS in try/catch so it at least doesn't affect your own JS... without knowing the dynamic of the site, I don't know if this will help or not... – Mike Stone Sep 23 '08 at 7:06
The content is from other Teams in the Company, not from users so it's not an security-risk – MADMap Sep 23 '08 at 8:41
vote up 0 vote down

Also I recomend using TraceTool utility, it comes with JavaScript support and is very handy for JS monitoring.

link|flag
vote up 0 vote down

If you're wanting to log the client-side errors back to the server you're going to have to do some kind of server processing. Best bet would be to have a web service which you can access via JavaScript (AJAX) and you pass your error log info to it.

Doesn't 100% solve the problem cuz if the problem is with the web server hosting the web service you're in trouble, you're other option would be to send the info via a standard page via a query string, One method of doing that is via dynamically generating Image tags (which are then removed) as the browser will try and load the source of an image. It gets around cross-domain JavaScript calls nicely though. Keep in mind that you're in trouble if someone has images turned off ;)

link|flag

Your Answer

Get an OpenID
or

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