You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by "Christiaan van Zyl (JIRA)" <ji...@apache.org> on 2012/10/18 11:08:04 UTC

[jira] [Comment Edited] (CB-1666) [weinre] "INVALID_STATE_ERR: DOM Exception 11" with chbrody/Cordova-SQLitePlugin

    [ https://issues.apache.org/jira/browse/CB-1666?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13478841#comment-13478841 ] 

Christiaan van Zyl edited comment on CB-1666 at 10/18/12 9:07 AM:
------------------------------------------------------------------

I've managed to separate out the code and created a test page, see attached: "weinre_test.html"

Running this page with weinre 2.0.0-pre-H41DGW8S-incubating I get the error as described above intermittently. When I comment out the weinre include script I do not get the error.

Running this page with the patch 2.0.0-pre-H8EOSCLN-incubating I do not get the error, but the connection to weinre dies after running the test a couple of times.

I guess it might also be some bug in my code below or the plugin...

                
      was (Author: mozey):
    I've managed to separate out the code and created a test page, see attached.

Running this page with weinre 2.0.0-pre-H41DGW8S-incubating I get the error as described above intermittently. When I comment out the weinre include script I do not get the error.

Running this page with the patch 2.0.0-pre-H8EOSCLN-incubating I do not get the error, but the connection to weinre dies after running the test a couple of times.

I guess it might also be some bug in my code below or the plugin...

                  
> [weinre] "INVALID_STATE_ERR: DOM Exception 11" with chbrody/Cordova-SQLitePlugin
> --------------------------------------------------------------------------------
>
>                 Key: CB-1666
>                 URL: https://issues.apache.org/jira/browse/CB-1666
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: weinre
>    Affects Versions: 2.1.0
>         Environment: OS X Lion 10.7.4, Google Chrome 22.0.1229.94, iOS6 iPhone Simulator
>            Reporter: Christiaan van Zyl
>            Assignee: Patrick Mueller
>         Attachments: weinre_test.html
>
>
> When using weinre with Cordova-SQLitePlugin we get a javascript error:
> "INVALID_STATE_ERR: DOM Exception 11: An attempt was made to use an object that is not, or is no longer, usable. File: http://192.168.1.169:1337/target/target-script-min.js?_=1350463351336 Line Number: 2794"
> Above line number corresponds to the function NetworkRequest.prototype.handleDone in target-script-min.js.
> As a work around I have just wrapped a try catch and made it fail silently:
> NetworkRequest.prototype.handleDone = function() {
>     try {
>         var description, sourceString, status, statusText, success, time;
>         sourceString = this.xhr.responseText;
>         Weinre.wi.NetworkNotify.setInitialContent(this.id, sourceString, "XHR");
>         time = Date.now() / 1000.0;
>         status = this.xhr.status;
>         if (status === 0) {
>             status = 200;
>         }
>         statusText = this.xhr.statusText;
>         success = status >= 200 && status < 300;
>         if (success) {
>             return Weinre.wi.NetworkNotify.didFinishLoading(this.id, time);
>         } else {
>             description = "" + status + " - " + statusText;
>             return Weinre.wi.NetworkNotify.didFailLoading(this.id, time, description);
>         }
>     } catch (e) {
>         return;
>     }
> };

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira