| http://www.w3.org/ns/prov#value | - My logic for session authentication is thus: Login is handled by login.pm which checks username/password pair against database. if ( valid pair ) { set session_id and time_to_live; set cookie=session_id; store session_id and some parameters in a file via Storable.pm; redirect to Home page } else { serve login again } For all requests except login : 1 - Headerparser retrieves the session_id via the
|