Open atticoos opened 9 years ago
Calling self._request.send(body) on https://github.com/intuit/xhr-xdr-adapter/blob/master/src/xhr-xdr-adapter.js#L215 throws
self._request.send(body)
Error: Unspecified error.
After looking at the self._request object, which is a XDomainRequest, it seems that XDomainRequest is throwing it.
self._request
XDomainRequest
My request obeys:
POST
GET
text/plain
It would be great to have additional info or a way to reproduce. This code has been used in production on about a million IE9 users' machines so far, and it worked well as far as we can tell.
Calling
self._request.send(body)
on https://github.com/intuit/xhr-xdr-adapter/blob/master/src/xhr-xdr-adapter.js#L215 throwsAfter looking at the
self._request
object, which is aXDomainRequest
, it seems thatXDomainRequest
is throwing it.My request obeys:
POST
orGET
onlytext/plain
contentType only