RE: UUID Generator?

2003-12-15 Thread Tim Anderson
This question came up earlier this year. Refer to the following thread: http://nagoya.apache.org/eyebrowse/ReadMsg?listId=15msgNo=32065 -Tim -Original Message- From: Hernan Silberman [mailto:[EMAIL PROTECTED] Sent: Tuesday, 16 December 2003 10:33 AM To: [EMAIL PROTECTED] Subject:

RE: UUID Generator?

2003-12-15 Thread Tim Anderson
is located here: http://www.ietf.org/internet-drafts/draft-mealling-uuid-urn-01.txt -Tim -Original Message- From: Phil Steitz [mailto:[EMAIL PROTECTED] Sent: Tuesday, 16 December 2003 4:29 PM To: Jakarta Commons Developers List Subject: Re: UUID Generator? Tim Anderson wrote

RE: UUID Reuse proposal

2003-08-15 Thread Tim Anderson
Tyrex also provides support for UUID generation, and should perform better than the Axis impl. See http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/tyrex/tyrex/src/main/tyrex/se rvices/UUID.java?rev=1.6 -Tim -Original Message- From: Tim Reilly [mailto:[EMAIL PROTECTED] Sent: Friday, 15

RE: UUID Reuse proposal

2003-08-15 Thread Tim Anderson
with the tyrex base would probably be easier; but we could certainly just add the necessary features to the axis impl. Phil --- Tim Anderson [EMAIL PROTECTED] wrote: Tyrex also provides support for UUID generation, and should perform better than the Axis impl. See http

RE: [DBCP] cpdsadapter needs a Statement implementation

2003-07-06 Thread Tim Anderson
On the subject of logging, are there any plans to implement SQL traces? I have a hacked copy of dbcp which I used to help track down a deadlock. If there's any interest, I'll clean it up and submit it. Regards, Tim -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent:

RE: [DBCP] cpdsadapter needs a Statement implementation

2003-07-06 Thread Tim Anderson
Very cool - thanks for the link. -Original Message- From: Serge Knystautas [mailto:[EMAIL PROTECTED] Sent: Monday, 7 July 2003 2:31 PM To: Jakarta Commons Developers List Subject: Re: [DBCP] cpdsadapter needs a Statement implementation Tim Anderson wrote: On the subject

[attributes] support for multiple tags with the same name?

2003-06-02 Thread Tim Anderson
Hi, I'm tinkering with annotating my test cases with attributes for reporting purposes. In particular, I want to associate test cases with their corresponding requirements, where each test case can be associated with one or more requirements, e.g: /** * @requirement foo.req1 * @requirement

[patch][attributes][proposal] support for multiple tags with the same name

2003-06-02 Thread Tim Anderson
Hi, the attached patch for commons-attributes enables support for multiple tags with the same name e.g class Foo { /** * @mytag value1 * @mytag value2 */ public void someMethod() { } } These can be accessed via the new Attributes.getAttributes() methods e.g: Attribute[] a =

RE: [patch][attributes][proposal] support for multiple tags with the same name

2003-06-02 Thread Tim Anderson
Hmm - mailserver stripped the attachment out. Trying again, this time jarred up -Original Message- From: Tim Anderson [mailto:[EMAIL PROTECTED] Sent: Monday, 2 June 2003 9:58 PM To: [EMAIL PROTECTED] Subject: [patch][attributes][proposal] support for multiple tags with the same

RE: [CLI] new design possibly?

2003-02-06 Thread Tim Anderson
Not a critique on your design, but an RFE ;) One useful addition to CLI would be to be able to specify mutually exclusive sets of arguments, which contain common options. Eg: usage: org.apache.commons.sql.util.DDL commands commands: -execute -db db [-version version] db-props -schema path

RE: [betwixt] Are some testcases broken without failing?

2003-01-18 Thread Tim Anderson
The background to the TestElementsIO case can be found here: http://nagoya.apache.org/eyebrowse/BrowseList?[EMAIL PROTECTED] pache.orgby=threadfrom=291924 Regards, Tim -Original Message- From: Martin van den Bemt [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 19, 2003 2:45 AM To:

RE: [betwixt][BUG?] Destreaming custom collections using Hyphenated/DecapitalizeNameMapper?

2002-12-17 Thread Tim Anderson
implementations so i might have had difficulties replicate it otherwise. - robert On Sunday, December 15, 2002, at 11:13 PM, Tim Anderson wrote: Go for it. I didn't include the license out of laziness ;) -Original Message- From: robert burrell donkin [mailto:[EMAIL PROTECTED

RE: [betwixt][BUG?] Destreaming custom collections using Hyphenated/DecapitalizeNameMapper?

2002-12-15 Thread Tim Anderson
, December 14, 2002, at 10:31 AM, Tim Anderson wrote: Attached is a junit test case which reproduces the problem. Regards, Tim -Original Message- From: Tim Anderson [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 14, 2002 7:50 PM To: [EMAIL PROTECTED] Subject

[betwixt][BUG?] Destreaming custom collections using Hyphenated/DecapitalizeNameMapper?

2002-12-14 Thread Tim Anderson
Hi people, I am trying to destream some XML using betwixt into a class structure which looks like: public class Foos { // manages a collection of Foo public void addFoo(Foo foo) { ... } public Iterator getFoos() { } } public class Foo { // ... public void

RE: [betwixt][BUG?] Destreaming custom collections using Hyphenated/DecapitalizeNameMapper?

2002-12-14 Thread Tim Anderson
Attached is a junit test case which reproduces the problem. Regards, Tim -Original Message- From: Tim Anderson [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 14, 2002 7:50 PM To: [EMAIL PROTECTED] Subject: [betwixt][BUG?] Destreaming custom collections using Hyphenated

[betwixt][PATCH] XMLIntrospectorHelper

2002-12-14 Thread Tim Anderson
Hi, attached is a patch which removes a duplicate call to nodeDescriptor.setLocalName() in XMLIntrospectorHelper.createDescriptor() Regards, Tim XMLIntrospectorHelper.patch Description: Binary data -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

RE: [clazz] Naming

2002-10-28 Thread Tim Anderson
Some more alternatives: Meta class names: MetaClass, MetaField, MetaMethod. Instance class names: MetaObject, Field, Method Not attached to any of the above, but Clazz really grates with me :) my 2 bits, Tim From: Stephen Colebourne [mailto:scolebourne;btopenworld.com] Naming is always a

RE: [clazz] Naming

2002-10-28 Thread Tim Anderson
with the definition, which is that meta-foo is a description of foo and foo is an instance of meta-foo. For example, MetaObject would be Class. An example of a MetaClass would be the class java.lang.Class itself (not an instance thereof). - Dmitri - Original Message - From: Tim

RE: [jelly][PATCH] Fix for dynamic tag lib inheritance

2002-10-23 Thread Tim Anderson
now Tim, many thanks. (Sorry it took a little while to get to). James --- http://radio.weblogs.com/0112098/ - Original Message - From: Tim Anderson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 21, 2002 2:35 PM Subject: [jelly][PATCH] Fix for dynamic tag lib

[commons][sql] Write once, run anywhere support for DDL

2002-09-22 Thread Tim Anderson
Hi there, attached is a proposal for an extension to commons-sql which aims to provide 'Write once, run anywhere support for DDL (c)' - in theory at least :) Background -- In OpenJMS, we currently support a number of databases and get the odd request to support a few more. This