RE: [HttpClient] [PATCH] HttpMultiClient Catches IOException Twice

2002-09-22 Thread Elwin, Martin
> From: Adrian Sutton [mailto:[EMAIL PROTECTED]] > In HttpMultiClient (latest version in CVS) there is a catch > statement for > IOException followed by HttpException, however since > HttpException extends > from IOException there is no possible way the HttpException > catch clause can > be ac

cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient HttpMultiClient.java

2002-09-22 Thread jericho
jericho 2002/09/23 00:01:52 Modified:httpclient/src/java/org/apache/commons/httpclient HttpMultiClient.java Log: - Remove "HttpMultiClient Catches IOException Twice" Patched by "Adrian Sutton" <[EMAIL PROTECTED]> Thank you. Revision ChangesPa

[HttpClient] [PATCH] HttpMultiClient Catches IOException Twice

2002-09-22 Thread Adrian Sutton
In HttpMultiClient (latest version in CVS) there is a catch statement for IOException followed by HttpException, however since HttpException extends from IOException there is no possible way the HttpException catch clause can be activated. Since they both just throw the exception again anyway, th

Re: [commons] Reflection code

2002-09-22 Thread Henri Yandell
I got this put together over the weekend. It's very interesting. I got to use Dynamic Proxies for the first time, and adore them. So that could be dangerous :) It's probably grown a bit beyond a simple thing to throw into your reflection soup, so I'll continue to grow it a bit. Hen On Sat, 21

[VOTE] Commons Lang release 1.0

2002-09-22 Thread Henri Yandell
I'm proposing a vote for a 1.0 release of Commons Lang to be made. The difference from the b1 release may be seen at: http://www.generationjava.com/projects/vij/commons-lang.javadiff The changelog since then may be seen at: http://www.generationjava.com/maven/jakarta-commons/lang/commons-lang

Re: [lang] ready for a release

2002-09-22 Thread Henri Yandell
I've been handling this so far Robert, though Daniel Rall was going to do the release build. It's not as complicated as we were expecting though now, so I could also repeat the same steps I did for b1. [We didn't vote though, I volunteered and no one argued :) There was a period of a couple of w

Re: [CLI] nightly releases broken?

2002-09-22 Thread John Keyes
Hi Matthew, I don't know who is responsible for the nightly builds. Does anybody know who is responsible? -John K On Saturday, Sep 21, 2002, at 08:56 Etc/GMT, Matthew Firth wrote: > > It seems that the nightly builds for CLI (as downloadable from > http://jakarta.apache.org/builds/jakarta-com

Re: [commons] Reflection code

2002-09-22 Thread robert burrell donkin
FYI i've just committed a workaround for a reflection issue in methodutils. see thread starting http://marc.theaimsgroup.com/?l=jakarta-commons-user&; m=103251991107100&w=2 for more details. - robert On Sunday, September 22, 2002, at 10:35 AM, Stephen Colebourne wrote: > I took a brief look a

cvs commit: jakarta-commons/digester/src/java/org/apache/commons/digester package.html

2002-09-22 Thread rdonkin
rdonkin 2002/09/22 14:52:50 Modified:digester/src/java/org/apache/commons/digester package.html Log: Documented known reflection issue Revision ChangesPath 1.14 +17 -0 jakarta-commons/digester/src/java/org/apache/commons/digester/package.html Index: packag

cvs commit: jakarta-commons/beanutils/src/test/org/apache/commons/beanutils/priv PackageBean.java PublicSubBean.java

2002-09-22 Thread rdonkin
rdonkin 2002/09/22 14:45:35 Modified:beanutils/src/java/org/apache/commons/beanutils MethodUtils.java beanutils/src/test/org/apache/commons/beanutils MethodUtilsTestCase.java Added: beanutils/src/test/org/apache/comm

cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient URI.java

2002-09-22 Thread jericho
jericho 2002/09/22 12:21:59 Modified:httpclient/src/java/org/apache/commons/httpclient URI.java Log: - Fix a wrong computation for the getRawName method. Revision ChangesPath 1.2 +6 -6 jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/URI.java

cvs commit: jakarta-commons/httpclient/src/examples TrivialApp.java

2002-09-22 Thread jericho
jericho 2002/09/22 05:31:28 Modified:httpclient/src/examples TrivialApp.java Log: - Patch for HttpException inherited from URIException (that I introduced) (Other httpclient applications would have their own inherited exception and be simplified the programming style.)

Re: [commons] Reflection code

2002-09-22 Thread Geir Magnusson Jr.
On 9/22/02 5:35 AM, "Stephen Colebourne" <[EMAIL PROTECTED]> wrote: > I took a brief look at the velocity link and its mostly about introspection. > I will take a fuller look in a few days. > > The code for [lang] will be simple reflection helpers, not introspection. > However, the fact that you

Re: [commons] Reflection code

2002-09-22 Thread Stephen Colebourne
I took a brief look at the velocity link and its mostly about introspection. I will take a fuller look in a few days. The code for [lang] will be simple reflection helpers, not introspection. However, the fact that you want to do introspection differently from velocity shows to me that we need a

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang ObjectUtils.java

2002-09-22 Thread scolebourne
scolebourne2002/09/22 02:18:33 Modified:lang/src/java/org/apache/commons/lang/builder CompareToBuilder.java EqualsBuilder.java ToStringBuilder.java HashCodeBuilder.java ToStringStyle.java StandardToStringStyle.java

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/tags/ant AntTag.java

2002-09-22 Thread plynch
plynch 2002/09/22 02:16:49 Modified:jelly/src/java/org/apache/commons/jelly/tags/ant AntTag.java Log: o it is possible that an AntTag attribute may contain a composite expression. The old code simply called the toString on such an object which printed whatever the toString of the

Re: [configuration]

2002-09-22 Thread Stephen Colebourne
There's quite a bit of code here that could be useful. I tried to have a look at the [configuration] project in commons sandbox to compare, but didn't have the time to do it properly. I suggest you might like to produce a compare and constrast list for your version versus the current commons sandb

[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 ha