Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
559 views

javax.net.ssl.SSLException: Improper close state: Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 7 sequenceNumber = 0

I am getting the below error when I tried to connect FTP server which is running in an open shift cluster. I want to upload the file to the FTP server with the below code. I have referred to the below ...
Chetan's user avatar
  • 63
0 votes
2 answers
208 views

Java Apache FTP Server import libraries

I am getting this error while starting the server. java.lang.NoSuchMethodError: No virtual method supportedOptions()Ljava/util/Set; in class Ljava/nio/channels/ServerSocketChannel; or its super ...
ShaRy's user avatar
  • 87
0 votes
0 answers
773 views

Frontend Javascript Ftpclient

So my Problem is about ftp in combination with javascript. In my network i have a running ftpserver on port 21. And i need a website, where the browser has access to the ftpserver via a ftpclient. In ...
Sweet_Phoenix's user avatar
1 vote
1 answer
1k views

Error when using SSL to connect to Apache FtpServer

I'm trying to set up a simple test FTP server using Apache FtpServer, and I'm having trouble configuring to use SSL. Following the Apache FtpServer documentation, here is what my code looks like so ...
Marwi's user avatar
  • 274
0 votes
1 answer
229 views

Use domain name to connect to embedded Apache FtpServer

I'm trying to set up a simple test FTPS server in Java using Apache FtpServer and connect to it using a domain name instead of the IP address. I've pointed the A record to the IP address and set up ...
Marwi's user avatar
  • 274
-1 votes
1 answer
125 views

apache commons ftp doesn't work on release build apk

I'm able to upload files to an FTP Server when I'm using a debug build, but it fails in the release build: it fails regardless if minify is enabled or not it fails even when I remove proguard ...
buzzcarla's user avatar
  • 303
0 votes
1 answer
583 views

Connection to FTP server works from Filezilla but returns 530 from ftpClient Apache Commons in Android

I want to send some files to an FTP server from Android. I have the server IP address, username, and password. I tried to connect to it from Filezilla and it works, however, if I try to connect from ...
Felipe Serna's user avatar
3 votes
2 answers
2k views

Apache embeded FTPS (Mina) issue on Java11+

I have a very simple Java 8 project (FTP server), which uses Apache FTPS (Mina) server library (v. 1.1.1). It is as simple as the following code: ListenerFactory factory = new ListenerFactory(); ...
gubak's user avatar
  • 31
2 votes
0 answers
722 views

Apache mina FTP server initial directory structure

I made simple Apache MINA FTP server in Spring boot. Similar to project mina-ftp-server in this github repo. Main configuration looks like this: @Configuration class FtpServerConfiguration { @...
Galoman's user avatar
  • 73
0 votes
1 answer
258 views

How could I clean sessions in a Mina FTP server

I have many logs on my server, server is trying every 10 seconds to reopen sessions which have been not active since hours, that cause exception, making logs full of noise and probably consuming cpu ...
maxence smets's user avatar
0 votes
1 answer
988 views

Apache Camel and Apache FTP Server on Windows - Can't find the "from" directory

I am trying to set up an FTP client using Apache Camel with the FTP component. I'm currently using Apache FTP Server (https://mina.apache.org/ftpserver-project/index.html) as the server implementation....
Joseph Gagnon's user avatar
0 votes
0 answers
58 views

Camel FTP transfer from local Apache FtpServer of a 15.6 MiB text file took 57 minutes

I used the following consumer endpoint in my class running in a JUnit test under Eclipse Oxygen: ftp://anonymous@localhost:21/test?password=****@****&fileName=TEST.TXT &localWorkDirectory=<...
Gerold Broser's user avatar