搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

[Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://bolototoolbar/content/soapclient.js :: anonymous :: line 89" data: no]

more options

I have been unable to find out any details about this specific error message, other than for Google Chrome, which is strange because although I have Chrome installed I don't use it, I use either Internet Explorer or - most often - Firefox. This error is only occurring on the Firefox browser and is not isolated to any specific website (it happens regardless of what website I view, including this page).

I have also sent a query to Sun Microsystems - Java support.

I have been unable to find out any details about this specific error message, other than for Google Chrome, which is strange because although I have Chrome installed I don't use it, I use either Internet Explorer or - most often - Firefox. This error is only occurring on the Firefox browser and is not isolated to any specific website (it happens regardless of what website I view, including this page). I have also sent a query to Sun Microsystems - Java support.

所有回覆 (4)

more options

I found this on a customer pc. I removed an application with a firefox plugin called i5 Alert Button. After Disabling the plugin in firefox I did not get the error anymore. During the unistall I saw it removing the bolototoolbar file as well.

If you have this application try removing it.

more options

Thank you, that fix worked.

Incidentally, I had always wondered why an updated version of that alert button never took over the old i5 button when I downloaded it; immediately upon uninstalling i5, the Missing Child Alert Button (http://www.addthealert.com/) replaced it on the toolbar.

more options

I've got the same problem. I realized a web application that must send a request (a get request). The app works correctly on IE, but in Mozilla Firefox catch an exception (in the method http.send()) like this:

[Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: user/workspace/sendRequest.js :: anonymous :: line 23" data: no]

I need that my application is portable..My javascript code is that, and in another js file I call the function response=sendRequest(indirizzo,null.'get'); :

https://support.mozilla.com/media/uploads/images/Immagine2.png

And this is the code for get the proper xmlhttp according to the browser:

function getXMLHttp() {

      	  var xmlhttp = null;
      	  if (window.ActiveXObject) {
      	    if (navigator.userAgent.toLowerCase().indexOf("msie 5") != -1) {
          	    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");  } 
      	    else {
               xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");} }
             if (!xmlhttp && typeof(XMLHttpRequest) != 'undefined') {
               xmlhttp = new XMLHttpRequest();}
          return xmlhttp; } 


Onclick on a button, I invoke the function that call sendRequest..Where is the problem? Thanks in advance

more options

I have been getting this issue and no don't have i5 or bolototoolbar. This started to happen after it updated to 6.0. With this issue also can not close tabs and get a script error when trying to close a tab.