I am actually creating some dynamic crystal reports. These reports accept parameters passed through a URL to generate a custom report.
The crystal server is different, and the request URL looks something like this
I found the solution, I had to pass return new ActionForward(path,
true)
By default struts redirects with in the application. we need to pass boolean
true to redirect to actual path.
Find more about this in
Struts API Doc