up vote 17 down vote favorite
7
share [g+] share [fb]

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!

link|improve this question

70% accept rate
feedback

7 Answers

up vote 12 down vote accepted

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 from Using XMLHttpRequest to log JavaScript errors:

window.onerror = function(msg, url, line)
{
  if(encodeURIComponent) {
    var req = new AjaxRequest();
    var params = "msg=" + encodeURIComponent(msg) + '&url=' + encodeURIComponent(url) + "&line=" + line;
    req.setMethod("POST");
    return req.loadXMLDoc("<i>/scripts/logerror.php</i>", params);
  }
  return false;
}
link|improve this answer
I just released a server control that helps you do this at thecodepage.com/post/JavaScript-Error-Notifications.aspx – Gabriel McAdams Feb 2 '10 at 18:59
feedback

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|improve this answer
I'd be interested in seeing the source – Ryu Jun 17 '09 at 18:48
I would be interested as well. – orip Aug 30 '09 at 9:21
Any chance that this code will be made available? – Luke Sep 9 '10 at 10:49
Unfortunately not :( as I am no longer working for the company where I created that code. But it was only about 100 lines of code, and should be reasonably easy to recreate from the details above. – Karl Sep 14 '10 at 8:58
it's right here guys: webcache.googleusercontent.com/… – Devin G Rhode Aug 7 '11 at 6:22
feedback

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|improve this answer
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
feedback

Short answer: Yes, it is possible.

Longer answer: People have already written about how you can (at least partially) solve this issue by writing your own code. However, do note that there are services out there that seems to have made sure the JS code needed works in many browsers. I've found the following:

I can't speak for any of these services as I haven't tried them yet. However, I do note that ExceptionHub seems to have some thorough code!

link|improve this answer
feedback

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|improve this answer
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
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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