Re: [io] DirectoryWalker scan order

2007-10-19 Thread Niall Pemberton
On 10/19/07, Adrian Herscu <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a test that depends on the scanning order of the > DirectoryWalker#walk method. The (or, my) problem with this method is > that it depends on the order of the file array returned by the > File#listFiles method which by defin

Re: $$$ [Digester] Converting String do java.util.Date $$$

2007-10-19 Thread Romualdo Rubens de Freitas
Simon, Thanks a lot, again. Best regards. 2007/10/19, simon <[EMAIL PROTECTED]>: > On Fri, 2007-10-19 at 17:10 -0300, Romualdo Rubens de Freitas wrote: > > Hi Simon, > > > > Thanks a lot for your quick answer. > > > > Yes, I was debugging Digester source code to see where my XML document was > >

Re: $$$ [Digester] Converting String do java.util.Date $$$

2007-10-19 Thread simon
On Fri, 2007-10-19 at 17:10 -0300, Romualdo Rubens de Freitas wrote: > Hi Simon, > > Thanks a lot for your quick answer. > > Yes, I was debugging Digester source code to see where my XML document was > failing and I've found that code at > org.apache.commons.beanutils.converters.DateTimeConverter

Re: $$$ [Digester] Converting String do java.util.Date $$$

2007-10-19 Thread Romualdo Rubens de Freitas
Hi Simon, Thanks a lot for your quick answer. Yes, I was debugging Digester source code to see where my XML document was failing and I've found that code at org.apache.commons.beanutils.converters.DateTimeConverter.convertToType() method. As I said that method has an if statement with the boolea

Re: $$$ [Digester] Converting String do java.util.Date $$$

2007-10-19 Thread simon
On Fri, 2007-10-19 at 16:14 -0300, Romualdo Rubens de Freitas wrote: > Hi All, > > I'm facing a problem with date conversion. My XML document has an element > whose > value has the format dd/MM/ (brazilian date format). When Digester > tries to convert > the value to a date I get an exception

$$$ [Digester] Converting String do java.util.Date $$$

2007-10-19 Thread Romualdo Rubens de Freitas
Hi All, I'm facing a problem with date conversion. My XML document has an element whose value has the format dd/MM/ (brazilian date format). When Digester tries to convert the value to a date I get an exception stating: 19/10/2007 16:05:31 org.apache.commons.beanutils.converters.DateTimeConve

[io] DirectoryWalker scan order

2007-10-19 Thread Adrian Herscu
Hi all, I have a test that depends on the scanning order of the DirectoryWalker#walk method. The (or, my) problem with this method is that it depends on the order of the file array returned by the File#listFiles method which by definition does not guarantee any particular order... My specif

Re: DBCP - Where does logAbandoned log?

2007-10-19 Thread Filip Hanik - Dev Lists
DBCP doesn't remove abandoned connections until you reach maxActive, so you need to set your maxactive to something low that you can hit pretty easily Filip Wm.A.Stafford wrote: Filip, Thanks for the reply. Here is my code: BasicDataSource ds = new BasicDataSource();

Re: DBCP - Where does logAbandoned log?

2007-10-19 Thread Wm.A.Stafford
Filip, Thanks for the reply. Here is my code: BasicDataSource ds = new BasicDataSource(); ds.setDriverClassName(bundle.getString("Driver")); ds.setUsername(bundle.getString("UserStr")); ds.setPassword(bundle.getString("PwdStr")); ds.setUrl( b