[Jelly] sql taglib Problems with greather than in sql

2005-01-14 Thread Harald Kuhn
Hi Paul, thanks for the really fast help, it does work fine now. Actually I do some really serious trying :) on the sql taglib at the moment. I have some performance problems and there seems to be some issue about database connection problems (i think, that it is about connections not beeing

[JXPath] unordered node-sets

2005-01-14 Thread Knut Wannheden
Dear JXPath users and developers, Some XPath expressions (e.g. //foo which uses the descendant axis), when applied to a Java object graph, can cause JXPath to traverse a vast number of objects, which potentially takes a lot of time. This is what happens when hasNext() or next() is called on the

Re: [Jelly] sql taglib Problems with greather than in sql

2005-01-14 Thread Paul Libbrecht
Harald, We love to hear about users, for sure ! But now sometimes it takes more time to fix bugs (this time was really a one line fix)! THe statements about closing the connection or not sounds like a possible bug for which I'd invite you to file an issue... With which database have you been

commons-logging 1.0.4 on bea weblogic 8.1 dependencies

2005-01-14 Thread lukas_oesterreicher
Hello. I just tried to upgrade to struts 1.2.6. This includes upgrading commons-logging from 1.0.3 to 1.0.4. Having done that I found a dependency problem: The Class org.apache.commons.logging.impl.Log4JCategoryLog is outdated and replaced with org.apache.commons.logging.impl.Log4JLogger. I

Re: [Jelly] sql taglib Problems with greather than in sql

2005-01-14 Thread Harald Kuhn
Paul, I know that certain kinds of bugs take more time thats why i was really happy that i got that bugfix so fast! I am using MS SQL Server 2000 SP3a on Windows XP SP2 with the MS JDBC Driver running on java 1.4.2_5. I do not know wether this is important but i do use eclipse 3.0 as

Re: [Jelly] sql taglib Problems with greather than in sql

2005-01-14 Thread Paul Libbrecht
Le 14 janv. 05, à 12:23, Harald Kuhn a écrit : I will try to create a reproduceable case for this connection issues (i had problems with this for a couple of times always when restarting the script after exeptions thrown during script execution). I wonder wether we should move this Topic to the

Re: [commons-validator] Problems with Javascript mask validation..plz Help!

2005-01-14 Thread Eric Giguere
Hi guys. Very good point. So, with all this, I guess there is now no way to define validation rules for a form but disabling the javascript side only for a single field (like the password in this case). Like Niall said, there is no way the engine could know that the Javascript should not be

[dbcp] website docs problem

2005-01-14 Thread Cox, Charlie
I get a forbidden error when trying to view the dbcp examples http://cvs.apache.org/viewcvs/jakarta-commons/dbcp/doc/ Charlie - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [dbcp] website docs problem

2005-01-14 Thread James Mitchell
That's because viewcvs was taken offline for a while. Apache infrastructure is working out some issues with respect to viewcvs and svn.stay tuned. -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: Cox,

RE: [betwixt] Collection property question

2005-01-14 Thread Jason Wood
I'm afraid I miss understood your original question and am not sure what the best approach is. Sorry J -Original Message- From: Matt Goodwin [mailto:[EMAIL PROTECTED] Sent: Thursday, January 13, 2005 5:12 PM To: Jakarta Commons Users List Subject: Re: [betwixt] Collection property

Re: [betwixt] Collection property question

2005-01-14 Thread Matt Goodwin
Thanks. It's really weird because the RSS example in the sample code works fine and my code is almost identical. Matt Jason Wood wrote: I'm afraid I miss understood your original question and am not sure what the best approach is. Sorry J -Original Message- From: Matt Goodwin

[Collections] Searching and filtering collections with Functors, Predicates, etc

2005-01-14 Thread Leandro Rodrigo Saad Cruz
Hi all. Can you give an example on how I could achieve this functionality with commons code : - Add/Remove an object to a collection : traverse the collection, perform and arbitrary test on its elements, then add/remove the object according to the results (e.g. no element with the same ID found)

Re: Help converting String to Timestamp

2005-01-14 Thread Kishore Senji
On Fri, 14 Jan 2005 11:17:59 -0600, Brad Balmer [EMAIL PROTECTED] wrote: I sent this to the wrong list at first by accident, so sorry about the cross post: I'm trying to convert a String into a Timestamp using: ConvertUtils.register(new SqlTimestampConverter(), Timestamp.class); try {

RE: Help converting String to Timestamp

2005-01-14 Thread Brad Balmer
Thanks. Looking at it for so long it looked normal to me. -Original Message- From: Kishore Senji [mailto:[EMAIL PROTECTED] Sent: Friday, January 14, 2005 12:01 PM To: Jakarta Commons Users List; [EMAIL PROTECTED] Subject: Re: Help converting String to Timestamp On Fri, 14 Jan 2005

Re: [Collections] Searching and filtering collections with Functors, Predicates, etc

2005-01-14 Thread Kishore Senji
Here is a simple example import org.apache.commons.collections.CollectionUtils; import org.apache.commons.collections.Predicate; import org.apache.commons.lang.builder.ToStringBuilder; import java.util.Collection; import java.util.ArrayList; public class TestCollections { private

[digester] internal object not populated

2005-01-14 Thread Matt Goodwin
Hi, I am trying to simply populate an object from xml, but while some properties on the object (statementDate - a String and agentStatementDetails - an arraylist of AgentStatementDetail objects) populate 2 others are not populated (agentInfo - an AgentInfo object and agentEarning - an

Re: [digester] internal object not populated

2005-01-14 Thread Wendy Smoak
From: Matt Goodwin [EMAIL PROTECTED] 2 others are not populated (agentInfo - an AgentInfo object and agentEarning - an AgentEarning object). Tentatively, because I don't have a lot of Digester experience... I see you create and populate the AgentInfo and AgentEarning objects, but I don't see

Re: [digester] internal object not populated

2005-01-14 Thread Matt Goodwin
Wendy, Thanks for taking the time to recreate and solve the problem. I won't get a chance to implement it until I go to work, but I'm positive that will solve my problem. Thanks a bunch, Matt Matt Goodwin [EMAIL PROTECTED] (515)708-0114 Transcending the Ordinary Wendy Smoak wrote: From: