Hi Rob, Wrt a webapp being "logged in" this generally refers to a user session. This is managed by your favourite servlet container, and accessible via Tapestry. Sessions are tracked generally using a cookie, or with an id appended to the url (jsessionid) if no cookies.
When a user logs in you'll probably stick the user id or equivalent into the session. Then when you are retrieving stuff from your database, you'll get the right data for the user per his id ("SELECT RECORDS FROM DB WHERE USER_ID = ?") Logging out generally means destroying the session, or at least scrubbing all data from the session. Is this what you meant? Cheers On Fri, 2011-02-18 at 04:21 -0800, robnangle wrote: > Hi all, > Was wondering is there any examples of tapestry-jdbc login logout > functionality using sessions out there? I cant seem to find any. > > Cheers --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org