Documentation Center

Enabling the use of non-ASCII characters on Collaborative Review

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

  1. On your Collaborative Review server, navigate to %CATALINA_HOME%\conf\.
  2. Open the file server.xml for editing.
  3. Find all Connector elements that define an HTTP connection. For example:
    <Connector 
      port="8080" 
      protocol="HTTP/1.1" 
      connectionTimeout="20000" 
      redirectPort="8443" />
  4. 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" />
  5. Save and close server.xml.
  6. Restart Apache Tomcat.