Our application cannot run with IE11
and EM
. We are using modify JSF-1.2 and RichFaces 3.X . When we run Web page on IE11 without EM all working OK, but we have to use IE11
with EM
. Is any possible method to disable EM for page from code?
IE
console raising error: "XML5632: Only one root element is allowed." It occurs when moving between pages.
PS: Application working on IE8
, IE9
and IE11
without any problems but when you try it with IE11
and EM
It´s raising error.
Solution for this problem is not sanding
XHTML
from server but nativeHTML
. This providing filter which change response fromapplication/xhtml+xml
totext/html
. Filter get response form header of user agent and find if is set„compatible; msie 8.0“
which means, thatIE11
runs under Enterprise Mode and EmulateIE8
.Our implemented solution: