On Thu, Jul 9, 2009 at 1:52 PM, Harri T.<[email protected]> wrote: > Do you mean like this? > > private static void traverseNodes(Node node) throws Exception { > if ("jcr:system".equals(node.getName())) { > return; > } > System.out.println(node.getPath()); > NodeIterator children = node.getNodes(); > while (children.hasNext()) { > traverseNodes(children.nextNode()); > } > } > > Now the output is just a single line: > > /
Well, then I guess the problem must be that you connect to the wrong repository. Is "rmi://localhost:1099/jackrabbit.repository" really the liferay repo? Regards, Alex -- Alexander Klimetschek [email protected]
