WorkingCopy wc = new WorkingCopy(user, password);
List<SVNDirEntry> entries;
try {
entries = wc.list(SVNURL.parseURIEncoded(uri), SVNRevision.HEAD, SVNRevision.HEAD, false, SVNDepth.IMMEDIATES, 1);
MemTreeBuilder builder = context.getDocumentBuilder();
int nodeNr = builder.startElement(ENTRIES_ELEMENT, EMPTY_ATTRIBS);
for (SVNDirEntry entry : entries) {
String path = entry.getRelativePath();