Re: commons-fileupload dependency and CVE

2021-07-09 Thread Ralph Goers
Sorry, I hadn’t seen this response. Best practice is to include every dependency your application uses directly or transitively in the project’s parent pom.xml. That way you control the version of everything and aren’t dependent on other people’s stuff being upgraded. Ralph > On Jul 9,

Re: commons-fileupload dependency and CVE

2021-07-09 Thread Ralph Goers
FWIW, Libraries generally are compatible with newer versions for their dependencies, so long as the major version number doesn’t change. So you can mitigate this yourself by updating your application to use Commons IO 2.7 or later. Ralph > On Jul 9, 2021, at 4:11 AM, Daniel Wille wrote: >

Re: [validator] EmailValidator accept empty domain names

2015-10-25 Thread Ralph Goers
Please see VALIDATOR-376. I just committed the fix for this. FYI - commons-validator 1.4 does not have this behavior. Ralph > On Oct 22, 2015, at 12:05 AM, Sébastien De Nef > wrote: > > Hi everybody, > > First, sorry for my english. > > I tried the

Re: [configuration] Apache Commons Configuration Version 2

2015-05-11 Thread Ralph Goers
to a Roman bath. Phil On Sun, May 10, 2015 at 10:25 AM sebb seb...@gmail.com wrote: On 9 May 2015 at 21:07, Ralph Goers ralph.go...@dslextreme.com wrote: You can publish an alpha or a beta and still change the API. That really isn’t locked in until the first official GA release. In theory

Re: [configuration] Apache Commons Configuration Version 2

2015-05-09 Thread Ralph Goers
You can publish an alpha or a beta and still change the API. That really isn’t locked in until the first official GA release. Ralph On May 7, 2015, at 3:44 AM, sebb seb...@gmail.com wrote: Yes, it might cause a problem to publish an RC. Any publication to Maven Central effectively

Re: [commons-vfs] Need clarification for FileContent.getOutputStream(boolean) method..

2012-07-27 Thread Ralph Goers
That is confusing. The main documentation says nothing about append, yet the true/false flag implies that it should append. Ralph On Jul 27, 2012, at 6:00 AM, Gary Gregory wrote: Sounds like the API works as documented. Gary On Jul 27, 2012, at 8:52, vijayaratha vijayasingam

Re: [commons-vfs] Need clarification for FileContent.getOutputStream(boolean) method..

2012-07-27 Thread Ralph Goers
On Jul 27, 2012, at 11:04, Ralph Goers ralph.go...@dslextreme.com wrote: That is confusing. The main documentation says nothing about append, yet the true/false flag implies that it should append. Ralph On Jul 27, 2012, at 6:00 AM, Gary Gregory wrote: Sounds like the API works

Re: [commons-vfs] Need clarification for FileContent.getOutputStream(boolean) method..

2012-07-27 Thread Ralph Goers
could be better Gary On Jul 27, 2012, at 12:04, Ralph Goers ralph.go...@dslextreme.com wrote: I meant the javadoc for the method. It doesn't mention append. All it says is If the file does not exist, this method creates it, and the parent folder, if necessary. If the file does exist

Re: [vfs] does vfs webdav support https

2012-05-31 Thread Ralph Goers
Well darn. I keep thinking this should be as simple as using webdavs as the protocol but we never implemented a WebdavsFileProvider. Ralph On May 31, 2012, at 8:53 PM, Dan Tran wrote: Can somehone shows me an example on how to configure webdav:// url to use https? Thanks -D

Re: [vfs] Slow WebDAV

2012-03-30 Thread Ralph Goers
Did your profiling happen to tell you which Jackrabbit classes and methods were involved? Ralph On Mar 29, 2012, at 2:59 AM, Nicolas Delsaux wrote: Hi, i'm trying to use Commons-VFS WeBDAV filesystem in conjunction with a Glassfish WebDAV servklet (as I documented here :

Re: [vfs] webdav problem

2011-09-25 Thread Ralph Goers
/alfresco/webdav/test/1//D:href D:propstat D:prop D:resourcetype D:collection//D:resourcetype /D:prop D:statusHTTP/1.1 200 OK/D:status /D:propstat /D:response /D:multistatus 0 Thx -Mensaje original- De: Ralph Goers [mailto:ralph.go

