// while this request is still pending, to see if the locking is
// fine grained (per session at least).
try
{
HttpClient client = new HttpClient();
client.start();
try
{
ContentResponse resp = client.GET("http://localhost:" + port + path + ";jsessionid="+session.getId()+"?action=none");
assertEquals(HttpServletResponse.SC_OK,resp.getStatus());
assertEquals("true",session.getAttribute("reentrant"));