HI
I'm a newbie at SVNKit and I've got a problem connecting to a SVN
Repository.
The code for connecting to a SVN repository, available at the Wiki, works
fine:
String url = "http://svn.svnkit.com/repos/svnkit/trunk/doc";
String name = "anonymous";
String password = "anonymous";
SVNRepository repository =
SVNRepositoryFactory.create(SVNURL.parseURIDecoded(url));
ISVNAuthenticationManager authManager =
SVNWCUtil.createDefaultAuthenticationManager();
repository.setAuthenticationManager(authManager);
System.out.println("Repository Root: " +
repository.getRepositoryRoot(true));
System.out.println("Repository UUID: " +
repository.getRepositoryUUID(true));
But I'm now trying to connect to our own SVN repository and nothing works.
Our repository is encrypted via SSPI over SSL,
http://svn.mycompany.com:444/... And I found no samples or guidance in the
Wiki or the internet.
Could you point me in the right direction?
Thanks