Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8403793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T22:26:13+00:00 2026-06-09T22:26:13+00:00

I am using commons-net package for the first time and using the code below

  • 0

I am using commons-net package for the first time and using the code below to ftp a file from a FileZilla server over SSL. I am facing an error when I run the program. What is wrong in the code?

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintWriter;
import org.apache.commons.net.PrintCommandListener;
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPReply;
import org.apache.commons.net.ftp.FTPSClient;

public class CommonsNetFTPSTest {
public static void main(String[] args) throws Exception {
    System.setProperty("javax.net.debug", "ssl");

    String server = "XXX.XXX.XXX.XXX";
    String username = "USER_TEST";
    String password = "ABCD1234";
    String remoteFile = "/Data/Input/PH240819";
    String localFile = "PH240819";
    String protocol = "SSL"; // TLS / null (SSL)
    int port = 990;
    int timeoutInMillis = 10000;
    boolean isImpicit = true;

    FTPSClient client = new FTPSClient(protocol, isImpicit);

    client.setDataTimeout(timeoutInMillis);
    client.addProtocolCommandListener(new PrintCommandListener(new  PrintWriter(System.out)));

    System.out.println("################ Connecting to Server ################################");

    try
    {
        int reply;
        System.out.println("################ Connect Call ################################");
        client.connect(server, port);

        client.login(username, password);

        System.out.println("################ Login Success ################################");

        //client.setFileType(FTP.BINARY_FILE_TYPE);
        client.setFileType(FTP.NON_PRINT_TEXT_FORMAT);
        client.execPBSZ(0);  // Set protection buffer size
        client.execPROT("P"); // Set data channel protection to private
        client.enterLocalPassiveMode();

        System.out.println("Connected to " + server + ".");
        reply = client.getReplyCode();

        if (!FTPReply.isPositiveCompletion(reply))
        {
            client.disconnect();
            System.err.println("FTP server refused connection.");
            System.exit(1);
        }

        client.listFiles();
        boolean retrieved = client.retrieveFile(remoteFile, new FileOutputStream(localFile));
    }
    catch (Exception e)
    {
        if (client.isConnected())
        {
            try
            {
                client.disconnect();
            }
            catch (IOException ex)
            {
                ex.printStackTrace();
            }
        }
        System.err.println("Could not connect to server.");
        e.printStackTrace();
        return;
    }
    finally
    {
        //client.disconnect();
        client.logout();
        System.out.println("# client disconnected");
    }
}
}

Error is below-

main, WRITE: SSLv3 Handshake, length = 56
main, READ: SSLv3 Change Cipher Spec, length = 1
JsseJCE:  Using cipher RC4 from provider TBD via init
CipherBox:  Using cipher RC4 from provider from init IBMJCE version 1.2
JsseJCE:  Using MessageDigest MD5 from provider IBMJCE version 1.2
main, READ: SSLv3 Handshake, length = 56
*** Finished
verify_data:  { 7, 71, 60, 4, 21, 222, 78, 66, 166, 137, 172, 57, 64, 131, 115, 89, 94, 128, 164, 80, 172, 124, 246, 14, 224, 91, 88, 128, 21, 44, 149, 161, 130, 112, 250, 11 }
***
cached session [Session-1, SSL_RSA_WITH_RC4_128_MD5]
%% Cached client session: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
Exception in thread "main" java.lang.NullPointerException
    at org.apache.commons.net.ftp.FTP.sendCommand(FTP.java:441)
    at org.apache.commons.net.ftp.FTPSClient.sendCommand(FTPSClient.java:535)
    at org.apache.commons.net.ftp.FTP.sendCommand(FTP.java:520)
    at org.apache.commons.net.ftp.FTP.sendCommand(FTP.java:569)
    at org.apache.commons.net.ftp.FTP.quit(FTP.java:781)
    at org.apache.commons.net.ftp.FTPClient.logout(FTPClient.java:706)
    at CommonsNetFTPSTest.main(CommonsNetFTPSTest.java:85)

Looks like it is not going beyond the point where the login is called. The user id and password is all correct. I have an SSL Certificate which was given to me by the folks hosting the FileZilla server and after extracting the certificate to certfile.txt file using openSSL, I have installed it in my java/jre/lib/security/cacerts
using command below-

keytool -import -alias "cert" -file certfile.txt -keystore /usr/java5/jre/lib/security/cacerts

I am still not able to determine the cause of the error. as per the execution log prior to the error text , it looks like it successfully connects and handshakes, but something goes wrong right after that. I am running the program from a Unix box (AIX 5.3), which is the client machine.

Help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T22:26:14+00:00Added an answer on June 9, 2026 at 10:26 pm

    My classpath was pointing to an older verion of commons-net jar file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using apache commons-net for downloading a file from an FTP server. That
I'm using Apache's commons-net-2.2.jar to download a batch of files from a FTP server,
I have code to upload a file to a server. import org.apache.commons.net.ftp.FTPClient; import java.io.File;
Weblogic 10.3.1.0 is using com.bea.core.apache.commons.net_1.0.0.0_1-4-1.jar... I want to use commons-net-2.0.jar from my code. How
I am trying to store a file into a ftp server using apache commons
I'm using the FTP library provided by Apache (commons-net). I want to check if
I'm currently using commons-net library for FTP client in my app. I have to
I'm using the Commons Net FTPClient class to periodically poll an ftp site and
Hay Guy, I'm using org.apache.commons.net.nntp to connect to a nntp server, however running a
I wrote small FTP Client Applet which uploads files to FTP Server using Commons

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.