// 9.0 and older won't create a session.
// If none exists, we make it here.
public HttpSession getSession(boolean create) {
HttpSession s = super.getSession(create);
if (s == null) {
s = new GenericHttpSession(mSessionId);
// FIXME: more private access
//mSession = s;
}
return s;
}