Durch die Verwendung von "RequestHeader set syn_urlmap http://<SERVERNAME_intern>:8080/WebOffice;" bei Einsatz eines Apache Reverse Proxy müssen Sie das GZIP Filter Limit erhöhen. Der standardmäßige Wert in C:\Tomcat\webapps\<WebOffice application>\Web-INF\web.xml ist auf 5001 Bytes gesetzt. VertiGIS empfiehlt eine Erhöhung dieses Wertes auf 10001 Bytes durch die Konfiguration in C:\Tomcat\webapps\<WebOffice application>\Web-INF\web_user.xml.
Standardwert in der web.xml:
<filter>
<filter-name>GZIPFilter</filter-name>
<filter-class>com.mysynergis.core.controller.filter.GZIPFilter</filter-class>
<init-param>
<param-name>compressionThreshold</param-name>
<param-value>5001</param-value>
<description>perform compression if the response size (in bytes) is larger than the value specified</description>
</init-param>
</filter>
Einfügen in der web_user.xml:
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0" metadata-complete="true">
<filter>
<filter-name>GZIPFilter</filter-name>
<filter-class>com.mysynergis.core.controller.filter.GZIPFilter</filter-class>
<init-param>
<param-name>compressionThreshold</param-name>
<param-value>10001</param-value>
<description>perform compression if the response size (in bytes) is larger than the value specified</description>
</init-param>
</filter>
</web-app>
Hinweis: Beachten Sie die Explizit unterstützte Szenarien mit https.