Hi,

i'm trying to use VFS to connect to VSFTP server with FTPS (Explict)
with a sample cert.

If i follow sample use... finally i receive a "522 Data connections
must be encrypted."

If i use sample FTPS cliente with commons-net i receive same message, but with

ftps = new FTPSClient(protocol);
...
ftps.execPROT("P");

solve, seem like this force ssl traffic.

How can i do this with VFS, any idea?

PD: VFS code is like this...

                FileSystemManager mgr = VFS.getManager();
                FileSystemOptions opts = new FileSystemOptions();
                FtpsFileSystemConfigBuilder ffscb = 
FtpsFileSystemConfigBuilder.getInstance();
                ffscb.setPassiveMode(opts, true);
                ffscb.setFtpsType(opts,"explicit");
                ...
                FileObject sourceFile = mgr.resolveFile(args[0]);
                String urlConn = getUrlWithOutCredentials(args[2]);
                ... urlConn is "ftps:/...."
                FileObject destinationFile = mgr.resolveFile(urlConn+args[1], 
opts);

Thanks in advance.

-- 
This is your badness level.
It's unusually high for someone your size.
We have to fix that.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to