0

I have just check the thread on adding of

  <customHeaders>
        <add name="X-UA-Compatible" value="IE=EmulateIE9" />
      </customHeaders>

If some one can help me with, on how to adding this server parameter for IE if the server is not IIS or Lamp stack, Rather jetty or tomcat?

Community
  • 1
  • 1
Gaurav Mishr
  • 572
  • 6
  • 21

1 Answers1

1

In jetty you can use the rewrite handler to add a header.

http://www.eclipse.org/jetty/documentation/current/jetty-handlers.html#rewrite-handler

Or if you are using servlets you can just use a servlet filter, since this is a part of the servlet spec it would work on jetty or tomcat.

http://docs.oracle.com/javaee/5/api/javax/servlet/Filter.html

jesse mcconnell
  • 7,102
  • 1
  • 22
  • 33