Re: [vfs] webdav problem

2011-09-19 Thread Ralph Goers
An ArrayList containing what? Ralph On Sep 19, 2011, at 12:16 AM, Julián Cerviño Iglesia wrote: Hi all, I'm trying to use VFS2 to access a webdav server an replicate a folder structure. The problem is that the file system manager cannot determine the type of a remote folder. I debugged

Re: configuration --- get the properties object loaded after the delayed refresh

2011-09-08 Thread Ralph Goers
a simple framework without me doing the polling etc. Regards Sj On Sep 7, 2011, at 6:29 PM, Ralph Goers ralph.go...@dslextreme.com wrote: Even the listener is triggered by something retrieving a property. There is no thread doing polling. However, if you are using this with JBoss 5+ I'm

Re: configuration --- get the properties object loaded after the delayed refresh

2011-09-08 Thread Ralph Goers
framework without me doing the polling etc. Regards Sj On Sep 7, 2011, at 6:29 PM, Ralph Goers ralph.go...@dslextreme.com wrote: Even the listener is triggered by something retrieving a property. There is no thread doing polling. However, if you are using this with JBoss 5+ I'm not sure

[ANNOUNCE] Commons VFS 2.0 Released

2011-08-24 Thread Ralph Goers
The Apache Commons team is pleased to announce the release of Commons VFS 2.0 Details of the changes and bug fixes in this release can be found in the release notes: http://www.apache.org/dist/commons/vfs/RELEASE_NOTES.txt For information on Commons VFS please visit the VFS website:

Re: Commons Configuration: Using Reload Strategy

2011-05-15 Thread Ralph Goers
A static block is only going to be executed once when the class is first accessed. There is no way in Java that anything can modify the value of testMe after the class has been loaded. In fact, as coded, after the static block is executed testMe isn't even available any more. Ralph On May

Re: [Configuration] Problem in using FileChangedReloadingStrategy events ...

2011-02-15 Thread Ralph Goers
Yes, you've stumbled on one of the uglinesses of Commons Configuration. We should convert these to an Enum in the experimental branch. The particular event you encountered is defined in AbstractFileConfiguration. /** Constant for the configuration reload event.*/ public static final

Re: [configuration] How to edit a bean using apache.commons.configuration ....

2011-02-13 Thread Ralph Goers
Commons Configuration isn't meant to be a bean entity framework but a way for applications to access configuration data. Therefore it doesn't follow normal Java bean semantics. Although you could probably make it function as one I'd be surprised if it would be nearly as efficient as some of

Re: [vfs] - Problem with httpclient

2011-02-07 Thread Ralph Goers
The question I have is why this is flagged as vfs and isn't being asked on the httpclient mailing list? Ralph On Feb 7, 2011, at 8:12 AM, Ismael Marín Carrión wrote: Hi all, I would like to recall my question. Briefly, httpclient is not able to connect to a HTTP server, which has opened a

Re: [vfs] Where is version 1.1?

2011-02-07 Thread Ralph Goers
I wasn't aware that vfs snapshots were being built by us. Perhaps that happened before I started working on vfs. For my use at my employer I've been manually building 2.0 releases internally using the svn revision in the maven version. Ralph On Feb 7, 2011, at 2:16 PM, Rahul Akolkar wrote:

Re: [vfs] Version 2.0 In Apache Nexus

2011-01-12 Thread Ralph Goers
Several release candidates have been posted to the snapshot repository in the Apache Nexus. None were approved for release and so were dropped. Ralph On Jan 12, 2011, at 4:43 PM, Mark Fortner wrote: I saw an email message in December that indicated that Version 2.0 of VFS was in Apache

Re: Commons Configuration 1.7

2010-11-17 Thread Ralph Goers
On Nov 17, 2010, at 12:31 AM, Jörg Schaible wrote: Hi Patel, Patel, Ronak Avinash (US SSA) wrote: Any ideas when VFS will be released? I was under the impression that it was all patched and ready to go... It's actively worked on. Since it was not binary compatible to the last

Re: Commons Configuration 1.7

