auth() is receiving an error code back from the AUTH command.
However it looks like it actually may be succeeding, as SSLv23/TLSv1 isn't an error message.
We expect servers to return 234, 334 or 200 - this one seems to be returning something different.
If you set the log level to DEBUG and then post a small chunk of the logging that shows what is returned from AUTH we should be able to figure out what is happening and tell you how to get around it.
Logger.setLevel(Level.DEBUG);
I am using enterprisedt's API for connecting to Tumbleweed Secure Transport.
In my trial java program, I get the following exception when try to connect through SSL and server validation set to true:
com.enterprisedt.net.ftp.FTPException: SSLv23/TLSv1
at com.enterprisedt.net.ftp.FTPControlSocket.validateReply(Unknown Sou
e)
at com.enterprisedt.net.ftp.ssl.SSLFTPClient.auth(Unknown Source)
at com.taw.net.ftp.FTPClient.connect(FTPClient.java:76)
at com.taw.net.ftp.FTPClient.main(FTPClient.java:124)
Please advise me.
Thanks and regards,
Saurabh Kumar