Is it possible to use an ActionForm with no default constructor? Can the
form tag just get it out of my session?
I want to grab the object from persistent store and put it in the
session (on a previous page before they get to the form). Then when they
actually access the page, the form can just grab the object out of the
session and use it as the ActionForm object for populating, posting,
etc.
However, when I try that I get an error because it's trying to
instantiate a new ActionForm instead of using the one I already have for
it in the session.
Any ideas on how I can get this to work? I have to use an object with no
default constructor because it requires credentials from the session in
order to be constructed.
Thank you,
Joel Shellman