Re: Setup Action without a form

2004-11-28 Thread Dakota Jack
Not sure if by "frontpage" you mean your first page or welcome page as some say? Anytime you call an action, you can do whatever you want in that action prior to completing the action by passing an ActionForward. If you need something prior to your action or to any action, you can use PlugIn. Ja

Re: Setup Action without a form

2004-11-28 Thread klute
Why not use your extend and use your main Action (the one you map to .do in web.xml) class for that? in there you can retrieve user session and do anything with it hth, james --- "Flemming G. Jensen" <[EMAIL PROTECTED]> wrote: > Hi List, > > My project has a frontpage/welcome page. This page

Re: Setup Action without a form

2004-11-28 Thread Eddie Bush
ED]> Sent: Sunday, November 28, 2004 4:40 PM Subject: Setup Action without a form Hi List, My project has a frontpage/welcome page. This page contains no forms. I need some kind of a set up action to fire, when a user accesses this frontpage in order to initialize a session specific bean. Thi

Setup Action without a form

2004-11-28 Thread Flemming G. Jensen
Hi List, My project has a frontpage/welcome page. This page contains no forms. I need some kind of a set up action to fire, when a user accesses this frontpage in order to initialize a session specific bean. This bean is coded to act as a singleton within a session. How do I make a "set-up act