Content Type Settings

This topic describes changes that are required to content type settings.

See Also
web.xml Settings
Configuring J2EE Settings for Japanese
  1. In the emxContentTypeInclude.inc file in SERVERHOME/STAGING/ematrix/, change:

    <%@page contentType="text/html; charset=UTF-8"%>    
    

    to

    <%@page contentType="text/html; charset=Shift_JIS"%> 
    

    This is required for JSPs.

  2. In the emxUICore.js file in SERVERHOME/STAGING/ematrix/common/ scripts/, replace all occurrences of UTF-8 with Shift_JIS.
  3. In all XSL files in SERVERHOME/STAGING/ematrix/common/, replace UTF-8 with Shift_JIS. For example, change:

    <xsl:output method="xml" version="1.0" encoding="UTF-8" 
    indent="no"/>

    to:

    <xsl:output method="xml" version="1.0" encoding="Shift_JIS" 
    indent="no"/>