doGetRemoteProperty(repository.getLocation(), "", repository, propName, revision, depth, handler);
} else {
SVNWCAccess wcAccess = createWCAccess();
try {
int admDepth = getLevelsToLockFromDepth(depth);
SVNAdminArea area = wcAccess.probeOpen(path, false, admDepth);
SVNEntry entry = wcAccess.getVersionedEntry(path, false);
boolean base = revision == SVNRevision.BASE || revision == SVNRevision.COMMITTED;
doGetLocalProperty(entry, area, propName, base, handler, depth, changeLists);
} finally {
wcAccess.close();