How do I authenticate in Google App Engine with SVNKit?
- by corgrath
Creating a default authication manager with SVNKit requires access to the file system.
SVNURL svnurl = SVNURL.parseURIEncoded(url);
SVNRepository repository = SVNRepositoryFactory.create(svnurl);
// Authentication
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager(name, password);
repository.setAuthenticationManager(authManager);
In Google App Engine, you can't create/write files. How do I authenticate myself in Google App Engine?