Hi,
in my struts web application have (web.xml):

<error-page>
        <exception-type>java.lang.Throwable</exception-type>
        <location>/templates/error/error.jsp</location>
    </error-page>

and i want to get the description error in error.jsp.

in logging file have:

java.lang.Throwable: Could not complete parsing, unmatched tags: html
        at weblogic.servlet.jsp.JspLexer.parse()V(JspLexer.java:980)
.............................

In error.jsp have:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1" isErrorPage="true" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title></title>
</head>
<body>
Error Grave.
<%exception.printStackTrace(); %>
</body>
</html>

but not found

can anybody help me?
Thanks

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to