session.move() throws ItemExistsException despite same name siblings
----------------------------------------------------------------------
Key: JCR-458
URL: http://issues.apache.org/jira/browse/JCR-458
Project: Jackrabbit
Type: Bug
Components: core
Versions: 1.0.1
Environment: svn rev. 414241
Reporter: Stefan Guggisberg
Assigned to: Stefan Guggisberg
code to reproduce:
Session session = r.login(new SimpleCredentials("johndoe",
"".toCharArray()), wspName);
Workspace wsp = session.getWorkspace();
Node root = session.getRootNode();
// setup test case
if (!root.hasNode("foo")) {
root.addNode("foo");
root.save();
}
if (!root.hasNode("bar")) {
root.addNode("bar");
root.save();
}
wsp.move("/foo", "/bar"); // ==> ItemExistsException
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira