On 18-12-2008 at 12:14, epsilon wrote: > This may work if all attributes in ActionBeanContext are serialisable, which I > don't think so. I'm quite understand why the ActionBeanContext is not a > serialisable class, because it contains request, response, servlet context, > etc.
True. The non-serializable fields should ideally transient, to exclude them from serialization. Maybe this should be a Jira issue. Then again, you can also ensure your action beans don't rely on the context being present. It contains mostly request/response based stuff by default. So maybe it's sufficient if the context itself is a transient field. Oscar -- ,-_ Oscar Westra van holthe - Kind http://www.xs4all.nl/~kindop/ /() ) (__ ( Inequality is the inevitable consequence of liberty. =/ () -- Salvador De Madariaga - "Anarchy or Hierarchy" (1937) ------------------------------------------------------------------------------ SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Join us at MIX09 to help pave the way to the Next Web now. Learn more and register at http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ _______________________________________________ Stripes-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/stripes-users
