This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I am using Jrun server3.0 which is connected with Iplanet server. I want to put all the .jsp files in Iplanet docs directory and rest of .java files in the Jrun default server directory. Does anybody know how to redirect jsp files inside the servlet? As far as I know, RequestDispatcher is used only under the servlet relative path and not for absolute path. I tried sendRedirect() and it seems it doesn't work either. It will be great if somebody could give some hints on this.
Jenny
Peter Guillebaud
Ranch Hand
Joined: Jul 11, 2001
Posts: 57
posted
0
I'm not sure if this is what you are after but if you use response.setHeader ( "Refresh", "1;URL=" + myURL ); in the servlet it will forward the user to "myURL"...