RE: Best way to forward to login, then re-forward to originallyrequested resource?

2002-05-29 Thread Kevin Henrikson
tried this? -kevin > -Original Message- > From: Rick Mann [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 28, 2002 3:53 PM > To: Struts Users Mailing List > Subject: Best way to forward to login, then re-forward to > originallyrequested resource? > > > I've got a

Re: Best way to forward to login, then re-forward to originallyrequested resource?

2002-05-29 Thread Rick Mann
on 5/28/02 11:59 PM, Adam Hardy at [EMAIL PROTECTED] wrote: > I wouild save the form bean and a mapping or action forward in the > session, and collect them when the in-between task is finished. Yeah, I was thinking of that, too. Okay, so here's the struts-specific problem: how do I get the nam

Re: Best way to forward to login, then re-forward to originallyrequested resource?

2002-05-28 Thread Rick Mann
on 5/28/02 5:19 PM, Alex Paransky at [EMAIL PROTECTED] wrote: > Why not use J2EE/WEB standard container authentication? It will do what you > want. In fact, it was designed to do what you want, which is called Lazy, > or just in time, authentication. The user can surf your page, however, when

Best way to forward to login, then re-forward to originallyrequested resource?

2002-05-28 Thread Rick Mann
I've got a typical struts application up and running. Certain actions check to see if the user is logged in, and if not, forward to a login JSP. That JSP then posts to a LoginAction. The LoginAction then forwards back to the originally requested action. The problem I have is that currently, this