I had a session ID that had a "+" in it. That caused the generated link in sessionsList.jsp to fail (it took the "+" to be a space). I updated the jsp to escape the link text and that fixed the problem.
Cheers.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Good catch! I have added a URLEncoder.encode(...) around the session id in this jsp, as well as in the administration servlet. Those changes will appear in the next version, due Real Soon Now (tm).
Cheers,
Cédrik
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I had a session ID that had a "+" in it. That caused the generated link in sessionsList.jsp to fail (it took the "+" to be a space). I updated the jsp to escape the link text and that fixed the problem.
Cheers.
Good catch! I have added a URLEncoder.encode(...) around the session id in this jsp, as well as in the administration servlet. Those changes will appear in the next version, due Real Soon Now (tm).
Cheers,
Cédrik