Dear Orion Users,
The following code produces an Illegal State Exception on the last
line. Normally, this exception arises when a session is invalid. I
think that the session appears (to Orion) to be invalid because Orion
re-uses the ID of the old session.
HttpSession session = request.getSession(true);
.........
session.invalidate();
session = request.getSession(true);
.........
String sid = session.getId(); //old ID re-used
long ct = session.getCreationTime()); //illegal state exception
I would welcome your thoughts on this.
Regards,
Raphael Gillett