Yes I´m sure, I only changed the Jars and replaced the contextRelative 
attribute in my JSPs and in my Struts config.

Meanwhile I wrote my own ForwardAction with copy & paste and changed the 
following code:

Current code in ForwardAction:
ActionForward retVal = new ActionForward(path);

My code:
ActionForward retVal = new ActionForward(null, path, false, "");



-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Benedict
Sent: Thursday, October 18, 2007 6:07 AM
To: Struts Users Mailing List
Subject: Re: Problem with ForwardAction after update from Struts 1.2.9 to 1.3.8

That sounds like a bug to me. Are you sure this is the behavior and nothing
has changed from your upgrade?

On 10/12/07, Samuel Fleischle <[EMAIL PROTECTED]> wrote:
>
> Hello,
> I updated from Struts 1.2.9 to Struts 1.3.8. Now I have the following
> problem in my ForwardActions. Here is an example of what I want to do:
>
> I have the following code in my admin module:
>
> <action path="/index" type="org.apache.struts.actions.ForwardAction"
>         parameter="/WEB-INF/pages/admin/index.jsp"/>
>
> In Struts 1.2.9 this code worked fine and if I called the URL
> http://localhost:8080/myapp/admin/index.do I got the correct index.jsp.
> But now in Struts 1.3.8 Struts is going to search for the page
> /admin/WEB-INF/pages/admin/index.jsp because I am in the admin module.
>
> Is here any solution to get Struts 1.3.8 running for my issue?
>
> Regards,
> Sam
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



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

Reply via email to