I need to make Grizzly not alter the headers keys.
I found this property PRESERVE_HEADER_CASE
but no idea where to configure
Any idea?
Regards
Since Mule 3.8.1, this can be done by passing a system property
org.glassfish.grizzly.http.PRESERVE_HEADER_CASE=true
Java way:
public static final String PRESERVE_HEADER_CASE = "org.glassfish.grizzly.http.PRESERVE_HEADER_CASE";
public SystemProperty headerCaseProperty = new SystemProperty(PRESERVE_HEADER_CASE, "true");