Hi, David, I guess that Osamu misunderstand the JSP 1.2 specification. For example,
<%@ page pageEncoding="Shift_JIS" %> is able to be rewrite the following because contentType attribute's default value is "text/html"; <%@ page contentType="text/html" pageEncoding="Shift_JIS" %> and its meaning is the same as the following because HTTP default charset is "iso-8859-1"; <%@ page contentType="text/html; charset=iso-8859-1" pageEncoding="Shift_JIS" %> Thus, Osamu's code can't treat Japanese well. In Japan, the following codes are generally used in such case; <%@ page contentType="text/html; charset=Shift_JIS" %> In conclusion, Tomcat 4.1.8 behavior is legal. JSP 1.2 specification is reasonable. No problem. Kazuhiro Kazama ([EMAIL PROTECTED]) NTT Network Innovation Laboratories -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
