In the past (6.1 build 8021), the server never explicitly sent user agent compatibility mode headers (X-UA-Compatible) to the web clients. Some pages contained the following meta tag but it did not always work due to tedious IE heuristics, mostly using the console.
``meta http-equiv``=``"X-UA-Compatible" content``=``"IE=Edge"``/
Changes made in build 8021
The following HTTP header is now set by default on all requests responded by Tomcat.
X-UA-Compatible: IE=edge
This header effectively makes the console and IE render using the latest available algorithms. The update has solved all reported compatibility issues.Restoring old behavior
If this new behavior is not wanted, administrators can change the webserver configuration as follows:
filter```` ````filter-name``HttpHeaderFilter/``filter-name```` ````filter-class``com.neolane.jssp.HttpHeaderFilter/``filter-class````+ ``init-param````+ ``param-name``X-UA-Compatible/``param-name````+ ``param-value``/``param-value````+ /``init-param```` ``/``filter
Note:
If you feel the need to perform such changes in any instance, contact the R&D department. It can have complex impacts on all IE clients.
Limitations
It does not work for delivery previews since they are not delivered over HTTP by the Adobe Campaign server. It is an embedded IE control that contains the customized HTML. The HTTP X-UA-Compatible header does not apply, and the embedded IE forces compatibility mode.
For those cases, there are the following workarounds:
```meta http-equiv=“X-UA-Compatible” content=“IE=Edge”``/`
HKLM\Software\Wow6432Node\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION\nlclient.exe
(For 32-bit windows, it is HKLM\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION)
Type: DWORD
Value: 8000 (decimal)
You can experiment with other values like 9000 if you don’t even target IE8.
HKLM\Software\Wow6432Node\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION\nlclient.exe``(For 32-bit windows, it is HKLM\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION )``Type: DWORD