forwarding to a global forward using RequestDispatcher

2006-01-27 Thread temp temp
How can I pass a Struts Global forward to request.getRequestDispatcher("struts global Forward).forward(request,response) or How can I forward to a struts Global forward using RequestDispatcher. I tried passing struts global forward , but always I got page not found error . I can creat

Re: Forwarding to a global Forward

2005-08-07 Thread Daniel Schaller
CTED]> 08/07/2005 03:02 PM Please respond to "Struts Users Mailing List" To user@struts.apache.org cc Subject {Spam?} Forwarding to a global Forward Hi, I have a global forward In one of my actions, I would like to forward to "AddUser" like: rather than usi

Re: {Spam?} Forwarding to a global Forward

2005-08-07 Thread GRamani
iel Schaller <[EMAIL PROTECTED]> 08/07/2005 03:02 PM Please respond to "Struts Users Mailing List" To user@struts.apache.org cc Subject {Spam?} Forwarding to a global Forward Hi, I have a global forward In one of my actions, I would like to forward to "AddUser"

Re: Forwarding to a global Forward

2005-08-07 Thread Frank W. Zammetti
Hi Danial, Are you getting a 404 because the FORWARD isn't found or because the PATH isn't found? I notice you have a space between ? and "operation", and I'd be willing to bet that's what's causing the problem. Whether it is or not, is there a specific reason you aren't just returning the

Forwarding to a global Forward

2005-08-07 Thread Daniel Schaller
Hi, I have a global forward In one of my actions, I would like to forward to "AddUser" like: rather than using the entire path defintion "/ManageUsersEdit.do? operation=add". However, if I do so, I get a 404 error, page or path not found. Any ideas? Or is it simple not possible