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
            Reporter: Edgar Poce
            Priority: Minor


                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.

Reply via email to