RE: [External] Re: Question regarding the 3.x.x commons-collections library

2022-06-06 Thread Amit Pande
issue. Thanks, Amit -Original Message- From: Gary Gregory Sent: Monday, June 6, 2022 8:57 AM To: Commons Users List Subject: Re: [External] Re: Question regarding the 3.x.x commons-collections library It looks like Validator also depends on BeanUtils and that one depends on Collections as

Re: [External] Re: Question regarding the 3.x.x commons-collections library

2022-06-06 Thread Gary Gregory
at I know of to do this but it seems like the right path forward. I > think Validator might be the last Commons component that is not on > Java 8. > > Gary > > > > > Thanks, > > Amit > > > > > > Get Outlook for iOS<https://aka.ms/o0ukef> >

Re: [External] Re: Question regarding the 3.x.x commons-collections library

2022-06-06 Thread Gary Gregory
ward. I think Validator might be the last Commons component that is not on Java 8. Gary > > Thanks, > Amit > > > Get Outlook for iOS<https://aka.ms/o0ukef> > > From: Gary Gregory > Sent: Monday, June 6, 2022 7:31:38 AM > T

Re: [External] Re: Question regarding the 3.x.x commons-collections library

2022-06-06 Thread Amit Pande
ommons Users List Subject: [External] Re: Question regarding the 3.x.x commons-collections library Hi Amit and all: I definitely recommend migrating to the latest of the 4.x line. We provide a kind of version 3.x support in the sense that anyone with historical knowledge or the inclination can

Re: Question regarding the 3.x.x commons-collections library

2022-06-06 Thread Gary Gregory
Hi Amit and all: I definitely recommend migrating to the latest of the 4.x line. We provide a kind of version 3.x support in the sense that anyone with historical knowledge or the inclination can answer questions here. As far as any new releases of the 3.x branch, I would say that this would be q

Re: Question about usage of org.apache.commons.exec.ExecuteWatchdog

