IDEMPIERE-293 Fixing exception thrown on session timeout

This commit is contained in:
Deepak Pansheriya 2012-10-24 00:26:17 +05:30
parent e2618e7232
commit 193954e7d7
1 changed files with 6 additions and 2 deletions

View File

@ -308,7 +308,10 @@ public class SessionContextListener implements ExecutionInit,
public void cleanup(Desktop desktop) throws Exception {
if (ServerContext.getCurrentInstance().isEmpty() || !isContextValid())
{
setupExecutionContextFromSession(Executions.getCurrent());
if(Executions.getCurrent()==null)
return;
setupExecutionContextFromSession(Executions.getCurrent());
}
MSession mSession = MSession.get(Env.getCtx(), false);
if(mSession!=null && !mSession.isProcessed() && (Env.getContext(Env.getCtx(), "isReloaded")==null || Env.getContext(Env.getCtx(), "isReloaded").equals("") || Env.getContext(Env.getCtx(), "isReloaded").equals("N"))){
@ -322,7 +325,8 @@ public class SessionContextListener implements ExecutionInit,
public void init(Desktop desktop, Object request) throws Exception {
if (ServerContext.getCurrentInstance().isEmpty() || !isContextValid())
{
setupExecutionContextFromSession(Executions.getCurrent());
if(Executions.getCurrent()!=null)
setupExecutionContextFromSession(Executions.getCurrent());
}
MSession mSession = MSession.get(Env.getCtx(), false);
if(mSession!=null && mSession.isProcessed()){