protected void setUpDistributableSessionManager(ClassLoader loader)
{
try
{
Manager sm = getDistributableSessionManager();
Store store=sm.getStore();
if(store instanceof AbstractReplicatedStore)
((AbstractReplicatedStore)store).setLoader(loader);
if(_timeOutPresent)
sm.setMaxInactiveInterval(_timeOutMinutes*60);
getSessionHandler().setSessionManager(sm);
}
catch(Exception e)
{
Log.warn("could not set up Distributable HttpSession Manager - using local one",e);