You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@commons.apache.org by Darren Hartford <dh...@ghsinc.com> on 2004/06/21 22:54:05 UTC

[VFS] SFTP with special char user/pass

Hey all,
Has anyone ran into the scenario where the username has a special char in it?  I have one SFTP account that uses the '\' character (a single one).

==code==
String server = "server1";
String user = "my\\user";
String pass = "password";
String connectionstring = "sftp://"+user+":"+pass+"@"+server;
FileSystemOptions fileSystemOptions = new FileSystemOptions();
SftpFileSystemConfigBuilder.getInstance().setUserInfo(fileSystemOptions, new TrustEveryoneUserInfo());
FileObject mydata = mySFTPProvider.resolveFile( connectionstring ,fileSystemOptions );
==end code==

I've tried using single-quote/apostrophe ' char to surround the username, but that didn't seem to help.  Any ideas?

-D




---------------------------------------------------------------------
To unsubscribe, e-mail: commons-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-user-help@jakarta.apache.org