Abhijeet, I have created Request PreProcessors. You create a class that extends RequestProcessor and overrides the method processPreprocess. You do whatever you want in that method (logging, security, and session validation is useful) and it will be executed before every action is executed. It must return true (continue processing action) or false (meaning the request has been handled).
Note that it must be declared in the struts-config.xml Phil --- Abhijeet Mahalkar <[EMAIL PROTECTED]> wrote: > Sorry for previous wrong Subject Line. > > abhijeet > > ----- Original Message ----- > From: "Abhijeet Mahalkar" > <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > <[EMAIL PROTECTED]> > Sent: Tuesday, October 21, 2003 2:39 PM > Subject: Re: element type null > > > > Hi All, > > > > Will Anybody explain me How RequestPRocessor and > ActionServlet works ? I > am > > not able to figure out the actual internal working > of Webserver in the > > Struts Framework. Will anybody pls tell me how > Webserver works which > > threads, Classes,tags etc it uses from request to > response to the client ? > > > > thanks in advance > > abhijeet > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

