I'm trying to convert an existing application to use stripes.
the application process request Using a front filter that selects the right 
process like this

new ProcessConversion(HttpServletRequest req,HttpServletResponse 
res).doService();

all the ProcessXXX classes extend BaseProcessor which performs some processing 
with the request and response and also makes accessing them easy.

MY PROBLEM:
I have made ProcessConversion implement ActionBean. However, I get 
Instatantiation Exception.

I changed the ProcessConversion constructor to

new ProcessConversion();

that seems to work but flushes all objects stored in the Httpsession after the 
request;

questions:
1 How can i pass the request and response objects to the BaseProcessor at every 
Request
2. Why is strpes removing Httpsession objects.

thanks


_________________________________________________________________
The next generation of Windows Live is here
http://www.windowslive.co.uk/get-live
-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to