AWSession awsession = AWSession.session(httpSession);
if (awsession != null) {
// AWSession.terminate must be called before httpSession.invalidate because
// subclasses of AWSession may implement terminate() which requires data from the
// session. See defect 93887 for more information.
awsession.terminate();
}
Log.aribaweb.debug("verifySessionIsValid: HttpSession invalidated: %s",
httpSession.getId());
httpSession.invalidate();
}