public SessionScope openScope(SipApplicationSession session)
{
AppSessionIf appSession = (AppSessionIf) session;
if (appSession != null && appSession.getAppSession().getCallSession() != null)
{
CallSession callSession = appSession.getAppSession().getCallSession();
return _node.getServer().getSessionManager().openScope(callSession);
}
return null;
}