What steps will reproduce the problem?
1. Disable cookies in tomcat context : add cookies="false"
What is the expected output? What do you see instead?
Interaction with the worksheet that call the
org.jmesa.worksheet.servlet.WorksheetServlet servlet don't know
the session because the jsessionid is not join in the ajax url.
What version of the product are you using? 2.3.4
On what operating system? winxp
Solution : in the jmesa.js instead of :
jQuery.post('jmesa.wrk?', eval('(' + data + ')'), function(data) {});
replace with :
jQuery.post('jmesa.wrk;jsessionid='+jsessionid+'?', eval('(' + data + ')'),
function(data) {});
and declare in a JSP file :
<script type="text/javascript">
var jsessionid = '<%=session.getId()%>';
</script>
Thks,
Yoann