I have a jsp page that looks like this:
 
<[EMAIL PROTECTED] contentType="text/html;charset=ISO-8859-2"%>
<[EMAIL PROTECTED] prefix="ww" uri="webwork"%>
<ww:i18n name="com.me.test.Test">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-2">
        <title><ww:text name="'notesList.pageTitle'"/></title>
        <link rel="stylesheet" type="text/css" href="">
        <script src=""></script>
    </head>
    <body></body>
</ww:i18n>
 
... and a properties file:
 
notesList.pageTitle=Lista notatek
 
The properties file's name is Test and it's located in WEB-INF/classes/com/me/test.
The problem is that when the jsp page is being rendered I get an exception:
 
javax.servlet.ServletException: Could not find the bundle com.me.test.Test
at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:533)
(...)
 
So ... where should I put the properties file ? Or maybe I'm using the i18n tag in an inapropriate way ?
 
wojtek

Reply via email to