I'm working with Apache Jackrabbit using JCR API. I have exported current repository to a XML file:
session.exportSystemView("/", out, false, false);
Then, I imported the generated XML file to new instance of Jackrabbit:
session.importXML("/", in, ImportUUIDBehavior.IMPORT_UUID_COLLISION_REPLACE_EXISTING);
Now I can read and query imported files on new Jackrabbit Server using JCR API. But, I can't see the imported files in the standard WebDAV repository browser in the following address (the root is empty):
http://localhost:8080/repository/default/
so where is the problem?