Hi.
Is there any way we can use a custom forward in
struts Action forward?
I have a senario where I am dynamically generating a URL in my action class, I have some logic which is executed in my action class to generate this dynamic URL.
This URL hits a new web address.
I tried to use
return new ActionForward(path) but I guess struts puts a
forward slash (/) before the path. Since the URL hits completly new web adderss (not related to my web application), I get a
JSP error saying it couldn't find the page.
Any suggestions on this issue?