2020-04-24 Thread Siegfried Goeschl
Hi Carsten, I guess the documentation is indeed misleading - it is there for 15 years :-) Maybe it was intended as if (executor.isFailure(exitValue) || watchdog.killedProcess()) { // failed or was killed on purpose by the watchdog } Thanks in advance, Siegfried Goeschl > On 24.04.2

Re: Question about URLValidator#isValid

2016-09-10 Thread Paulo Roberto Massa Cereda
'ello, I believe it's case for using a RegexValidator in order to accept localhost and passing it to the URLValidator constructor. Cheerio! Paulo Em 10-09-2016 11:42, Philippe Mouawad escreveu: Hello, Is this URL valid: http://localhost/IqGo6EM1JEVZ+MSRJqUSo@qhjVMSFBTs/37/0/1 For me it is,

Re: Question about URLValidator#isValid

2016-09-10 Thread Paulo Roberto Massa Cereda
'ello, The lack of a domain suffix in the first URL (that is, only 'localhost') is the reason the first URL is failing. :) Best, Paulo Em 10-09-2016 18:16, Philippe Mouawad escreveu: But it appears it's not the reason for which false is return: - System.out.println(urlValidator.isValid(

Re: Question about URLValidator#isValid

2016-09-10 Thread Philippe Mouawad
But it appears it's not the reason for which false is return: - System.out.println(urlValidator.isValid(" http://localhost/IqGo6EM1JEVZ+MSRJqUSo@qhjVMSFBTs/37/0/1";)); - System.out.println(urlValidator.isValid(" http://www.apache.com/IqGo6EM1JEVZ+MSRJqUSo@qhjVMSFBTs/37/0/1";)); outpu

Re: Question about URLValidator#isValid

2016-09-10 Thread Philippe Mouawad
Thank you On Sat, Sep 10, 2016 at 5:30 PM, William Speirs wrote: > The @ symbol is reserved. > > On Sep 10, 2016 10:42 AM, "Philippe Mouawad" wrote: > > > Hello, > > Is this URL valid: > > http://localhost/IqGo6EM1JEVZ+MSRJqUSo@qhjVMSFBTs/37/0/1 > > > > For me it is, but > > org.apache.commons.

Re: Question about URLValidator#isValid

2016-09-10 Thread William Speirs
The @ symbol is reserved. On Sep 10, 2016 10:42 AM, "Philippe Mouawad" wrote: > Hello, > Is this URL valid: > http://localhost/IqGo6EM1JEVZ+MSRJqUSo@qhjVMSFBTs/37/0/1 > > For me it is, but > org.apache.commons.validator.routines.UrlValidator#isValid return false > for > it. > > My reference is:

Re: Question about Base64 encoding

2013-01-15 Thread Gert-Jan Schouten
Flushing it did not help, but closing it did! Thanks a lot! GJ Right here you need to flush() or close() your ObjectOutputStream before you harvest the bytes. yours, Julius On 15 January 2013 18:07, Julius Davies wrote: > On Mon, Jan 14, 2013 at 3:37 PM, Ge

Re: Question about Base64 encoding

2013-01-15 Thread Julius Davies
On Mon, Jan 14, 2013 at 3:37 PM, Gert-Jan Schouten wrote: > I'm converting it to a String, because in the end, I would like to send it > across the wire with HTTP. But I don't think that matters. If I leave out > the String and just pass baos.toByteArray() into the ByteArrayInputStream, > I get th

Re: Question about Base64 encoding

2013-01-14 Thread Gert-Jan Schouten
I'm converting it to a String, because in the end, I would like to send it across the wire with HTTP. But I don't think that matters. If I leave out the String and just pass baos.toByteArray() into the ByteArrayInputStream, I get the exact same result. On 14 January 2013 23:22, sebb wrote: > On

Re: Question about Base64 encoding

2013-01-14 Thread sebb
On 14 January 2013 23:03, Gert-Jan Schouten wrote: > Hello all, > > I'm doing some experimenting with Base64. I tried encoding an object and > then decoding it: > > Object object = "Foo"; > > //Encode object > ByteArrayOutputStream baos = new ByteArrayOutputStream(); >

Re: Question regarding scxmlgui tool

2012-07-05 Thread Rahul Akolkar
On Wed, Jun 20, 2012 at 4:22 AM, Nir Shemesh wrote: > Hi Apache Users, > > I need your help regarding my question below > See inline below. > Many thanks > > Nir > > > -- Forwarded message -- > From: Fabrizio Morbini > Date: Tue, Ju

Re: [jexl] RE: Question about checking for undefined properties versus null value properties

2012-05-01 Thread henrib
way jexl3 does. I'll start the release process soon to get at least 2.1.2 out. Regards, Henrib -- View this message in context: http://apache-commons.680414.n4.nabble.com/jexl-RE-Question-about-checking-for-undefined-properties-versus-null-value-properties-tp4600982p4601616.html Sen

[jexl] RE: Question about checking for undefined properties versus null value properties

2012-05-01 Thread Eric Gravel
Hi Henri, Your summary is dead on. I wanted to receive all JexlException that might be thrown. But the Interpreter doesn't always throw them; there's cases where they are only thrown when lenient == false. It's great to hear this is available in v3.x, however, I can't deploy snapshot libraries t

Re: Re: Question regarding visual scxml

2011-07-19 Thread Xun Long Gui
you can find the guide in our web site[1] [1] http://commons.apache.org/sandbox/gsoc/2010/scxml-eclipse/guide/using-visual-scxml.html 在 2011年7月19日 下午1:34, 写道: > Great, > > But how to i export to SCXML type - all i have is export the files and i > got them (model and diagram) in thier original fo

RE: Question.

2011-02-11 Thread Collins, Russell
rom: Haswell, Joe [mailto:josiah.d.hasw...@hp.com] Sent: Friday, February 11, 2011 3:20 PM To: Commons Users List Subject: RE: Question. Hi Nadia, In general, the various Commons releases maintain good backwards-compatibility with previous releases between major versions (e.g. 2.x -> 3.x). Mo

RE: Question.

2011-02-11 Thread Haswell, Joe
Hi Nadia, In general, the various Commons releases maintain good backwards-compatibility with previous releases between major versions (e.g. 2.x -> 3.x). Most of those projects will probably be in the latest major version, so keeping one jar on the classpath containing the latest version of th

Re: Question.

2011-02-11 Thread Gary Gregory
OSGi is designed to handle this. It is heavy handed and not for everyone. A cheaper solution is to keep application cleanly separated with their own lib directories. Gary On Feb 11, 2011, at 15:11, "Ayar, Nadia" wrote: > Hello Common Developers, > > > > In my department, we have java modu

RE: Question.

2011-02-11 Thread Martin Gainty
i usually stick to the saying "it it aint broke dont fix it .." apparently i am the only person that thinks time is better spent working on new features instead of changing old code.. developers who force refactoring of implementation code because someone decided to demote a String param or retu

Re: Question.

2011-02-11 Thread Farrukh Najmi
Using maven for dependency management of your project is a huge step in the right direction: http://maven.apache.org/ Maven typically will replace ant for build management and provide much more value beyond that. On 02/11/2011 03:09 PM, Ayar, Nadia wrote: Hello Common Developers, In

[dbcp] Re: Question about some further information

2009-09-07 Thread Phil Steitz
malte.kem...@de.equens.com wrote: > Hi, > > I guess it is a kind of a new bee question: > > I took a look at the configuration page ( > http://commons.apache.org/dbcp/configuration.html) > > Well there are really interesting parameters, but this table does not > really say where to put those par

Re: Question about FTPClient.sendCommand()

2009-06-02 Thread Steve Cole
ility to handle errors, perform tries or whatever exception handling you want. - Original Message - From: "Kevin Dougan" To: Sent: Tuesday, June 02, 2009 10:24 AM Subject: RE: Question about FTPClient.sendCommand() OK, I guess I can't take the simple approach after all...

RE: Question about FTPClient.sendCommand()

2009-06-02 Thread Kevin Dougan
OK, I guess I can't take the simple approach after all... :-( Thanks for all the help in figuring this out, everyone! :-) Cheers! Kevin kevindou...@hotmail.com > From: sc...@camsbycbs.com > To: user@commons.apache.org > Subject: Re: Question about FTPClient.sendCo

Re: Question about FTPClient.sendCommand()

2009-06-02 Thread Steve Cole
" + host2.getHostAddress()); } if (__dataTimeout >= 0) socket.setSoTimeout(__dataTimeout); return socket; } - Original Message ----- From: "Kevin Dougan" To: Sent: Tuesday, June 02, 2009 9:53 AM Subject: RE: Question about FTPClien

Re: Question about FTPClient.sendCommand()

2009-06-02 Thread sebb
dLine() method to the NET code - this could be requested as a JIRA enhancement. > > Thanks! > Kevin > kevindou...@hotmail.com > > > > From: sc...@camsbycbs.com > > To: user@commons.apache.org > > Subject: Re: Question about FTPClient.sendCommand() > > > Da

RE: Question about FTPClient.sendCommand()

2009-06-02 Thread Kevin Dougan
> From: sc...@camsbycbs.com > To: user@commons.apache.org > Subject: Re: Question about FTPClient.sendCommand() > Date: Tue, 2 Jun 2009 08:54:14 -0400 > > The sendCommand method requires the command and args to be passed as two > separate variables. > > I think the bigger issue i

RE: Question about FTPClient.sendCommand()

2009-06-02 Thread Kevin Dougan
is trying to do, then I am re-inventing the wheel again, and forcing myself to make coding changes whenever someone wants to use a new API method, or the FTP Server protocol changes to support some new command or feature. Thanks! Kevin kevindou...@hotmail.com > Date: Tue, 2 Jun 2

Re: Question about FTPClient.sendCommand()

2009-06-02 Thread Steve Cole
. You'll see everything else that needs to be done to actually store a file. - Original Message - From: "Kevin Dougan" To: Sent: Tuesday, June 02, 2009 8:38 AM Subject: RE: Question about FTPClient.sendCommand() Hi and thanks for your reply. I'll try and give an e

Re: Question about FTPClient.sendCommand()

2009-06-02 Thread sebb
e.txt > > ...pass the command along > > ...read next line from file: : : : > > ...pass the command along: : : : > > ...etc, etc > > > > > Thanks! > Kevin > kevindou...@hotmail.com > > > > > From: sc...@camsbycbs.com > > > To: user@c

RE: Question about FTPClient.sendCommand()

2009-06-02 Thread Kevin Dougan
ass the command along ...read next line from file: : : : ...pass the command along: : : : ...etc, etc Thanks! Kevin kevindou...@hotmail.com > From: sc...@camsbycbs.com > To: user@commons.apache.org > Subject: Re: Question about FTPClient.sendCommand() > Date: Tue, 2 Jun 2

Re: Question about FTPClient.sendCommand()

2009-06-02 Thread Steve Cole
I'm not sure if I understand what you're trying to accomplish. Are you sending FTP commands to the FTP server? If so, what command? Or are you trying to send operating system shell script commands? The FTP server is only going to accept commands it understands and supports, which is not the same a

Re: Question about TestUtils.chiSquare

2008-08-31 Thread Ted Dunning
I doubt that you really want a chi^2 test for this in any case. You could use it if you binned the amounts so that you are comparing counts, but you would only find out if there was a difference, not whether there was an interesting difference. Most likely, what you want is an unpaired, one-sid

Re: [math] Re: Question about TestUtils.chiSquare

2008-07-19 Thread Phil Steitz
Luc Maisonobe wrote: First of all, please prefix your message with the name of the commons sub-project in brackets when using this list. It is shared by many sub-projects and it helps people setting up filters for their topics of interest. Yannick a écrit : Hello, I'm wondering why the chi

[math] Re: Question about TestUtils.chiSquare

2008-07-18 Thread Luc Maisonobe
First of all, please prefix your message with the name of the commons sub-project in brackets when using this list. It is shared by many sub-projects and it helps people setting up filters for their topics of interest. Yannick a écrit : > Hello, > > I'm wondering why the chi-square test has this

RE: Question about reading book regarding to jakarta commons

2008-05-19 Thread Reginald.Javier
What particular project in Commons do you need? Have you tried searching the net for tutorials? You can also try this : http://www.oreilly.com/catalog/9780596007065/ Reginald Javier Software Engineer II, Strategic Customer Solutions Implementation T: +632-859-5442 -Original Message- Fr

Re: Question about reading book regarding to jakarta commons

2008-05-19 Thread Adrian Mitev
I have a book called - Jakarta Commons - online bookshelf - https://secure.manning.com/books/goyal On Mon, May 19, 2008 at 10:59 AM, Wabner, Thomas (EXT) < [EMAIL PROTECTED]> wrote: > Hi, > > > > can anybody give a hint, what books about jakarta commons good to read? I > have found follow books:

Re: question on copyProperties usage

2008-02-29 Thread Giovanni Azua
Many thanks Niall. Making the Bean public solves the problem, but shouldn't it work that way too? regards, Giovanni Niall Pemberton wrote: Try making SomeBean a public class Niall - To unsubscribe, e-mail: [EMAIL PROTE

Re: question on copyProperties usage

2008-02-29 Thread Niall Pemberton
On Fri, Feb 29, 2008 at 9:19 AM, Giovanni Azua <[EMAIL PROTECTED]> wrote: > hi all, > > I have not been able to have the following test case pass under 1.7 and 1.8. > > Here the list of trial-errors: > - Assigning to myMap property names starting upper case does not provide > any error as I wou