And I forgot to mention that the problem is with your welcome-file. So
here is the correct procedures:

1. put empty index.jsp in your web-app root dir.
2. make welcome file entry in web.xml

<welcome-file>index.jsp</welcome-file>

3. make index action:

<action name="index"
        class="com.multideck.aiab.web.action.HomePageAction">
  <result name="success" type="dispatcher">
    <param name="location">/WEB-INF/index.jsp</param>
  </result>
</action>

4. put your jsp files in WEB-INF.
5. That's it.
(6. Read servlet specification.)




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Opensymphony-webwork mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork

Reply via email to