2010-10-20 Thread Ralph Goers
Message- From: Ralph Goers [mailto:ralph.go...@dslextreme.com] Sent: Monday, October 18, 2010 5:47 PM To: Commons Users List Subject: Re: Commons Configuration 1.7 What is the issue number? Did it have a patch with it? Ralph On Oct 18, 2010, at 5:39 PM, Patel, Ronak Avinash (US SSA

Re: Commons Configuration 1.7

2010-10-20 Thread Ralph Goers
Message- From: Ralph Goers [mailto:ralph.go...@dslextreme.com] Sent: Monday, October 18, 2010 5:47 PM To: Commons Users List Subject: Re: Commons Configuration 1.7 What is the issue number? Did it have a patch with it? Ralph On Oct 18, 2010, at 5:39 PM, Patel, Ronak Avinash (US SSA

Re: Commons Configuration 1.7

2010-10-18 Thread Ralph Goers
On Oct 18, 2010, at 12:47 PM, Oliver Heger wrote: Am 14.10.2010 02:02, schrieb Patel, Ronak Avinash (US SSA): Hi, I have a situation where I need to use the VFSFileMonitorReloadingStrategy class mentioned in this post: https://issues.apache.org/jira/browse/CONFIGURATION-202. However,

Re: Commons Configuration 1.7

2010-10-18 Thread Ralph Goers
by the FileObject#FileContent object. Last I remember, it still wasn't addressed. Thanks, Ronak Patel -Original Message- From: Ralph Goers [mailto:ralph.go...@dslextreme.com] Sent: Monday, October 18, 2010 5:36 PM To: Commons Users List Subject: Re: Commons Configuration 1.7

Re: [commons-configuration] About reloading and thread-safety

2010-09-29 Thread Ralph Goers
The work to make Commons Configuration thread safe is only in the latest version in trunk and so the documentation may not reflect that. We found that Combined Configurations were corrupted during reload and put in the effort to fix that. We never update the configurations in the application

Re: [VFS][SFTP] Unable to navigate to directory

2010-09-15 Thread Ralph Goers
What does ls show when in myappli? On Sep 15, 2010, at 4:53 AM, Nicolas Delsaux wrote: On Wed, Sep 15, 2010 at 12:52 PM, sebb seb...@gmail.com wrote: So 'data' is not a folder. Well ... it is, because Unfortunatly, a ls indicates that total 1 drwxr-xr-x 3 root root 72 Jan 25

Re: [VFS][SFTP] Unable to navigate to directory

2010-09-15 Thread Ralph Goers
So the data directory is a link to another mount. I'm not familiar with the SFTP code but my guess is there is something preventing it from following links. Ralph On Sep 15, 2010, at 7:45 AM, Nicolas Delsaux wrote: On Wed, Sep 15, 2010 at 4:11 PM, Ralph Goers ralph.go...@dslextreme.com

Re: [vfs] (trunk) webdav auth challenges not provided credentials

2010-09-09 Thread Ralph Goers
I will do my best, but I have been overwhelmed between work and family issues recently. Ralph On Sep 8, 2010, at 1:33 PM, David Hausladen wrote: I wonder if it'd be possible to get these two patches applied this week. I'd really appreciate it if you'd at least look at them and provide a

Re: [vfs] Does VFS already has support for FTPS (FTP over SSL)?

2010-09-07 Thread Ralph Goers
this patch? 2. When the new(FTPS patched) version of VFS will be released approximative? Because this patch in JIRA bug is there for more than a year(!) and it's not yet in the last version... Is it forgotten or what? Thanks in advance. Ralph Goers wrote: I would be happy

Re: [vfs] Does VFS already has support for FTPS (FTP over SSL)?

2010-08-09 Thread Ralph Goers
I would be happy to incorporate the patch but I don't have an environment to test this. The patch doesn't include a test either. If someone can apply the patch in their environment. create an FtpsProviderTestCase and verify that it works then I'll go ahead and apply this along with the test

Re: [VFS] Use commons vfs to copy files on Samba, Windows network shared drives and WebDAV

2010-06-21 Thread Ralph Goers
You are correct that in trunk webdav uses Jackrabbit and is no longer part of the sandbox. I would suggest looking at the logs on the server to see if it is providing any information. What software is providing the webdav support on the server? Ralph On Jun 21, 2010, at 12:00 AM, Trasca

Re: Null pointer exception while creating a XMLConfiguration object in a static method.

2010-05-11 Thread Ralph Goers
Can you try with the latest code in trunk? Ralph On May 11, 2010, at 9:50 AM, arja srinivasu wrote: Hi, I have been running into an issue while creating an xml configuration object from an xml file, I am using jdk 1.6.0_20 and commons-configuration-1.6.jar, similar code works when the

Re: [VFS] Trying To Use WebDAV

2010-04-28 Thread Ralph Goers
Are you using VFS 1.0? If so I recommend you get the latest source from https://svn.apache.org/repos/asf/commons/proper/vfs/trunk and build it. The webdav support in 1.0 was based on slide which has been retired. 2.0 uses Jackrabbit and does not require jdom. However, you will need to include

Re: [vfs] Putting a VFS behind a sftp server

2010-04-26 Thread Ralph Goers
Yes, VFS has support for sftp. I don't personally use the ftp or sftp providers but I know lots of other people do. However, your question has me confused. When you say I'd like VFS to be accesssible via sftp I'm not sure what you mean. VFS is a client layer that provides a File-like interface

Re: [vfs] Putting a VFS behind a sftp server

2010-04-26 Thread Ralph Goers
). Unfortunately, FTP isn't very secure, and FTPS can have issues when behind a firewall, so I'm looking for a similar solution where I can host an SFTP server which allows user to read/write to a VFS. Does that make more sense? Thanks for the quick response! On Apr 26, 2010, at 9:55 PM, Ralph

Re: [VFS] Invalid descendent file name $SYSNAME/dev.

2010-04-10 Thread Ralph Goers
malpani wrote: Rralph, Can you please tell me where i can find these patches for version 1.0 ? And when would the 2.0 version be released ? On Sat, Apr 10, 2010 at 1:28 AM, Ralph Goers ralph.go...@dslextreme.comwrote: So it looks like you are using VFS 1.0. Unfortunately, I've

Re: [Commons-VFS] low performance on small files

2010-04-10 Thread Ralph Goers
of CD path; LIST; CD back? Regards, Kirill -Original Message- From: Ralph Goers [mailto:ralph.go...@dslextreme.com] Sent: Wednesday, April 07, 2010 1:31 AM To: Commons Users List Subject: Re: [Commons-VFS] low performance on small files Your analysis sounds right

Re: [VFS] Invalid descendent file name $SYSNAME/dev.

2010-04-09 Thread Ralph Goers
What version of VFS are you using? The source line numbers below don't match what is in trunk. On Apr 9, 2010, at 12:26 AM, mayur malpani wrote: Hi , I am getting an exception saying invalid descendent name while traversing in a FTP server when trying to use the following code.

Re: [vfs] Facing issue while FTPing a file from Mainframe server using vfs -can someone help

2010-04-07 Thread Ralph Goers
AM, Ralph Goers ralph.go...@dslextreme.com wrote: I just replied to your message on the dev list but this is the more appropriate list anyway. IIUC you are running the application using VFS on a unix system and trying to FTP from the mainframe. Have you first tried it via the FTP command

Re: PropertiesConfiguration returning duplicate values from

2010-03-30 Thread Ralph Goers
The constructor called load once because you specified the file name. From what I can from the code every time you call load you are going to get another set of the properties. On Mar 29, 2010, at 2:56 PM, Allen, Justin wrote: Hi, I'm looking to get some insight on why I'm getting some

Re: How to use commons config in multiple VM environment

2010-03-25 Thread Ralph Goers
On Mar 25, 2010, at 6:55 AM, yogen wrote: Hi, I am using commons configuration in a multi process and multi vm environment. Today, we have one config per process and this leads to a overload of duplicate parameters and a nightmare to maintain. Does anyone have best practices on

Re: [vfs-trunk] webdav and ant tasks

2010-03-10 Thread Ralph Goers
I've never used the ant tasks myself, but it isn't clear to me that this has anything to do with them. Wikipedia at http://en.wikipedia.org/wiki/HTTP_302 says a 302 is a redirect. Jackrabbit uses HttpClient which may not follow the redirect. What are you using for a WebDav server? Do you have

Re: Commons-transaction abandoned?

2010-03-06 Thread Ralph Goers
I'm trying to understand what goals can't be met. Oliver is implying that none of it is possible, but I don't understand how it would be impossible to have transactional collections as the web page mentions. I agree that I would like to understand what the challenges are before closing it

Re: [VFS] Enabling passive mode for ftp

2010-02-09 Thread Ralph Goers
Currently, the only way to enable passive mode is by calling FTPFileSystemConfigBuilder's setPassiveMode method which is used when the FileSystem is created. Ralph On Feb 9, 2010, at 12:41 AM, Rajika Kumarasiri wrote: hi, How can I enable passive mode for a ftp client which use common-vfs ?

Re: [VFS] Error while running a ftp client

2010-02-08 Thread Ralph Goers
Try enabling debug logging. You should get a bit more information on the error. Ralph On Feb 8, 2010, at 12:12 AM, Rajika Kumarasiri wrote: hi, I was trying to test a ftp client. I ran the ChangeLastModificationTime client passing a ftp file as the argument. My argument was something similar

Re: HttpClient 4 MultipartEntity Form Parameter?

2010-02-02 Thread Ralph Goers
You might get a better response if you asked on the httpclient mailing list - see http://hc.apache.org/mail-lists.html. httpclient was made a top level project a few years ago. Ralph On Feb 2, 2010, at 1:08 AM, peter@gmx.net wrote: Hi, I need to include a form parameter in a

Re: [CONFIGURATION{ Re: Extending commons-configuration XML configuration definition issue

2010-01-24 Thread Ralph Goers
I had this same problem after I added support for ExprLookup. I found I couldn't configuration it with multiple varaibles since Commons Configuration's bean utilities didn't support collections. I added that support in commit 766914. In your example below, if configs is a Collection then both

Re: Http Client - Authentication Problem

2010-01-24 Thread Ralph Goers
You might get a better response if you asked on the httpclient mailing list - see http://hc.apache.org/mail-lists.html. httpclient was made a top level project a few years ago. Ralph On Jan 24, 2010, at 10:04 PM, Balakumar1982 wrote: I am stuck with uncommon problem. I need to post a file

Re: files system transactions

2010-01-09 Thread Ralph Goers
On Jan 9, 2010, at 8:51 AM, David J. M. Karlsen wrote: Oliver Zeigermann skrev: Hi Gustavo! 2007/11/27, Gustavo De Simone gustavo.desim...@intotum.com: First, is there a way to make directory operations transactional in version 1.2 ? No. Second, when is planned to be

Re: Commons Configuration for i18n

2010-01-05 Thread Ralph Goers
Funny you should ask. This is on my list of things to do and I have a meeting on my calendar for later in the week to discuss this for one of our projects. Basically, Commons Configuration provides a great foundation because of the way it can interpolate variables. Typical I18N implementations

Re: [VFS] sftp upload fails with permission denied error while setting the last updated timestamp

2009-11-20 Thread Ralph Goers
. Thanks, Bhaskar -Original Message- From: Ralph Goers [mailto:ralph.go...@dslextreme.com] Sent: Wednesday, November 18, 2009 11:44 AM To: Commons Users List Subject: Re: [VFS] sftp upload fails with permission denied error while setting the last updated timestamp I know

Re: VFS: Release 1.1

2009-11-11 Thread Ralph Goers
On Nov 11, 2009, at 9:47 AM, Ayasse, Mark wrote: Will there be a release of VFA beyond 1.0 ? The next release of VFS will be 2.0. Ralph - To unsubscribe, e-mail: user-unsubscr...@commons.apache.org For additional

[VFS] Re: How to create file with samba vfs?

2009-11-10 Thread Ralph Goers
What version of VFS are you using? I would suggest you check out trunk and try that. On Nov 10, 2009, at 4:17 PM, geek.shrek wrote: Hi, I'm trying to build some functions for samba, such as create file, delete, etc. I can read a file from my samba, but when I tried to create or delete I

Re: [configuration] Re: Loading proeprteis according local

2009-11-04 Thread Ralph Goers
I have been considering either adding something to commons configuration, but more probably creating a new project to do this (or repurposing commons i18n). The idea is that you want to have XML files that contain internationalized message text. XML because it has a proper way of

Re: [Commons-VFS] development activity

2009-10-26 Thread Ralph Goers
On Oct 26, 2009, at 11:09 AM, Kirill Safonov wrote: Hi, What is the current status of the Commons VFS project? Is it under development? In particular, should one expect any response on the reported (major!) issues or even fixes? Are there any plans on 2.0 release? There are a small

Re: [CONFIGURATION] Create configuration out of XML String

2009-10-08 Thread Ralph Goers
On Oct 8, 2009, at 4:08 AM, Gaurav Upadhyay wrote: I have a xml string and need to use commons configuration with it. How can i create a configuration on it? Example: String test = ?xml version=\1.0\ encoding=\utf-8\?usernamefirstnameTom/firstname lastnameJay/lastname/username and i just

Re: Query about CONFIGURATION-390, a threading problem in commons-configuration reloading

2009-09-26 Thread Ralph Goers
On Sep 25, 2009, at 12:39 PM, Oliver Heger wrote: Stephen and Sherry Kinser schrieb: What's the activity on resolving CONFIGURATION-390? I see it's slated to be fixed in 1.7, but how likely is that to happen? This threading issue is killing me. I'd rather not have to synchronize every

Re: Format XML output for Configuration

2009-09-24 Thread Ralph Goers
On Sep 24, 2009, at 10:51 AM, Pär Dahlberg wrote: Hi I got a Commons Configuration question. Is there some easy way to format the XML output from an XMLConfiguration? Reading a config file and saving it works very well. However each time the file is saved a couple of empty lines are

Re: the Commons Configuration problem

2009-09-23 Thread Ralph Goers
On Sep 23, 2009, at 7:28 PM, maven apache wrote: Hi: I found the Commons Configuration can do most of read configuraion job for me ,so I want to have a try. But I am not sure the Commons Configuration how to read the file(for example a xml file), is it a Singleton? Since if not, I think I

Re: [CONFIGURATION] Help with optional XML file in override section of configuration builder.

2009-09-16 Thread Ralph Goers
On Sep 16, 2009, at 4:37 AM, Martin Ritchie wrote: Oliver, Thanks for the pointer to use DefaultConfigurationBuilder. Whilst this now does not need to have the test.config property defined or the file existing it does behave differently to the older ConfigurationFactory. With the

Re: [Configuration]JEXL question

2009-08-29 Thread Ralph Goers
On Aug 29, 2009, at 6:33 AM, rzo wrote: Hello, thanks for mentioning jexl scripting. I tried it out and have found the following issue: evaluating the following: test=${expr:if (System.getProperty(user.home).startsWith(C)) {x;} else {z;}} does not seem to work. Debuging shows that the

Re: [Configuration]JEXL question

2009-08-29 Thread Ralph Goers
On Aug 29, 2009, at 10:35 AM, Ralph Goers wrote: On Aug 29, 2009, at 6:33 AM, rzo wrote: Hello, thanks for mentioning jexl scripting. I tried it out and have found the following issue: evaluating the following: test=${expr:if (System.getProperty(user.home).startsWith(C)) {x;} else {z

Re: [Configuration]JEXL question

2009-08-29 Thread Ralph Goers
on jira. - Ron Ralph Goers wrote: On Aug 29, 2009, at 10:35 AM, Ralph Goers wrote: On Aug 29, 2009, at 6:33 AM, rzo wrote: Hello, thanks for mentioning jexl scripting. I tried it out and have found the following issue: evaluating the following: test=${expr:if (System.getProperty

[VFS] Minimum Java version

2009-08-19 Thread Ralph Goers
Currently the minimum Java version for VFS 2.0 is 1.4. VFS 2.0 has not been released and the developers are considering making the minimum version JDK 5. We are interested in getting feedback from the community however before this change is made. So please respond with your thoughts on

Re: [VFS] Minimum Java version

2009-08-19 Thread Ralph Goers
The packages haven't been changed so far. But this would definitely have to be considered whether we would want to take on the package renaming right now. The minimum JDK for 1.0 was 1.3, although it isn't clear that that was correct. The minimum JDK for 2.0 has already been changed to 1.4

Re: [VFS] Minimum Java version

2009-08-19 Thread Ralph Goers
On Aug 19, 2009, at 7:18 AM, Ralph Goers wrote: Currently the minimum Java version for VFS 2.0 is 1.4. VFS 2.0 has not been released and the developers are considering making the minimum version JDK 5. We are interested in getting feedback from the community however before this change

Re: [VFS] Minimum Java version

2009-08-19 Thread Ralph Goers
The maven group id for 2.0 is currently org.apache.commons. It was commons-vfs for VFS 1.0, so it would already be possible to have both jars simultaneously. So if the package names are not changed then the pom needs to be changed to use commons-vfs as the groupId before 2.0 is formally

Re: [VFS] Minimum Java version

2009-08-19 Thread Ralph Goers
On Aug 19, 2009, at 9:22 AM, Gary Gregory wrote: -Original Message- From: Niall Pemberton [mailto:niall.pember...@gmail.com] Sent: Wednesday, August 19, 2009 7:40 AM To: Commons Users List Subject: Re: [VFS] Minimum Java version On Wed, Aug 19, 2009 at 3:34 PM, Ralph

Re: [Configuration]VFSFileSystem

2009-08-18 Thread Ralph Goers
On Aug 18, 2009, at 12:58 AM, rzo wrote: Ralph, I have now had the time to build the configuration project from trunk/head and to test your changes. It now works as expected. I am currently not able to test the proxy settings. I will get back to you with these test results later.

Re: [collections] Composable Map?

2009-08-12 Thread Ralph Goers
Is there something wrong with using java.util.Properties? Just do Properties defaults = new Properties(); . . Properties map = new Properties(defaults); Ralph On Aug 11, 2009, at 7:01 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 All, I have a need for the

Re: [VFS] Re: Set the transfer mode to ASCII in a file system

2009-08-06 Thread Ralph Goers
On Aug 6, 2009, at 1:16 AM, Jörg Schaible wrote: Ralph Goers wrote at Dienstag, 4. August 2009 17:28: You're welcome. I would suggest opening a Jira issue on this and providing some suggestions on how you would like it to behave. This is VFS-182 and a patch is available ;-) Oh, cool

Re: [Configuration]VFSFileSystem

2009-08-05 Thread Ralph Goers
On Aug 5, 2009, at 10:08 AM, r...@gmx.de wrote: Ralph, sorry for the delayed answer and thanks for your fast response. I am quite busy lately and have not had the time to check your new version. I have however patched the class, so that it works for me. Attached is a copy of my code.

Re: [VFS] Re: Set the transfer mode to ASCII in a file system

2009-08-04 Thread Ralph Goers
You're welcome. I would suggest opening a Jira issue on this and providing some suggestions on how you would like it to behave. Ralph On Aug 4, 2009, at 7:31 AM, arenger wrote: Thanks for your answer. Ralph Goers wrote: Looking at the code setFileType is only being set

Re: [Configuration]VFSFileSystem.locateFromUrl does not use options

2009-07-23 Thread Ralph Goers
I believe I fixed this. Could you please check it out and try it? Ralph On Jul 14, 2009, at 12:10 PM, rzo wrote: Hello, VFSFileSystem.locateFromUrl does not use the options, set through the FileOptionsProvider. This results in errors when loading files where http access requires

Re: common vfs

2009-05-08 Thread Ralph Goers
? Thanks, Trin From: Ralph Goers [ralph.go...@dslextreme.com] Sent: Thursday, May 07, 2009 7:05 PM To: Commons Users List Subject: Re: common vfs Yes. I am actively working on it. I have some final tasks that I am finishing up in the webdav support

Re: [Commons Configuration] Saving a CombinedConfiguration with ViewNodes

2009-05-08 Thread Ralph Goers
, and it is indeed now saving the file successfully. Do you know of any possible workarounds with version 1.6 release? Thanks again, Jonathan On Thu, May 7, 2009 at 7:14 PM, Ralph Goers ralph.go...@dslextreme.com wrote: Actually, I take it back. I think I already fixed this. Can you check out

Re: common vfs

2009-05-07 Thread Ralph Goers
Yes. I am actively working on it. I have some final tasks that I am finishing up in the webdav support. Then the issues with regard to findbugs problems should be addressed. I would like to address as many of the checkstyle errors as possible but I may not complete that. Finally, I will

Re: Hello there

2009-04-08 Thread Ralph Goers
There is only one general list. Posts are supposed to prefix the subject with the specific project, such as [email] - I hate spam or [EMAIL] - send me more. This makes it fairly easy to ignore the ones you aren't interested in. I wouldn't suggest filtering as occasionally someone forgets

Re: [Configuration] CombinedConfiguration reloading issue in conjunction with SubnodeConfiguration

2009-03-06 Thread Ralph Goers
I don't see an attachment. Can you open a Jira and attach the test case there? Ralph On Mar 6, 2009, at 1:05 AM, Paul Meyer wrote: Hey *, I'm currently having an issue with the CombinedConfiguration. I would be very grateful if someone could have a look at the problem. I'm not sure if

Re: does vfs use jackrabbit for webdav?

2009-02-11 Thread Ralph Goers
The trunk branch of VFS is using Jackrabbit. Ralph On Feb 11, 2009, at 12:30 AM, Matthias Haider wrote: Hi, Does apache vfs still use slide for webdav access or did jackrabbit replace slide there? br, Matthias - To

Re: Cannot connect to a webDAV server

2009-02-10 Thread Ralph Goers
builded a new jar file and am using that but still the same error message. Also, I cant locate the provider.xml in the jar file. do I need to modify the ant target so that providers.xml gets included? Any suggestions? Ralph Goers wrote: Please update your source and see if it works now

Re: Cannot connect to a webDAV server

2009-02-04 Thread Ralph Goers
Please update your source and see if it works now. Ralph On Feb 1, 2009, at 8:25 PM, Manish Saroha wrote: Hi All, I am new to webDAV and trying to connect to a webDAV server using the commons VFS. Checked out the source code and builded the *commons-vfs-2.0- SNAPSHOT.jar *using the ant

Re: Log4j - Logging a single method

2009-01-15 Thread Ralph Goers
You'd probably get a better answer on a log4j list. If you have the ability to modify the source then I would just have that method get its own Logger. On Jan 15, 2009, at 11:00 AM, Hernán Pablo Leandro Seoane wrote: Hi everyone, I'm trying to configure Log4j so that the output of the

Re: [VFS] File names are NOT case sensitive on Windows

2009-01-12 Thread Ralph Goers
On Jan 12, 2009, at 5:15 AM, Schuster, Stephan (Wilken GmbH) wrote: Hi together, I just encountered the following problem with Commons VFS on Windows: FileSystemManager fsManager = VFS.getManager(); FileObject fo1 = fsManager.resolveFile(c:\\test.txt); // lower case FileObject fo2 =

Re: [CONFIGURATION] need help with DefaultConfigurationBuilder and CombinedConfiguration

2008-12-18 Thread Ralph Goers
First, why not do bean id=configurationBuilder class=org.apache.commons.configuration.DefaultConfigurationBuilder property name=fileName value=test-config-xml.xml/ /bean bean id=appConfig factory-bean=configurationBuilder factory- method=getConfiguration/ Then declare your component to

Re: Commons Configuration - XML Layout

2008-11-19 Thread Ralph Goers
Did anyone create a Jira issue for this? If not, please do. Ralph Brian Boyle wrote: Thanks Christian for your quick response. I'll give that a try. Cheers, Brian On Wed, Nov 19, 2008 at 2:17 PM, Christian Migowski [EMAIL PROTECTED]wrote: Hi Brian, i asked the same some time ago and

Re: [Configuration] Call me a moron, but I just can't make it work!

2008-07-14 Thread Ralph Goers
Your problem is that you are searching for the value of an element, not the element name, i.e. there are no elements named SndwichFillings, Dictionary or SidebarTitle. Your element names are all named key. I can never remember how to filter based on the value of an element of a key using the

Re: JDK 1.4 EOL date is October

2008-07-02 Thread Ralph Goers
You should keep in mind that the EOL date is only if you don't have paid support from Sun. If you do, Java 1.4 is supported for a long, long time. Also, Java 1.5 EOL isn't all that far away. Brosnan, Michael wrote: The date for JDK 1.4 bing EOL is October 2008, see

Re: Strange performance issues seen with Log.isDebugEnabled()

2008-06-26 Thread Ralph Goers
Jean-Philippe Daigle wrote: Hi, I'm seeing some very strange performance issues around the use of commons logging, and I'm pretty much out of ideas at this point. (Long) explanation follows... snip I suggest getting a copy of YourKit and profiling the application. Unfortunately, with