Hello Gunther, I read last night about the tiles tempating functionality, so I have a little better handle on it today. It actually is a nice way to create some parts of my app, so I will revisit it today and try and prototype a couple of pages together. But as far as handling the session expires, etc, I do not completely understand how this is accomplished.
What I have today, is a extended Action class which I can call a method eg: "if (obj.isLoggedIn()) { " type of method. So each of my pages has to go to the action servlet. Anyway, if you could show me how you are handling this, or be a litle more precise that would really help me out. I sincerely appreciate your time, Scott -----Original Message----- From: Günther Wieser [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 01, 2005 12:40 PM To: 'Struts Users Mailing List' Subject: RE: html:form complains of bean missing hi if you want a single point where you can check if a user is logged in or not, you can do something like the following: create a class "MyRequestProcessor extends TilesRequestProcessor" (in this case it is because i use tiles) and implement the process() method. within this method check for the login var that you e.g. put into the session. in the struts-config.xml add <controller processorClass="com.creative_it.webcreator.strutsext.MyRequestProcessor" /> and everythings fine. what you need to do in the MyReqestProcessor class is to exclude all URLs from checking that are used for e.g. the login form, or an error message in case something went wrong. if you want to be very nice to your users, store the URL that the user requested in the session, than redirect to the login form, and if everything went fine with the login, send him to the page that he/she originally requested. if you want the code for this, let me know, i can provide it. kr, guenther -----Original Message----- From: Scott Purcell [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 01, 2005 7:17 PM To: user@struts.apache.org Subject: html:form complains of bean missing First off, as I am learning Struts I just wanted to thank those, for bearing with my learning curve and helping out so far. Here is the issue: I want to pass all my forms, even forms without params to the com.skp.action.LoginAction action class, because this class handles the "isLoggedIn" issue through a subclass of Action. Anyway, I have a jsp page that has no params, so I have no bean to collect user data, so I configured my action like so: <action path="/mainAdmin" type="com.skp.action.LoginAction" > <forward name="Success" path="/jsp/admin/main.jsp" redirect="true"/> </action> Anyway, I just want to always use the LoginAction as a "Front Controller" to my web app, and catch the status of "logged-in" etc. This works well, but I have to use conventional <html> code and not the html:form tag: works: <!-- <form name="foo" action="/uniquepear/action/mainAdmin" method="POST"> --> does not work: <html:form action="mainAdmin"> When I use the above I get this error in the browser: javax.servlet.ServletException: Cannot retrieve definition for form bean null at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp l.java:495) at org.apache.jsp.main_jsp._jspService(main_jsp.java:175) But I have no reason to have a bean for this action. How does one handle this problem? Thanks Scott --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]