I'm trying to intercept every request and see if a session exists for the user, creating and initializing a session if one doesn't already exist. Will this work?:


<map:match pattern="**">
 <map:act type="session-isvalid">
   <!-- Session exists for user, so do nothing. -->
 </map:act>

 <!-- No session exists for this user, so create one. -->
 <map:act type="create-session">
   <!-- Kill the session after 4 hours of complete inactivity. -->
   <map:parameter name="max-inactive-interval" value="14400"/>
 </map:act>
 <map:act type="initialize-session"/>
</map:match>

I'm wondering if Cocoon executes the 2nd and 3rd actions no matter whether a session exists or not.

_________________________________________________________________
Protect your PC - get McAfee.com VirusScan Online http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963



--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to