1-)
2-)
3-) you can give any name in here to a listener that you are about to create.I used the default one.
4-)
5-)
6-)
7-)
8-)
EUC-JP) differs from the character set portion of the NLS_LANG environment variable (for example, JA16SJIS), then you will get the following errors:REP-6106 or 6104 with javax.servlet.jsp.JspException (multibyte) REP-0495 Unable to tokenize the query (singlebyte)
REP-0069 Internal Error or REP-6106NLS_LANG variable.<%@ page contentType="text/html;charset=EUC-JP" %> <META http-equiv="Content-Type" content="text/html;charset=EUC-JP">uses the IANA character encoding
EUC-JP. For this report, you should use the NLS_LANG settingNLS_LANG=JAPANESE_JAPAN.JA16EUC.EUC-JP) will then correspond to the character encoding part of the NLS_LANG environment variable (JA16EUC).charsetattribute of the <meta> tag and the <%@page%> page directive.oracle_home/reports/templates/, edit the files rw*.html and blank_template.jsp:<%@ page contentType="text/html;charset=yourIANAencoding" %>where
yourIANAencoding is the IANA character encoding that corresponds to the character encoding part of your NLS_LANG environment variable.<meta> tag inside the <head> tag to read:<meta http-equiv="Content-Type" content="text/html;charset=yourIANAencoding" />
oracle_home/reports/templates/, edit the file template.xsl:<xsl:output> tag to read:<xsl:output
method="jsp"
indent="yes"
encoding="yourIANAencoding"
/>
whereyourIANAencoding is the IANA encoding that corresponds to the character encoding part of your NLS_LANG environment variable.<%@ page contentType="text/html;charset=yourIANAencoding" %>
<meta> tag inside the <head> tag:<meta http-equiv="Content-Type" content="text/html;charset=yourIANAencoding" />where
yourIANAencoding is the IANA encoding that corresponds to the character encoding part of your NLS_LANG environment variable.