RE: Efficient session object and cookie checks in struts

2006-04-17 Thread George.Dinwiddie
Jeff Thorne wrote: > I have been reading that it May be more > efficient to just pass the resultset back to the view rather > Than deal with the overhead of several transfer objects. Does > this make sense? I don't thinks so. 1. Object creation time is trivial compared with database access tim

Re: Efficient session object and cookie checks in struts

2006-04-16 Thread Frank W. Zammetti
less efficient that defining a new base class? Cheers, Jeff -Original Message- From: David Evans [mailto:[EMAIL PROTECTED] Sent: Saturday, April 15, 2006 8:25 AM To: Struts Users Mailing List Subject: RE: Efficient session object and cookie checks in struts Instead of scattering the sessi

RE: Efficient session object and cookie checks in struts

2006-04-16 Thread Jeff Thorne
: David Evans [mailto:[EMAIL PROTECTED] Sent: Saturday, April 15, 2006 8:25 AM To: Struts Users Mailing List Subject: RE: Efficient session object and cookie checks in struts Instead of scattering the session/cookie checks throughout your actions, you could make a BaseSecurityCheckAction that does

RE: Efficient session object and cookie checks in struts

2006-04-15 Thread David Evans
ass the resultset back to the view rather > Than deal with the overhead of several transfer objects. Does this make > sense? > > Cheers, > Jeff > > > -Original Message- > From: Adam Hardy [mailto:[EMAIL PROTECTED] > Sent: Saturday, April 15, 2006 2:41 AM &

RE: Efficient session object and cookie checks in struts

2006-04-15 Thread Jeff Thorne
PROTECTED] Sent: Saturday, April 15, 2006 2:41 AM To: Struts Users Mailing List Subject: Re: Efficient session object and cookie checks in struts Jeff Thorne on 15/04/06 06:19, wrote: > My struts application maintains 2 small objects in the user's > session. One is for the users location info

Re: Efficient session object and cookie checks in struts

2006-04-15 Thread Adam Hardy
Jeff Thorne on 15/04/06 06:19, wrote: My struts application maintains 2 small objects in the user’s session. One is for the users location info (mandatory) and the other is the User Object (optional). I also save 2 cookies one being the user’s location info (mandatory) and the other the user’s sa

Efficient session object and cookie checks in struts

2006-04-14 Thread Jeff Thorne
My struts application maintains 2 small objects in the user’s session. One is for the users location info (mandatory) and the other is the User Object (optional). I also save 2 cookies one being the user’s location info (mandatory) and the other the user’s saved login credentials (optional) to m