dev@glassfish.java.net

Re: error-page encoding problem

From: Ostap Cherkashin <ostap.cherkashin_at_gmail.com>
Date: Tue, 27 Jun 2006 11:15:23 +0400

Dear Dmitry,

Please check that you have saved the mentioned JSPs in utf8 encoding.

Regards,
Ostap

On 6/27/06, Dmitry Mozheyko <mozheyko_d_at_mail.ru> wrote:
> Hi all!
> I use GlassFish v2 (build b07) and i need to custom error page
> web.xml:
>
> ...
> <error-page>
> <exception-type>java.lang.Throwable</exception-type>
> <location>/error.jsp</location>
> </error-page>
> <error-page>
> <error-code>403</error-code>
> <location>/error403.jsp</location>
> </error-page>
> <error-page>
> <error-code>404</error-code>
> <location>/error404.jsp</location>
> </error-page>
> ...
>
>
>
> Both error403.jsp and error404.jsp pages correctly showing UTF-8 symbols, but error.jsp:
>
> <%_at_page contentType="text/html"%>
> <%_at_page pageEncoding="UTF-8"%>
> <jsp:include page="jspf/header.jsp" />
> <b>Ошибка:</b><br />
> <%=((Throwable)request.getAttribute("javax.servlet.error.exception")).toString()%><br />
> <button onclick="goback()">Назад</button>
> <jsp:include page="jspf/footer.jsp" />
>
>
>
> Show '?' signes instead russian symbols.
>
> How to fix it?
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_glassfish.dev.java.net
> For additional commands, e-mail: dev-help_at_glassfish.dev.java.net
>
>