I try to connect to local repository using SVNKit. I have initialized factory using FSRepositoryFactory.setup(); nevetheless I am getting
org.tmatesoft.svn.core.SVNException: svn: Unable to open an ra_local session to URL
svn: Unable to open repository 'file:///j:/temp/svn'
svn: Unable to open repository 'file:///j:/temp/svn'
Here is my code where error occurs.
final long[] revNumber = new long[] { 0 };
SVNRepo repo = watch.getRepo();
SVNClientManager cm = SVNClientManager.newInstance(null, repo.getLogin(), repo.getPassword());
SVNLogClient logClient = cm.getLogClient();
logClient.doLog(repo.getUrl(), new String[] { watch.getPath() }, SVNRevision.create(1), SVNRevision.HEAD,
SVNRevision.create(1), true, false, 1, new ISVNLogEntryHandler() {
public void handleLogEntry(SVNLogEntry logEntry) throws SVNException {
revNumber[0] = logEntry.getRevision();
}
});
repo.getLogin() return "" (empty string),
repo.getPassword return ""
repo.getUrl() return SVNURL.parseEncoded("file:///j:/temp/svn/")
watch.getPatch() returh "/"