Friday, October 30, 2015

Re: With ie9 I get: XMLParserImplIE6 Could not find appropriate version of DOMDocument ?

IE 8 and IE 9 are using the IE6 implementation of XMLParserImpl. For some reasons this implementation fails to create a document using:


private static native JavaScriptObject selectDOMDocumentVersion() /*-{
 try { return new ActiveXObject("Msxml2.DOMDocument"); } catch (e) { }
 try { return new ActiveXObject("MSXML.DOMDocument"); } catch (e) { }
 try { return new ActiveXObject("MSXML3.DOMDocument"); } catch (e) { }
 try { return new ActiveXObject("Microsoft.XmlDom"); } catch (e) { }
 try { return new ActiveXObject("Microsoft.DOMDocument"); } catch (e) { }

 throw new Error("XMLParserImplIE6.createDocumentImpl: Could not find appropriate version of DOMDocument.");
}-*/
;


Maybe the IE9 user that produced the exception has disabled ActiveX in the browser?

-- J.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment