Re: Need to lookup additional data to append to redirection to outside web site

2011-06-21 Thread Maurizio Cucchiara
The servlet dispatcher can only forward to local servlets and jsps, so it's not really an option. Anyway, usually it's not a good idea flowing unsecure parameters from http to https, you could try to pass via javascript (through jquery [1]), but it's always a security risk. [1] http://api.jquery.

Re: Need to lookup additional data to append to redirection to outside web site

2011-06-21 Thread Roger Varley
On Mon, 2011-06-20 at 20:44 -0500, John Himpel wrote: > Good evening, > > I have an S2 application the needs to: > 1) Verify some input parameters (I know how to do this) > 2) Retrieve some additional data based upon the input parameters (I > know > how to do this). > 3) Then format a "post" type

Re: Need to lookup additional data to append to redirection to outside web site

2011-06-20 Thread Kushan Jayathilake
Hi, Set the attributes in the request (request.setAttribute(name, value);) then dispatch the request. RequestDispatcher dispatcher = getServletContext() .getRequestDispatcher(URL of the page); dispatcher.forward(request, response); On Tue, Jun 21, 2011 at 7:14 AM, Jo