Re: [net] FTPS passive data connection not using SSLSocketFactory?

2014-01-26 Thread Alex Vb
I have tried the connection with your suggestions and it works :) Thanks! On 24 January 2014 15:44, Seganti, Michael (DOF) segan...@finance.nyc.govwrote: A couple of things. You don't set the protection buffer size or the data channel protection which has to happen immediately after the

RE: [net] FTPS passive data connection not using SSLSocketFactory?

2014-01-24 Thread Seganti, Michael (DOF)
A couple of things. You don't set the protection buffer size or the data channel protection which has to happen immediately after the connection. client.connect(host, port); client. execPBSZ(0); client. .execPROT(P); // Private client.login(, );