I'm using the Jackrabbit 1.2.1 JCA adapter and trying to have a Servlet
create and use two separate workspaces.  I get a "
java.lang.IllegalStateException: Inactive logical session handle called"
error when running the code below:

Context ctx = new InitialContext();
Repository repository = (Repository) ctx.lookup("java:comp/env/jackrabbit");
Credentials credentials = new SimpleCredentials("username",
"password".toCharArray());
Session session = repository.login(credentials);
Workspace workspace = session.getWorkspace();
JackrabbitWorkspace jws = (JackrabbitWorkspace) workspace;
jws.createWorkspace("ws1");
jws.createWorkspace("ws2");
Session s1 = repository.login(credentials, "ws1");
Session s2 = repository.login(credentials, "ws2");
System.out.println("s1.getWorkspace().getName() = " + s1.getWorkspace
().getName());
System.out.println("s2.getWorkspace().getName() = " + s2.getWorkspace
().getName());

Any thoughts?

Daniel.

Reply via email to