wso2 IS sp1 session management contd -


i know whether session data persistence

<sessiondatapersist>         <enable>true</enable>         <remembermeperiod>..</remembermeperiod>         <cleanup>             <enable>true</enable>                 <period>..</period>                 <timeout>..</timeout>         </cleanup>         <temporary>false</temporary>     </sessiondatapersist> 

which available part of wso2 sp1 applicable when remember me option selected? there other config manage these session timeouts?

regards, cijoy

if not enable session persistence, wso2is invalidates sso session after 15 minutes inactive time , value not configurable cache invalidation time. wso2is 5.0.0 stores sso session in caches not correct , can leads lot of issues. wso2is 5.0.0 sp1 introduces session persistence. so; there no configuration define session timeout explicitly. timeout can happened, when these session can deleted.

therefore timeout can achieve cleanup task not inactive time out.

<cleanup> <enable>true</enable> <period>10</period> <timeout>60</timeout> </cleanup>

cleanup.period defines time period among 2 consecutive cleanups in minutes. default 1 day.cleanup.timeout defines timeout value of session data in minutes. default 2 weeks. example if consider above configuration means clean task run periodically period of 10 minutes. , in cleanup process remove session data persisted before 60 minutes.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -