net::ERR_SPDY_PROTOCOL_ERROR

Hi,
I want to submit datas automatically with JavaScript:
new qx.io.remote.Request(“https://url.000webhostapp.com”, “POST”, “text/html”);

I get an error in chrome which is called: “net::ERR_SPDY_PROTOCOL_ERROR”.
Firefox-error is: "qx.io.remote.Exchange: Unknown status code: 0 (4)"
The transmission is not successfull. Any ideas how to fix it?

http://techdows.com/2015/08/fix-chromes-err_spdy_protocol_error.html

Thankyou for your comments. I read them and while I searched for a solution I found another one.

var url = […]?variable=value&[…]
var request = new qx.io.request.Xhr(url, “POST”);
request.send();

1 Like