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
You've got two choices that I see: 1 - Route requests into the controller 2 - Write a filter You say this is your welcome page. Is this your index? Generally, my index files contain nothing but a redirect to a global forward named "index" that sends the user to an action named /index. Th