Wholesale HTTP parameter redirection

2008-07-16 Thread Jonathan Mast
I have a page which now receives quite a few parameters, eg. page.jsp?abc=fooxyz=bar ... This page redirects via response.sendRedirect(). I want to know how I can forward every parameter onto the redirect page, without having to extract each one individually and rebuilding them in the url I

RE: Wholesale HTTP parameter redirection

2008-07-16 Thread Peter Crowther
From: Jonathan Mast [mailto:[EMAIL PROTECTED] I have a page which now receives quite a few parameters, eg. page.jsp?abc=fooxyz=bar ... This page redirects via response.sendRedirect(). I want to know how I can forward every parameter onto the redirect page, without having to extract each

Re: Wholesale HTTP parameter redirection

2008-07-16 Thread Hassan Schroeder
On Wed, Jul 16, 2008 at 9:13 AM, Jonathan Mast [EMAIL PROTECTED] wrote: This page redirects via response.sendRedirect(). I want to know how I can forward every parameter onto the redirect page, without having to extract each one individually and rebuilding them in the url I place into

Re: Wholesale HTTP parameter redirection

2008-07-16 Thread Jonathan Mast
I thought a forward would require the same type of individual parameter extraction and rebuilding. Please let me know how to do this in bulk. Thanks. On Wed, Jul 16, 2008 at 12:27 PM, Hassan Schroeder [EMAIL PROTECTED] wrote: On Wed, Jul 16, 2008 at 9:13 AM, Jonathan Mast [EMAIL PROTECTED]

Re: Wholesale HTTP parameter redirection

2008-07-16 Thread Hassan Schroeder
On Wed, Jul 16, 2008 at 10:55 AM, Jonathan Mast [EMAIL PROTECTED] wrote: I thought a forward would require the same type of individual parameter extraction and rebuilding. Please let me know how to do this in bulk. Not sure what you mean by in bulk; here's a simple example: String target =