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 "/"

link|improve this question

70% accept rate
I have checked the code for DAV repository and it works perfectly. Heh, what is wrong with FS repository???? – misha nesterenko Jul 22 '11 at 2:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.