I'm thinking that you need to url encode the string to deal with the meta character. You should usually do this anyways.
You can use the UrlEncoder class for this purpose. -----Original Message----- From: Darren Hartford [mailto:[EMAIL PROTECTED] Sent: Monday, June 21, 2004 1:54 PM To: [EMAIL PROTECTED] Subject: [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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
