bramsomers
Programmer
Hi all,
I have two servers, each running the sun appliction server (9.0). I've build a webapplication, and know I want to forward requests from the first to the second application server.
In my LoginAction on the first server I put this in the code:
return new ActionForward(" + server.getUrl() + ":8080/project/Login.do", false);
put that gives me the error:
java.lang.IllegalArgumentException: Path does not start with a "/" character
I don't know what I do wrong, does anybody know a way to do this?
It need to be forwarded, so that the action on the other server can access the parameters in the form.
Thanks a lot!
Bram
I have two servers, each running the sun appliction server (9.0). I've build a webapplication, and know I want to forward requests from the first to the second application server.
In my LoginAction on the first server I put this in the code:
return new ActionForward(" + server.getUrl() + ":8080/project/Login.do", false);
put that gives me the error:
java.lang.IllegalArgumentException: Path does not start with a "/" character
I don't know what I do wrong, does anybody know a way to do this?
It need to be forwarded, so that the action on the other server can access the parameters in the form.
Thanks a lot!
Bram