Remember all my other calls work, including update and commit. Here's how I setup my client manager:
var myOpts :ISVNOptions = SVNWCUtil.createDefaultOptions(true) var myAuth = SVNWCUtil.createDefaultAuthenticationManager(userAuth.username, userAuth.password) var outManager = SVNClientManager.newInstance(myOpts, myAuth) And a little later in the code: val logClient = manager.getLogClient logClient.doLog(.... I need to have different users for tracking purposes so I can't just rely on the one in the WC. I should also mention this code worked with subversion 1.6 over http and svnkit 1.3.4 (versus now with subversion 1.7.5 over https with svnkit 1.7.5). Would a longer stacktrace help? Alan