Michal Hybler wrote: > I have question is the property jcr:uuid same as node.getUUID()? > > because if I ask for uuid by this method node.getUUID() and after that If I > request for UUID by this way: > > HashMap properties = new HashMap(); > > PropertyIterator iter = node.getProperties(); > while(iter.hasNext()){ > Property prop = iter.nextProperty(); > if (!prop.getDefinition().isMultiple()) { > properties.put(prop.getName(), prop.getValue().getString()); > } > > } Could you please provide more of your source code, especially the part where you call node.getUUID() and the part where your console output happens? Thanks, Christoph