PathElement[] pathElements = path.getElements();
StringBuffer buffer = new StringBuffer();
//Skip the first
for (int i = 1; i < pathElements.length; i++) {
PathElement currentPathElement = pathElements[i];
QName qName = ISO9075.encode(currentPathElement.getName());
String name = qName.toJCRName((NamespaceRegistryImpl) node.getSession().getWorkspace().getNamespaceRegistry());
System.out.println(name);
buffer.append("/" + name);
}