You could try to set up a request dispatcher forward. We use :

import javax.servlet.*;
import javax.servlet.http.*;

//Other code here

 try {

getServletConfig().getServletContext().getRequestDispatcher("your_jsp_page.j
sp").forward(request,response);
        }
        catch (Exception e) {
            e.printStackTrace(System.err);
        }


So long as the first servlet has no visual output (as I think it will never
be seen) you should be ok.

let me know.

Damien Corbishley

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to