Looks like your index.jsp? Is trying to use the <bean:message key=?/> tag
and the key does not exist in your message props file or your message prop
file can not be found.  In your web.xml you should have an entry

    <init-param>
      <param-name>application</param-name>
      <param-value>class name of your application</param-value>
    </init-param>

under the servlet entry for the struts ActionServlet.  Not you really don't
have to have a real class for your application, it just looks up the
ResourceBundle with this key.  So if you had something like
foo.bar.package.MyApplication
for the param-value

you  would need a file
\classes\foo\bar\package\MyApplication.properties

that has all your message keys in it like
index.title = My Title

    --m


----- Original Message -----
From: "Matt Raible" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 19, 2001 2:53 PM
Subject: struts-blank on iPlanet


> I am trying to get a bare-bones, blank application to
> work on iPlanet Application Server, SP2, and I get the
> following error:
>
> Any ideas?
>
> directory structure is as follows:
>
> uiframework
>     index.jsp
>     WEB-INF
>         *.tld
>         *.xml
>         lib
>             struts.jar
>
>
> [19/Jun/2001 13:46:26:7] info:
> --------------------------------------
> javax.servlet.jsp.JspException: Missing message for
> key index.title
>         at
> org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:242)
>         at
> jsp.APPS.uiframework.index._jspService(index.java:73)
>         at
> jsp.APPS.uiframework.index.service(index.java:35)
>         at
> javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
>         at
> com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
> Source)
>         at
> com.netscape.server.servlet.servletrunner.ServletRunner.callJSP(Unknown
> Source)
>         at
>
>
>
> __________________________________________________
> Do You Yahoo!?
> Spot the hottest trends in music, movies, and more.
> http://buzz.yahoo.com/

Reply via email to