ftp over SSL 3.0 with commons net 2.0

2007-06-22 Thread matu. agarwal
I am trying to implement ftp over SSL 3.0 with commons net 2.0(not released) My server is FileZilla FTP server. It is working fine when I am allowing explicit SSL/TLS on normal connection in FileZilla Server but when I am enabling force explicit SSL/TLS then it is giving following error 530 Have

Digester - parsing nodes to generic type objects

2007-06-22 Thread Traut
Hi all I'm stuck trying to cast node to generic type. I have a class PairE,T. In my xml I have entries like size width=175 height=160/ and want to parse it to Pair BUT to PairInteger, Integer If I'll write digester.addObjectCreate(registry/size, Pair.class) Digester will cast width/height

Jelly question

2007-06-22 Thread Jose Correia
Hi all I'm trying to use jelly inside a maven reactor. When I iterate through a project.xml I have the following component: dependency groupIdtools/groupId artifactIdartifact/artifactId versionSNAPSHOT/version properties classloaderroot/classloader

RE: Jelly question

2007-06-22 Thread Jose Correia
Never mind, needed to use .getProperty(...) :) -Original Message- From: Jose Correia [mailto:[EMAIL PROTECTED] Sent: 22 June 2007 12:59 PM To: commons-user@jakarta.apache.org Subject: Jelly question Hi all I'm trying to use jelly inside a maven reactor. When I iterate through a

[commons-lang] elegant way to get version information from jar-filename

2007-06-22 Thread Wabner, Thomas (EXT)
Hi, I cannot find a nice way to get the version information from a jar filename with the help from commons-lang. I have a filename like commons-lang-2.1-SNAPSHOT.jar and will have follow information's: Basename: commons-lang Versionstr: 2.1-SNAPSHOT Any suggestions are very

RE: [commons-lang] elegant way to get version information from jar-filename

2007-06-22 Thread Jörg Schaible
Hi Thomas, Wabner, Thomas (EXT) wrote on Friday, June 22, 2007 2:52 PM: Hi, I cannot find a nice way to get the version information from a jar filename with the help from commons-lang. I have a filename like commons-lang-2.1-SNAPSHOT.jar and will have follow information's:

RE: [commons-lang] elegant way to get version information from jar-filename

2007-06-22 Thread Wabner, Thomas (EXT)
Hi Jörg, Many thanks for your answer! There should not basic support for this in c-l, but with the StringUtils/Charset and so on, I found it very complicated to achieve such problem ;-) ... with a regular expression it is easy ... so lets stop the discussion here ( I have currently a

commons-configuration

2007-06-22 Thread Wabner, Thomas (EXT)
Hi again, one question to PropertiesConfiguration. I add any properties with the #addProperty() method to my PropertiesConfiguration and later I save the configuration. Now I'am wondering about the save-file because it contains the same key more than once. The documentation of the

RE: [commons-lang] elegant way to get version information from jar-filename

2007-06-22 Thread Matt Benson
--- Jörg Schaible [EMAIL PROTECTED] wrote: Hi Thomas, Wabner, Thomas (EXT) wrote on Friday, June 22, 2007 2:52 PM: Hi, I cannot find a nice way to get the version information from a jar filename with the help from commons-lang. I have a filename like

Where can I download JXPath 1.3 ???

2007-06-22 Thread Mcduffey, Joe
Does anyone know how to download JXPath 1.3? I went to the Source Repository http://svn.apache.org/viewvc/jakarta/commons/proper/jxpath/trunk/ But I don't know how to get the release. Any ideas? Thanks.

Re: Where can I download JXPath 1.3 ???

2007-06-22 Thread Niall Pemberton
On 6/22/07, Mcduffey, Joe [EMAIL PROTECTED] wrote: Does anyone know how to download JXPath 1.3? I went to the Source Repository http://svn.apache.org/viewvc/jakarta/commons/proper/jxpath/trunk/ But I don't know how to get the release. Any ideas? Thanks. There is no official JXPath 1.3

Re: Where can I download JXPath 1.3 ???

2007-06-22 Thread Matt Benson
--- Niall Pemberton [EMAIL PROTECTED] wrote: On 6/22/07, Mcduffey, Joe [EMAIL PROTECTED] wrote: Niall, Thanks. Does anyone know when 1.3 will be available for official release? Always difficult to say in open source - the most recent thread on that is here:

Re: Where can I download JXPath 1.3 ???

2007-06-22 Thread Niall Pemberton
On 6/22/07, Mcduffey, Joe [EMAIL PROTECTED] wrote: Niall, Thanks. Does anyone know when 1.3 will be available for official release? Always difficult to say in open source - the most recent thread on that is here: http://tinyurl.com/22er8l Niall -Original Message- From: Niall

RE: Where can I download JXPath 1.3 ???

2007-06-22 Thread Mcduffey, Joe
Niall, Thanks. Does anyone know when 1.3 will be available for official release? -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Friday, June 22, 2007 12:11 PM To: Jakarta Commons Users List Subject: Re: Where can I download JXPath 1.3 ??? On 6/22/07,

Re: commons-configuration

2007-06-22 Thread Oliver Heger
Hello Thomas, Wabner, Thomas (EXT) wrote: Hi again, one question to PropertiesConfiguration. I add any properties with the #addProperty() method to my PropertiesConfiguration and later I save the configuration. Now I'am wondering about the save-file because it contains the same key more

[commons-configuration] Variable Syntax Conflict

2007-06-22 Thread Dave Westerman
I am using the commons-configuration for my property files. However, unfortunately, I have a need to have a value in some of my properties that look exactly like the variables that commons-config uses. myproperty=${myNonCommonsConfigVariable} I've tried to escape it thus:

Re: [commons-lang] elegant way to get version information from jar-filename

2007-06-22 Thread Kris Nuttycombe
I take it from your comment that you're still stuck using Java 1.3 or earlier and hence can't use java.util.regex? Kris On 6/22/07, Wabner, Thomas (EXT) [EMAIL PROTECTED] wrote: Hi Jörg, Many thanks for your answer! There should not basic support for this in c-l, but with the