Hi,
I'm attempting to create a workspace from another srcWorkspace but it is
throwing a PathNotFoundException on a node that is a child of the root.
This is on JackRabbit 2.1.0 deployed as a JCA.
I am essentially doing the following:
session = repository.login(new SimpleCredentials("admin1", "".toCharArray()),
"default");
session.getRootNode().addNode("/example", NodeType.NT_UNSTRUCTURED);
session.save();
workspace.createWorkspace("staging", "default");
session.logout();
This throws a PathNotFoundException on "/example".
Not sure what to do from here, can anyone provide possible causes?
-- Cory