[exec]

2011-02-25 Thread Martinov, Nickolay
Hello, According to doc found on ASF infrastructure page ("Users should report issues and ask questions to the appropriate project first though the appropriate mailing list.") I ask for help here. I cannot login into Apache JIRA. It tells that: You do not have a permission to log in. If you thi

RES: [cli] Example using of option with two mandatory arguments

2011-02-25 Thread Henrique Seganfredo
Hello Emmanuel, I´ve been trying to to this: Option db1topkds = OptionBuilder .hasArgs(5) .create("db1topkds"); When I execute the app without any option, help is displayed like this: MyApp v.1.0 (c) 2011 usage: MyApp -db1topkds Why is not showing somet

[ANN]VTD-XML 2.10

2011-02-25 Thread Jimmy Zhang
VTD-XML 2.10 is now released. It can be downloaded at https://sourceforge.net/projects/vtd-xml/files/vtd-xml/ximpleware_2.10/. This release includes a number of new features and enhancement. * The core API of VTD-XML has been expanded. Users can now perform cut/paste/insert on an empty element.

Re: [configuration] Basepath not set with DefaultConfigurationBuilder/ConfigurationBuilderProvider

2011-02-25 Thread Oliver Heger
Hi Mike, Am 24.02.2011 16:04, schrieb Mike Noordermeer: Hi, I've an issue with the DefaultConfigurationBuilder, and I'm wondering if I'm doing something wrong or if it's a bug. I've the following structure: /WEB-INF/config/defs/def-1.xml /WEB-INF/config/defs/def-2.xml /WEB-INF/config/config1.

[Sandbox][Digetser3] Meet the Sandbox Digester3, it could worth the value!

2011-02-25 Thread Simone Tripodi
Hi all commons-users, during my spare time I started reimplementing a new version of Digester - I lazily called Digester3[1] - focused few concepts: * A universal loader (core & extensions are loaded in the same way); * Reusability of Digester configurations; * Rules are now expressed via fluen

Re: [Net] problem with listFiles(String pathname)

2011-02-25 Thread Francesco Fazzini
Hi Christian, thanks. Yes i need to enable the passive mode locally. ftpClient.enterLocalPassiveMode(); Yesterday i tried to enable it(as i wrote in the first email),but i did it in a wrong position. Sorry. Thanks to all. Regards, Francesco 2011/2/25 Christian Migowski : > Hello, > > I don't kn

Re: [Net] problem with listFiles(String pathname)

2011-02-25 Thread Christian Migowski
Hello, I don't know anything about commons-net ftp, but the cause for this behaviour is in the log you've sent: PORT 172,22,69,22,193,11 200 PORT command successful. LIST FILE_NAME 550 Cannot connect to {IP_ADDRESS} - timed out. Your windows has a firewall activated which is blocking the incomin

Re: [Net] problem with listFiles(String pathname)

2011-02-25 Thread Francesco Fazzini
My problem is not the runtime exception handling, that file exists and the size of this array should be always 1, wherever i run my client. Now if i run it on a Unix server the size is 1, if i run it from my pc(wndows) i get an empty list. 2011/2/25 Martin Gainty : > > FTPFile[] ftpFiles=ftpClien

RE: [Net] problem with listFiles(String pathname)

2011-02-25 Thread Martin Gainty
FTPFile[] ftpFiles=ftpClient.listFiles(fileName);if(ftpFiles.length==0) { //ABORT!!! } Martin __ Verzicht und Vertraulichkeitanmerkung Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um ein

Re: [Net] problem with listFiles(String pathname)

2011-02-25 Thread Francesco Fazzini
2011/2/24 sebb : > On 24 February 2011 18:12, Francesco Fazzini wrote: >> Dear all, >> >> i need to retrieve metadata informations(FTPFile) from a specific file. >> This snippet of code I am using works fine in Unix, but not in my >> local machine(Windows). > > Are you targeting the same ftp serve