i have two web server:
first one running
JSP pages on protected folder in
tomcat.
second one running
servlet, also in tomcat.
user will open a browser and go to the first web server.
after form based authentication done, user will be able to do what he want.
then, user may fill up a form, and then the form will be POST to the servlet on second server.
servlet on second server will process the form and redirect user browser to the JSP page on the first web server, with additional GET parameter.
the JSP page on first server then should take the GET parameter and display it on user browser.
the question is, how do i be able to pass the GET parameter from servlet to the JSP page on first web server. it seems that, every time i tried it, the first server keep redirect me to the login page. and after i logon, some error message displayed says it can't redirect my request.
any idea?....