Only if you use Apache Tomcat 7 or earlier, add URIEncoding="UTF-8" to every HTTP connector in your server.xml file. (For Apache Tomcat 8 or higher, this attribute is present by default.)
Procedure
- On your Collaborative Review server, navigate to %CATALINA_HOME%\conf\.
- Open the file server.xml for editing.
- Find all
Connector elements that define an HTTP connection. For example:
<Connector
port="8080"
protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
- Add an attribute called
URIEncoding to this element and set it to the value UTF-8. For example:
<Connector
port="8080"
protocol="HTTP/1.1"
connectionTimeout="20000"
URIEncoding="UTF-8"
redirectPort="8443" />
- Save and close server.xml.
- Restart Apache Tomcat.