[
https://issues.apache.org/jira/browse/JCR-1034?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jukka Zitting updated JCR-1034:
-------------------------------
Affects Version/s: 0.9
1.0
1.0.1
1.1
1.1.1
1.2.1
1.2.2
1.2.3
1.3
1.3.1
Fix Version/s: (was: 1.4)
1.3.2
Merged to the 1.3 branch in revision 577701.
> Unable to save session after saving a renamed node
> --------------------------------------------------
>
> Key: JCR-1034
> URL: https://issues.apache.org/jira/browse/JCR-1034
> Project: Jackrabbit
> Issue Type: Bug
> Components: core
> Affects Versions: 0.9, 1.0, 1.0.1, 1.1, 1.1.1, 1.2.1, 1.2.2, 1.2.3, 1.3,
> 1.3.1
> Reporter: Edgar Poce
> Assignee: Stefan Guggisberg
> Priority: Minor
> Fix For: 1.3.2
>
>
> TransientRepository repo = new TransientRepository(
> "applications/test/repository.xml",
> "applications/test");
> Session s = repo.login(new SimpleCredentials("test",
> "".toCharArray()));
> if (s.getRootNode().hasNode("parent")) {
> s.getRootNode().getNode("parent").remove();
> s.save();
> }
> // create parent node
> Node parent = s.getRootNode().addNode("parent");
>
> // create node to rename
> parent.addNode("newnode");
> s.save();
> // rename node
> s.move("/parent/newnode", "/parent/renamedNewNode");
> // save renamed node
> s.getRootNode().getNode("parent/renamedNewNode").save();
> // try to save session --> FAILS
> s.save();
> s.logout();
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.