views:

29

answers:

1

The exception NS_ERROR_DOM_INVALID_EXPRESSION_ERR is being thrown in the web application when the network cable is removed. The web app constantly sends and receives message from the server.

Can anyone tell what could be causing this error and how to fix this issue?

+3  A: 

The web app should be checking the return value of it's AJAX calls before attempting DOM manipulations on the results.

Byron Whitlock
This is where it is throwing error : var xpathResult = this.evaluate(cXPathString, this, this.nsResolver, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
MockedMan.Object