I will try this as well as the empty index.action mentioned in your last email. One thing that puzzles me is it seems the purpose of the action tag is to allow the direct invocation of .jsp(s) and still tie into the Action/XWork framework. I will review the servlet spec to see what I am missing. Thank you.

Fred.

At 05:36 AM 9/22/2003, you wrote:
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



------------------------------------------------------- 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