Re: [S2] action mappings help

2007-09-19 Thread Eugen Stoianovici
Thanks, I added REQUEST REDIRECT in my web.xml file for filter-mapping. Which made perfect sense right after i read it. Cory D. Wiles wrote: If you are trying to truly redirect then the below line is your problem. It is trying to forward not redirect. "" Use: <% String redirectAction = "/my

Re: [S2] action mappings help

2007-09-19 Thread Cory D. Wiles
If you are trying to truly redirect then the below line is your problem. It is trying to forward not redirect. "" Use: <% String redirectAction = "/myapp/subfolder/welcome.action"; response.sendRedirect(redirectAction); %> On 9/19/07, Eugen Stoianovici <[EMAIL PROTECTED]> wrote: > > I'm trying

[S2] action mappings help

2007-09-19 Thread Eugen Stoianovici
I'm trying to create an index with an action mapped to it for a subfolder in my webapp. The ideea was to create a index.jsp file that has: so it redirects me to a mapped action. The problem is that even though the url is correct, i get a "The requested resource (/myapp/subfolder/welcome.action