I am trying to upload a xml file to my FTP location , but couldnt following message were appeared ,
Connected to 192.168.1.26.
230 Login successful.
250 Directory successfully changed.
425 Failed to establish connection.
nullDisconnected to 192.168.1.26.
Relevant code as follows ,
FTPClient ftpclient = new FTPClient();
FileInputStream fis = null;
try {
ftpclient.connect("192.168.1.26",21);
ftpclient.login("user","myuser");
System.out.println("Connected to " + "192.168.1.26" + ".");
System.out.print(ftpclient.getReplyString());
ftpclient.changeWorkingDirectory("win//test//num//upload//");
System.out.println(ftpclient.getReplyString());
fis = new FileInputStream("c:\\test.xml");
ftpclient.storeFile("c:\\test.xml", fis);
System.out.println(ftpclient.getReplyString());
//int reply = ftpclient.getReply();
ftpclient.logout();
ftpclient.disconnect();
System.out.print(ftpclient.getReplyString());
System.out.println("Disconnected to " + "192.168.1.26" + ".");
} catch (SocketException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
What would be the problem , Also when I used store method instead of storeFile there was a another error which mentions following error.
" 425 Use PORT or PASV first."