hi,

you can use a RequestDispatcher to redirect and keep your posted information.

e.g.:

dispatcher = context.getRequestDispatcher( url );
dispatcher.forward( request, response );



Regards,
Matthias Kümpel

Vincent Stoessel wrote:

> Hi,
>
> I'm writing a simple redirector servlet
> for a part of my site. it seems that
> sendRedirect in javax.servlet.http.HttpServletResponse
> will change a POST method into a get as it redirects.
> Any work arounds for this? I need the post info to continue
> to the next site. Thanks.
>
> --
> Vincent Stoessel [EMAIL PROTECTED]
> Internet Applications Engineer
> IDEV http://www.idev.com
> V: 301 495 7345 x129
>
> ___________________________________________________________________________
> 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

___________________________________________________________________________
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