| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 
 | import QtQuick 2.0
QtObject {
    property string url: "testdocument.html"
    property bool readyState: false
    property bool openedState: false
    property bool status: false
    property bool statusText: false
    property bool responseText: false
    property bool responseXML: false
    property bool dataOK: false
    Component.onCompleted: {
        var x = new XMLHttpRequest;
        x.abort();
        if (x.readyState == XMLHttpRequest.UNSENT)
            readyState = true;
        x.open("PUT", url);
        x.setRequestHeader("Accept-Language", "en-US");
        x.abort();
        x.open("GET", url);
        x.setRequestHeader("Accept-Language", "en-US");
        if (x.readyState  == XMLHttpRequest.OPENED)
            openedState = true;
        try {
            var a = x.status;
        } catch (error) {
            if (error.code == DOMException.INVALID_STATE_ERR)
                status = true;
        }
        try {
            var a = x.statusText;
        } catch (error) {
            if (error.code == DOMException.INVALID_STATE_ERR)
                statusText = true;
        }
        responseText = (x.responseText == "");
        responseXML = (x.responseXML == null);
        // Test to the end
        x.onreadystatechange = function() {
            if (x.readyState == XMLHttpRequest.DONE) {
                dataOK = (x.responseText == "QML Rocks!\n");
            }
        }
        x.send()
    }
}
 |