Hi folks, tiny question
i have code like this:
Node a = getBlaBlaBla();
Node b = a.addNode("nodeB");
Node c = b.addNode("nodeC");
session.save();
And I recognized that nodeB has been stored but nodeC is not stored.
According to JCR docs all changes in which have been made in
particular session must be stored in a storage...
What is wrong?
Some env info:
Jackrabbit 1.4 used through JCA adapter in Jboss.
Many thanks.
