We recently installed SVN 1.5.2 (with VisualSVN/Apache) on some of our servers / virtual machines, and now when I send a commandline command with username/password they don't get cached anymore. Before, we were running SVN 1.5.0 installed with CollabNet, on svn://, and the credentials were cached after the first command.
So far, I'm finding difficulties in troubleshooting this. My situation is:
- SERVER_SVN (SVN 1.5.2 via svn://)
- SERVER_HTTP (SVN 1.5.2 via http://)
Command from commandline to SERVER_SVN: credentials cached fine
Same command to SERVER_HTTP: credentials are not cached
So, it seems like an http/apache server problem... BUT, from Tortoise the credentials are cached to both servers, so it also seems a client call problem. I'm running out of ideas...
A sample command sequence I use:
svn ls c:\mylocalfolderSVN --username foo --password bar
svn ls c:\mylocalfolderSVN // this works
svn ls c:\mylocalfolderHTTP --username foo --password bar
svn ls c:\mylocalfolderHTTP // this fails
The last command stops and asks for authentication.
Is credentials caching different between svn:// and http://, or did we miss something in the server configuration?
Thanks in advance for any suggestion.