Re: How to set hidden field in struts

2006-05-23 Thread Bruce Link
Hi Pankaj, If you do not want to use container-supported security, storing information in the session that captures the login is typical. You then need to check the session information in every page which requires login, and delete the information (or invalidate the session) when the user log

Re: Interaction between Struts and Tiles - redirect doesn't?

2006-02-26 Thread Bruce Link
n action class. > > Something like > > public class BlankAction extends Action { > public ActionForward execute(..) throws Exception { >     return mapping.findForward("success"); > } > } > > >     > > > > Should work just fine.

Interaction between Struts and Tiles - redirect doesn't?

2006-02-25 Thread Bruce Link
I am trying to put together an example j2ee web site using struts/tiles as the front end, using struts 1.2.8. I have been trying to guess and experiment to find out how to merge the two, since most examples just use jsp pages for the view layer, and I am trying to use tiles throughout. What m