How do I authenticate in Google App Engine with SVNKit?
Posted
by corgrath
on Stack Overflow
See other posts from Stack Overflow
or by corgrath
Published on 2010-04-20T12:39:14Z
Indexed on
2010/04/20
12:43 UTC
Read the original article
Hit count: 245
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?
© Stack Overflow or respective owner