Uncaught Error: INVALID_STATE_ERR: DOM Exception 11
android, cordova, domexception, javascript, xmlhttprequest
Solution
The error comes from the order of execution:
xhttp.open("POST",xmlFile,true);
xhttp.setRequestHeader("Content-type","application/xhtml+xml");
xhttp.send(postData);
You must first open the connection and then set the request header otherwise you will get the error.
Problem
I am getting the below error. Uncaught Error: INVALID_STATE_ERR: DOM Exception 11 Here is the code where I am getting Error RUN TIME. ``` xhttp.setRequestHeader("Content-type","application/xhtml+xml");<br> xhttp.open("POST",xmlFile,true);<br> xhttp.send(postData); ``` I tried with `false` in the third parameter of xhttp.open. Can anyone tell me what's causing this?