INVALID_STATE_ERR: DOM Exception 11: An attempt was made to use an object that is not, or is no longer, usable
The problem was that I was calling req.setRequestHeader(...)
before calling req.open(...)
. Reversing the order fixed the problem.