Tomcat

Tomcat with the default configuration incorrectly assumes requests are encoded using ISO-8859-1 instead of UTF-8. This would break string handling in IBM Cúram Social Program Management if request parameters contained UTF-8 extended characters. To avoid this add the useBodyEncodingForURI="true" parameter to the <Connector> element of the server.xml configuration file.

Alter POST limit when using Rules Sets: By default Tomcat limits POST data to 2 MB. This can cause an issue when using Rules Sets, which need to POST data greater than this limit. Although this step is optional, it is recommended for users intending to use Rules Sets functionality. To disable the POST limit in Tomcat add the maxPostSize="0" attribute to the <Connector> element of the server.xml configuration file. For example:

<Connector port="9080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" useBodyEncodingForURI="true" maxPostSize="0"/>