RE: [VFS] [PATCH] UrlFileObject.exists (when HTTP)

2003-05-29 Thread Adam Jack
You say this project is active, but I've not seen a VFS committer chime in. Apologies for that. I've been a little busier than I'd like recently. Any ideas how we entice one of them to work with us to help commit your/our work? Just keep hassling us

Re: [jxpath] Iterating using a/b//c//d[type='e']...

2003-05-29 Thread Dmitri Plotnikov
Christian, It's very important that you use the current nightly build. There is a check for loops in the graph. However, I don't think it is a 100% guarantee against infinite loops. If the upgrade to the current build does not solve the problem, let me know - we'll have to investigate further.

DBCP sample usage questions

2003-05-29 Thread Keith Veleba
Hello, I'm currently in the process of retrofitting an application that contains some database connection pooling. Unfortunately, scalability issues with the current custom pooling implementation have cropped up, forcing a rewrite of those pools. In my search, I discovered the DBCP and

Re: Help with digester

2003-05-29 Thread C F
Thanks for the helpful info. I had actually tried pretty much what you suggested but as your predicted, there were some issues with that. Anyway, I agree with you that explicit declarations would help here, but I'm trying to conform to a schema that has elements that allow mixed content

Re: Invalid Option Code: 91 (org.apache.commons.net.telnet.SimpleOptionHandler)

2003-05-29 Thread cthulhu
Well, i found a hack who solves it. I changed public static int NEW_ENVIRONMENT_VARIABLES = 39; to public static int NEW_ENVIRONMENT_VARIABLES = 100; in the TelnetOption class and now it works :) Shouldn't be there a better way to handle this? Marco cthulhu wrote: Hi, I'm absolutely new

[discovery] jdk 1.2.2 and websphere

2003-05-29 Thread Robert McIntosh
I seem to be running into trouble with discovery on an AS400 running jdk 1.2.2 and webspere 3.5.6. We are trying to deploy an Axis based web service which runs fine in WSAD (websphere 4.x) and Tomcat 4.1.x. It seems that class implementations are not being found even though they are in the

Digester - Write XML File

2003-05-29 Thread Matthew Pomar
I'm unable to access the archives from my work and appologize if this question is redundant... I understand that the Digester can be used to read an XML file and map to a document, but can the Digester then save the changes to the object back to the XML file? If not, does anyone have any

Re: Digester - Write XML File

2003-05-29 Thread Tim O'Brien
Matthew, You might want to take a look at Commons Betwixt - http://jakarta.apache.org/commons/betwixt/ Good luck. Tim On Wed, 2003-05-28 at 13:59, Matthew Pomar wrote: I'm unable to access the archives from my work and appologize if this question is redundant... I understand that the

Re: [lang] ToStringBuilder.reflectionToString() problem

2003-05-29 Thread Stephen Colebourne
Adding a method to ToStringStyle like: boolean includeReflectionField(Field f) would allow the style to control the output. It ought to work, but I haven't checked it. Maybe the same approach could be adapted to do the 'only output a field once' processing (avoiding infinite recursion).

RE: [lang] ToStringBuilder.reflectionToString() problem

2003-05-29 Thread Gary Gregory
These types of solution would 'fit' in the current framework in the sense of wedge-in I this feature but I do think that this causes the purpose of the builder and style classes to become muddled. Perhaps the more OO manner of dealing with this issue would be to create a ToStringBuilder subclass

Re: [Digester] - Read only methods

2003-05-29 Thread Simon Kitching
On Thu, 2003-05-29 at 07:27, Sloan Seaman wrote: I have a public void setActionMappingClass(String) that Digester does not call because the get is public Class getActionMappingClass() instead of a public String getActionMappingClass() Just seems odd that Digester would be so