Skip to content Skip to sidebar Skip to footer

Ie7/8 Responsetext In Readystate 3 Not Available

I've written an application with tornado to support real time updates on my website through HTTP streaming. It works in all browsers except IE7 and IE8. Here is the code that handl

Solution 1:

If you read your linked page again;

In comparison, the Microsoft XML (MSXML) version of the IXMLHTTPRequest interface exposes partial results through the responseStream property, which the Windows Internet Explorer native version does not implement. Be aware that this behavior also differs from the IServerXMLHTTPRequest interface, which provides partial results to responseBody and responseText.

That is, I guess, one needlessly complicated way of saying, this thing exists, but we don't do it. Useless IE. I just had to implement that same thing and ended up just falling back to long polling for IE.

The Dojo foundation has Cometd using Bayeux. But I believe only Jetty currently implements the Bayeux protocol.

So in conclusion, IE, DIAF.

Post a Comment for "Ie7/8 Responsetext In Readystate 3 Not Available"