Re: [net] Problem with completePendingCommand and large files > 600MB

2017-10-25 Thread sebb
What you are doing is stopping reading from the server before the file has been fully sent. Unless the server is expecting that, it may complain (the fact that it works for smaller files may be because the server has already sent the data). AFAICT there is no standard way to tell the server to

Re: [net] Problem with completePendingCommand and large files > 600MB

2017-10-25 Thread sebb
be able to use ABOR in your app for that server. On 25 October 2017 at 23:57, sebb <seb...@gmail.com> wrote: > What you are doing is stopping reading from the server before the file > has been fully sent. > Unless the server is expecting that, it may complain (the fact that it >

Re: commons-lang class JsonToStringStyle does not escape double quote in a string value

2018-05-09 Thread sebb
Ticket exists: https://issues.apache.org/jira/browse/LANG-1395 No patch as yet. On 9 May 2018 at 13:46, Martin Gainty wrote: > can you submit a JIRA ticket with patch? > > > Martin > > > From: Jim Gan > Sent:

Re: [exec] Executed command can't open file argument

2018-05-03 Thread sebb
On 3 May 2018 at 17:18, Mark Trolley wrote: > I'm not sure how to respond to my own thread so I am hoping sending a > reply to my own sent message will do it. > > I experimented and discovered the problem is in the spaces in the > filename argument. If the file is renamed

Re: [exec] Executed command can't open file argument

2018-05-04 Thread sebb
On 3 May 2018 at 22:35, Mark Trolley <marktrol...@gmail.com> wrote: > On Thu, May 3, 2018 at 4:34 PM, sebb <seb...@gmail.com> wrote: >> On 3 May 2018 at 17:18, Mark Trolley <marktrol...@gmail.com> wrote: >> It may be that quotes are being added to the parameter

Travel Assistance applications for ApacheCon NA 2018 are now open!

2018-02-19 Thread Sebb
The Travel Assistance Committee (TAC) are pleased to announce that travel assistance applications for ApacheCon NA 2018 are now open! We will be supporting ApacheCon NA Montreal, Canada on 24th - 29th September 2018 TAC exists to help those that would like to attend ApacheCon events, but are

Re: [net] Version 3.7

2018-08-21 Thread sebb
On 21 August 2018 at 18:10, eddma01 wrote: > Is there a date when commons-net 3.7 is estimated to be released? Not as yet. > Need to move away from vulnerability in 3.6. > Which vulnerability? > > -- > Sent from: > http://apache-commons.680414.n4.nabble.com/Commons-User-f735979.html > >

Re: [openpgp] OpenPGP update?

2019-01-21 Thread sebb
On Mon, 21 Jan 2019 at 22:42, Andreas Beeker wrote: > > > You have to use https: in order to have write access. > > http: is read-only. > > Thank you sebb for pointing this out. > > It's working now and I've created a Jenkins job to keep the snapshot repo > uptodat

Re: [openpgp] OpenPGP update?

2019-01-19 Thread sebb
^/commons/sandbox/openpgp/trunk > Repository Root: http://svn.apache.org/repos/asf > Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68 > Revision: 1851691 > Node Kind: directory > Schedule: normal > Last Changed Author: sebb > Last Changed Rev: 1556339 > Last Changed Date

Re: Help with migrating one of OpenJPA classes to commons-collections4

2018-12-17 Thread sebb
On Mon, 17 Dec 2018 at 15:38, Gary Gregory wrote: > > I am on the road driving this week, my availability is limited. > > WRT being a RM, I think you need PMC karma for that. Sebb might be able to > confirm. Creating the dist/dev release candidate only requires project committer

Re: [net] FTP.Command.Site.Overflow command.

2019-04-01 Thread sebb
On Mon, 1 Apr 2019 at 11:55, Marcin Kudla wrote: > > Hi > > In our application we use Apache Commons Net FTP client to send files to > the server. One of our clients indicated us that during the connection our > client performs the command FTP.Command.Site.Overflow. According to >

Re: [csv] csv format detector/sniffer?

2019-02-25 Thread sebb
On Mon, 25 Feb 2019 at 18:38, Tim Allison wrote: > > Hi Gary, > > Our charset detector stuff is a combo of html-metaheader detection, > juniversalchardet and a cut and paste of a small portion of icu4j...we > could add that to commons-io, but I don't think you'd want to add > juniversalchardet as

Re: Apache Common Net issue

2019-02-21 Thread sebb
On Tue, 19 Feb 2019 at 14:23, Walter Heestermans (TME) wrote: > > Using Commons Net 3.3 The current release is 3.6 Please try with that version, and if there is still a problem, feel free to raise a JIRA issue. > public boolean storeFileToFTPServer(FTPTransferDetails details, byte[] data, >

Re: [SCXML] Snapshot repository does not contain any JAR

2019-03-14 Thread sebb
Please note that SNAPSHOT releases are offered as-is. There has been no QA and they are not supported. The jars in the snapshot repository may be replaced or removed at any time. They should only be used by developers wishing to help with testing the code being developed. They should never be

Re: [commons-cli] handling properties files as default . . .

2019-02-10 Thread sebb
On Sun, 10 Feb 2019 at 22:30, Albretch Mueller wrote: > > On 2/10/19, P. Ottlinger wrote: > > Another way to help out (from the ASF universe) would be: > > https://tamaya.apache.org/ > > I did take a look at tamaya: > > https://tamaya.apache.org/features.html > ~ > To me having to go: > >

Re: VALIDATOR-Issues while upgrading VALIDATOR JAR

2019-02-04 Thread sebb
On Mon, 4 Feb 2019 at 09:11, Ananda Krishna Sridhar wrote: > > Hi, > > Recently we have upgraded Apache Commons validator jar to version 1.6 in our > product after which we are seeing the below exception: > java.lang.IllegalArgumentException: Resources cannot be null. Please provide the full

Re: [math] Vector math question

2019-05-28 Thread sebb
On Tue, 28 May 2019 at 09:31, LE TELLIER Romain 211391 wrote: > > Hello, > > Yes, Apache Commons Maths has what you need. Start by having a look at the > org.apache.commons.math3.geometry.euclidean.threed package and the Vector3D > class >

Re: Quoted content

2019-06-14 Thread sebb
On Fri, 14 Jun 2019 at 13:34, Daryl Stultz wrote: > > I'm trying to replace an old CSV library with commons-csv. I seem to be > having trouble with the most basic idea of the parser recognizing content > that is quoted. > > I've discovered this bug here: >

Re: Quoted content

2019-06-14 Thread sebb
I should have added: withIgnoreSurroundingSpaces() affects parsing withTrim() affects printing. On Fri, 14 Jun 2019 at 15:05, sebb wrote: > > Try using: > > withIgnoreSurroundingSpaces() > > On Fri, 14 Jun 2019 at 14:03, sebb wrote: > > > > On Fri, 14 J

Re: Quoted content

2019-06-14 Thread sebb
Try using: withIgnoreSurroundingSpaces() On Fri, 14 Jun 2019 at 14:03, sebb wrote: > > On Fri, 14 Jun 2019 at 13:34, Daryl Stultz wrote: > > > > I'm trying to replace an old CSV library with commons-csv. I seem to be > > having trouble with the most basic idea o

Re: [ANNOUNCEMENT] Apache Commons Collections 4.4

2019-07-10 Thread sebb
ions in CompositeCollection, > CompositeSet, and CompositeMap. Thanks to Yu Shi, Gary Gregory. > > Changes: > o COLLECTIONS-718: Fix LRUMap exception message. Thanks to Eitan Adler. > o COLLECTIONS-716: Don't include email address in Exception messages. > Thanks to Sebb. >

Re: [DBCP] Why was 1.5.1 never released?

2019-08-15 Thread sebb
Why not use 2.7.0? Does that not fix the issue? On Wed, 14 Aug 2019 at 23:40, sanchay javeria wrote: > > Alright, that's not a problem. I'll build the jar myself and push it to our > internal maven repo. Are there any blockers/issues with 1.5.1 we should be > aware of or is it safe for

Re: [email] Is there a way to unset CC/BCC?

2019-08-27 Thread sebb
On Tue, 27 Aug 2019 at 12:02, Pavlo Polishchuk wrote: > > Good day, > Is there a way to unset CC/BCC through "org.apache.commons.mail.Email" ? > > I tried "email.setCC" with empty collection but there is a check for > null/empty collection inside. > Also, tried to

Re: [codec] Hex encode

2019-09-28 Thread sebb
On Sat, 28 Sep 2019 at 06:21, Or Mark wrote: > > Hello, > > About commons-codec Hex encoding methods, > I suggest adding to Hex static encode method which returns byte[] > It will be consistent with other encoding classes that have such method as > Base64(same package) and MessageDigest. Base64

Re: Final tag for commons-io-2.6

2019-09-24 Thread sebb
Might I ask why the tag is so important? If you are looking to download the source, then that is available from the usual download page: https://commons.apache.org/proper/commons-io/download_io.cgi On Tue, 24 Sep 2019 at 11:32, Roberto Oliveira wrote: > > Hi Gary, > > Thanks for looking at it.

Re: [compress] Support for writing AES-encrypted ZIP files

2019-09-28 Thread sebb
Fixing subject prefix On Sat, 28 Sep 2019 at 14:00, Christopher Schultz wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > All, > > According to > https://commons.apache.org/proper/commons-compress/limitations.html, > ZIP support does not include AES encryption when *writing*

Re: [ANNOUNCEMENT] Apache Commons Collections 4.4

2019-07-09 Thread sebb
iteSet, and CompositeMap. Thanks to Yu Shi, Gary Gregory. > > Changes: > o COLLECTIONS-718: Fix LRUMap exception message. Thanks to Eitan Adler. > o COLLECTIONS-716: Don't include email address in Exception messages. > Thanks to Sebb. > > For complete information on Ap

Re: Final tag for commons-io-2.6

2019-09-25 Thread sebb
gt; On Tue, Sep 24, 2019 at 6:52 PM sebb wrote: > > > > Might I ask why the tag is so important? > > > > If you are looking to download the source, then that is available from > > the usual download page: > > > > https://commons.apache.org/proper/common

Re: Final tag for commons-io-2.6

2019-09-25 Thread sebb
On Wed, 25 Sep 2019 at 11:34, Roberto Oliveira wrote: > > On Wed, Sep 25, 2019 at 12:31 PM sebb wrote: > > > > On Wed, 25 Sep 2019 at 07:41, Daniel Kreling wrote: > > > > > > We need to build the package from source > > > > In which cas

Re: Final tag for commons-io-2.6

2019-09-25 Thread sebb
On Wed, 25 Sep 2019 at 16:59, Gary Gregory wrote: > > On Wed, Sep 25, 2019 at 8:44 AM sebb wrote: >> >> On Wed, 25 Sep 2019 at 11:34, Roberto Oliveira wrote: >> > >> > On Wed, Sep 25, 2019 at 12:31 PM sebb wrote: >> > > >> &

Re: commons-exec docs still point to subversion

2020-04-25 Thread sebb
Thanks for the report. I hope the stale information have now been fixed/ On Fri, 24 Apr 2020 at 22:11, Carsten Dreesbach wrote: > > https://commons.apache.org/proper/commons-exec/source-repository.html > still mentions subversion as the repo (these pages still come up first > when doing Google

[ANNOUNCE] Apache Commons NET 3.7 released

2020-08-06 Thread sebb
The Apache Commons team are pleased to announce the release of Apache Commons Net version 3.7. The Commons Net library implements the client side of many basic Internet protocols. The purpose of the library is to provide fundamental protocol access, not higher-level abstractions. This is a bug

Re: [beanutils] Optional dependency on commons-collections (v3)

2021-04-22 Thread sebb
On Thu, 22 Apr 2021 at 22:32, Alex Herbert wrote: > > On Thu, 22 Apr 2021 at 22:19, Christopher Schultz < > ch...@christopherschultz.net> wrote: > > > Gary, > > > > On 4/21/21 16:18, Gary Gregory wrote: > > > You can scan the source files for import statements, of Commons > > Collections > > >

Re: 1983.christian.muel...@gmail.com

2021-09-12 Thread sebb
On Sun, 12 Sept 2021 at 11:50, Christian Müller <1983.christian.muel...@gmail.com> wrote: > > Hi everybody, > > One short question: Is the javadoc description of > *commons.io.FileUtils.isRegularFile(...)* correct? It says it returns > "false" if the path is not a directory. Actually "false" is

Re: [External] : Re: [io] Regarding CVE-2021-29425: APACHE COMMONS IO UPDATE

2021-12-17 Thread sebb
AFAICT the CVE relates to FileNameUtils.normalize. I suggest you compare the current code with the code in 2.6 and apply any changes. You can also look through the Github commit log for changes relating to the file that contains the method. On Fri, 17 Dec 2021 at 14:14, Gary Gregory wrote: >

Re: [csv] Does the library provide means to circumvent CSV injection

2021-11-11 Thread sebb
On Thu, 11 Nov 2021 at 11:36, P. Ottlinger wrote: > > Hi guys, > > thanks for your reply. > > Maybe I'm misinterpreting something but I thought that it could be made > possible to configure CSVFormat-object when writing the CSV data in a > way that any data with possibly corrupting values (as

Re: [csv] Does the library provide means to circumvent CSV injection

2021-11-11 Thread sebb
actually quoting is enough and all should > prefer xml based office formats anyway. > > I won’t mind to accept a tester patch for such an option. Maybe even > unsafe-pass-default/quote-injection/reject-injection enum. > > Gruss > Bernd > > > -- > http://bernd.eckenfel

Re: [dbutils] Please update commons-dbutils 1.8 in Maven central repo

2022-03-26 Thread sebb
On Sat, 26 Mar 2022 at 02:30, Liu, Yufei (Eric) wrote: > > Hi, > > I went through the list further, it looks like on Mar 2020, Gary was > trying to look into this release again[1]. > It's quite understandable that activities were all slwed down in the > past 2 years. > > But the library's

Re: [io] Encoding bug in XmlStreamReader in Commons IO 2.14.0?

2023-10-03 Thread sebb
Created https://issues.apache.org/jira/browse/IO-815 On Tue, 3 Oct 2023 at 21:49, sebb wrote: > > On Tue, 3 Oct 2023 at 21:35, Laurence Gonsalves > wrote: > > > > Thank you. My git bisect just found this change too. :-) > > > > We are processing documents that

Re: [io] Encoding bug in XmlStreamReader in Commons IO 2.14.0?

2023-10-03 Thread sebb
On Tue, 3 Oct 2023 at 22:17, Laurence Gonsalves wrote: > > On Tue, Oct 3, 2023 at 1:50 PM sebb wrote: > > > Given this inconsistency, and the fact that there are XML documents "in > > > the > > > wild" that use these encoding names, would it be reas

Re: [io] Encoding bug in XmlStreamReader in Commons IO 2.14.0?

2023-10-03 Thread sebb
. Sorry for the confusion. On Tue, 3 Oct 2023 at 20:22, sebb wrote: > > Just had another look at the class: in 2.13, the regex for matching > the encoding string was > Pattern.compile("<\\?xml.*encoding[\\s]*=[\\s]*((?:\".[^\"]*\")|(?:'.[^']*'))", > P

Re: [io] Encoding bug in XmlStreamReader in Commons IO 2.14.0?

2023-10-03 Thread sebb
use these encoding names, would it be reasonable to relax the regex > just enough so that it'll work with these other names and aliases? I would say yes. I'm currently working on a test to check that all charsets *and aliases* can be matched, and on a

Re: [io] Encoding bug in XmlStreamReader in Commons IO 2.14.0?

2023-10-03 Thread sebb
s 'Cp437': https://docs.oracle.com/javase/8/docs/technotes/guides/intl/encoding.doc.html https://docs.oracle.com/en/java/javase/17/intl/supported-encodings.html Try using 'Cp437' as the encoding. On Tue, 3 Oct 2023 at 20:01, sebb wrote: > > On Tue, 3 Oct 2023 at 18:05, Laurence Gonsalves

Re: [io] Encoding bug in XmlStreamReader in Commons IO 2.14.0?

2023-10-03 Thread sebb
On Tue, 3 Oct 2023 at 18:05, Laurence Gonsalves wrote: > > On Tue, Oct 3, 2023 at 1:39 AM sebb wrote: > > > > The byte input stream does not carry any encoding information, so the > > XmlStreamReader has to guess what encoding was used. > > Determining what encodin

Re: [io] Encoding bug in XmlStreamReader in Commons IO 2.14.0?

2023-10-03 Thread sebb
The byte input stream does not carry any encoding information, so the XmlStreamReader has to guess what encoding was used. I'm surprised that it ever worked reliably. On Tue, 3 Oct 2023 at 09:13, Laurence Gonsalves wrote: > > Hello, > > It looks like XmlStreamReader is not correctly handling

Re: Issue: Commons list page DbUtils 1.8 still point release date to 1.7 release date

2023-08-19 Thread sebb
On Sat, 19 Aug 2023 at 11:25, sharedata wrote: > > Nice to seeApache Commons DbUtils1.8.0 release, Thanks to all the > developers. > > > DbUtils1.8.0 release date is 2023-08-01, not 2017-07-20. > > > See: > > https://commons.apache.org/ Thanks for the report. The issue is that the Maven

Re: UrlValidator

2022-08-09 Thread sebb
On Tue, 9 Aug 2022 at 23:34, Anirudh Aggarwal wrote: > > Is UrlValidator of org.apache.commons.validator.routines is thread safe or > not ?! It looks like it does not have any mutable state, so it should be. > Thanks > Anirudh Aggarwal

Re: [Text & Collections] sha512 issue?

2022-12-30 Thread sebb
On Fri, 30 Dec 2022 at 16:55, Gilles Sadowski wrote: > > Le ven. 30 déc. 2022 à 17:29, Gary Gregory a écrit : > > > > That's the download page, not what you are downloading. What URL are > > you actually using for the files. > > I confirm that > >

Re: Compatibility with RHEL8.6

2022-12-09 Thread sebb
On Fri, 9 Dec 2022 at 09:56, Gilles Sadowski wrote: > > Hello. > > Le ven. 9 déc. 2022 à 09:27, Prince Sonu (EXT) > a écrit : > > > > Hello Team > > Can you Please let me know that Apache XML Commons version 1.0.b2 As far as I can tell, there is no such component in Apache Commons. Did you

Re: GC issues after upgrading from 1.8 to 1.10

2022-11-17 Thread sebb
On Thu, 17 Nov 2022 at 15:40, Alex Herbert wrote: > > On Thu, 17 Nov 2022 at 13:34, Gilles Sadowski wrote: > > > > Hello. > > > > Le jeu. 17 nov. 2022 à 13:38, Pavel Belousov > > a écrit : > > > > > > [...] > > > > > > As I cannot sign up for your jira, [...] > > > > What do you mean? > >

Re: Vulnerability Impact Assessment for PA VMT-8353 - Apache Commons Text v1.5 - 1.10.0

2022-11-07 Thread sebb
On Mon, 7 Nov 2022 at 13:46, Erna Banchik wrote: > > Hi, > > I would like to know if the new vulnerability for PA VMT-8353 on Apache > Commons Text v1.5 - 1.10.0 also impacts Apache Directory Studio. > > We're using Apache Directory Studio and I would like to know if this > vulnerability

Re: Commons bsf

2023-02-01 Thread sebb
On Wed, 1 Feb 2023 at 00:22, Alex O'Ree wrote: > > No problem. There was some activity on github. Please note: That does not mean the component is being developed. Dependabot runs on most components, and that generates traffic. Also there may need to be changes to asf.yaml which affect all

Re: [ANNOUNCE] Apache Commons BCEL Version 6.8.0

2023-12-09 Thread sebb
On Sat, 9 Dec 2023 at 17:06, Tamás Cservenák wrote: > > Hej Gary, > > The "historical list of changes" is 404 for me... It should be: https://commons.apache.org/proper/commons-bcel/changes-report.html It might be possible to put in a temporary redirect ... > Thanks > T > > On Sat, Dec 9, 2023

Re: [Net] Question about plan for the incoming release common-net 2.1

2010-09-09 Thread sebb AT ASF
On 9 September 2010 02:14, SU Xing A xing.a...@alcatel-lucent.com wrote: Hi,  We are very interesting with the incoming release common-net 2.1, especially for its IPv6 support feature. https://issues.apache.org/jira/browse/NET-288

[ANNOUNCE] Apache Commons Validator 1.7

2020-08-08 Thread sebb AT ASF
The Apache Commons Validator team is pleased to announce the release of Apache Commons Validator 1.7 Apache Commons Validator provides the building blocks for both client side validation and server side data validation. It may be used standalone or with a framework like Struts. This is

<    1   2   3   4