Re: [net] Version 3.7

2017-11-18 Thread Robert Paasche
Hi all, is there an estimated date of the release? Best Robert Paasche 2017-10-23 16:29 GMT+02:00 Robert Paasche <r.paas...@pripares.com>: > Hi, > > is there a release schedule for commons-net 3.7? We need the fix/changes > from NET-584, but we are not allowed to use

[net] Version 3.7

2017-10-23 Thread Robert Paasche
Hi, is there a release schedule for commons-net 3.7? We need the fix/changes from NET-584, but we are not allowed to use SNAPSHOT versions. Robert Paasche

Re: [compress] How to implement zip-bomb protection with Java 10

2018-04-09 Thread Robert Paasche
Hi, sorry it's a litte bit late, but have you tried to open an bug-report for the hard cast on https://bugreport.java.com/ ? Best Rob Robert Paasche Senior Developer pripares GmbH Altheimer Eck 2 80331 München Tel +49 (0)89 45 22 808 - 30 Fax +49 (0)89 45 22 808 - 58 Mail r.paas

Re: okay tomcat 6 is earliest/latest version that supports 64bit...

2018-12-20 Thread Robert Paasche
You should ask the Tomcat user list, see [0] But it seems you added an incompatible (too old) version of commons-logging to Tomcat. You may have to update/upgrade the dependencies of your application. [0] http://tomcat.apache.org/lists.html Robert Paasche Senior Developer pripares GmbH

Re: Re: [net] FTPClient doesn't download full images

2020-06-04 Thread Robert Paasche
thing like: fos.write(buffer.toByteArray()); Am Do., 4. Juni 2020 um 15:29 Uhr schrieb Julia Ruzicka < julia.ruzi...@simutech.at>: > @Robert Paasche > > The code is used in an AsyncTask and there's more error handling to it > (including proper error messages,...), I just simplif

Re: [net] FTPClient doesn't download full images

2020-06-04 Thread Robert Paasche
The following line is wrong: while ((len = bis.read(buf)) > 0) { //Same result using only 'is' read == -1 marks the end of the stream. 0 shows only that the stream is still waiting for the next chunk of data. Please read the JavaDocs: > Returns: > the number of bytes read, or -1 if the end

Re: [net] FTPClient doesn't download full images

2020-06-04 Thread Robert Paasche
Hmm maybe it is the bufferdStream. That's working code I'm using in a project for years now: private FTPClient createClient() { FTPClient ftp = new FTPClient(); FTPClientConfig config = new FTPClientConfig(); config.setServerTimeZoneId("UTC");

Re: Re: [net] FTPClient doesn't download full images

2020-06-04 Thread Robert Paasche
a.ruzi...@simutech.at>: > @Robert Paasche > > At first I tried to do it with a `FileOutputStream` and > `ftpClient.retrieveFile(fileName,fos)` but that's how I noticed the > problem. I then switched to using ` InputStream is = > ftpClient.retrieveFileStream(filename)` and when that didn'