Oracle
Set Charset to UTF8 when create a new db.
Enovia
LANG=C
MX_CHARSET=UTF8
Web App
The startup scripts for the Application Servers set the following:
MX_CHARSET=UTF8
LANG=C
NLS_LANG=_UTF8
web.xml
ematrix.encoding=UTF8
TOMCATINSTALLDIR/bin/startup.sh, add the following:
CATALINA_OPTS="-Dfile.encoding=UTF-8 -server"
TOMCATINSTALLDIR/webapps/enovia/WEB-INF/web.xml, uncomment the Tomcat UTF-8 settings:
<!-- TomCat UTF-8 settings
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>com.matrixone.servlet.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>Set Character Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
-->
In TOMCATINSTALLDIR/conf/server.xml, add the URIEncoding parameter to the connector, as shown below in bold:
<Connector acceptCount="100" connectionTimeout="20000"
disableUploadTimeout="true" port="8080" redirectPort="8443"
URIEncoding="UTF-8"/>
Set Charset to UTF8 when create a new db.
Enovia
LANG=C
MX_CHARSET=UTF8
Web App
The startup scripts for the Application Servers set the following:
MX_CHARSET=UTF8
LANG=C
NLS_LANG=_UTF8
web.xml
ematrix.encoding=UTF8
TOMCATINSTALLDIR/bin/startup.sh, add the following:
CATALINA_OPTS="-Dfile.encoding=UTF-8 -server"
TOMCATINSTALLDIR/webapps/enovia/WEB-INF/web.xml, uncomment the Tomcat UTF-8 settings:
<!-- TomCat UTF-8 settings
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>com.matrixone.servlet.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>Set Character Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
-->
In TOMCATINSTALLDIR/conf/server.xml, add the URIEncoding parameter to the connector, as shown below in bold:
<Connector acceptCount="100" connectionTimeout="20000"
disableUploadTimeout="true" port="8080" redirectPort="8443"
URIEncoding="UTF-8"/>