Re: [dbutils] public access to ResultSetHandler

2003-02-21 Thread Juozas Baliuka
It is not good idea to use dbutils at this time, forke source code if you need something like this and can not to wait. I always do this with sandbox components and have no problems to use and integrate them later. > "Juozas Baliuka" <[EMAIL PROTECTED]> writes: > > > It will be public if we will

Re: [dbutils] public access to ResultSetHandler

2003-02-21 Thread Juozas Baliuka
Ok, It can be public. Idea to "hidde" connection in static method is not very good. It is better to implement some class with instance methods and "ConnectionFactory" in constructor and delegate sql execution to dbutils. I always map connetion/transaction to Thread it works very good for me in two

RE: [DBCP] getConnection with credentials unsupported

2003-02-21 Thread ARPON Martín TECSIS
Ok, I see the point. What about checking if the passed credentials are the same as the ones we 're are creating connections with and in that case return a connection and in others throw an exception ? -Original Message- From: PUB: Craig R. McClanahan [mailto:[EMAIL PROTECTED] Sent: Frid

Re: [Logging] Internationalization enhancement proposal

2003-02-21 Thread Costin Manolache
Andrew McConnell wrote: > I miss your point about different styles of ResourceBundles. Can you > elaborate? If you pass in the key - the logger is expected to locate the bundle and do the substitution. How do you specify where is the key stored ( which resource bundle ) ? And AFAIK not everyone u

Re: HTTPClient Feature Patch

2003-02-21 Thread Jeffrey Dever
Thoralf Rickert wrote: Hi! I'm not subribed to the list, so please make a CC to my address... I'm working on a small WebDAV application based on the org.apache.webdav library. For user feedback it is necessary to know how many bytes a Put request has already finished (0%...25%...50%...75%..

Re: HTTPClient Feature Patch

2003-02-21 Thread Jeffrey Dever
This is a good idea, particularly for updating a JProgressBar. Can you please bring this up on the [EMAIL PROTECTED] mailing list? Thoralf Rickert wrote: Hi! I'm not subribed to the list, so please make a CC to my address... I'm working on a small WebDAV application based on the org.apache.

[PATCH][DBCP] Adding a unit test for PoolingDataSource

2003-02-21 Thread Russ Milliken
There is no unit test for PoolingDataSource, so here's one (along with patch to the driver suite, TestAll). Enjoy! -Russ Index: src/test/org/apache/commons/dbcp/TestAll.java === RCS file: /home/cvspublic/jakarta-commons/dbcp/src/tes

[PATCH] [DBCP] Support for other default Connection properties

2003-02-21 Thread Russ Milliken
The attached patch provides support for the three currently unsupported Connection properties ("catalog", "transaction isolation", and "type map"). To keep backwards compatability, the defaults for these newly-supported properties are only used if explicitly set by the client. Thus, the hard-code

Re: [dbutils] public access to ResultSetHandler

2003-02-21 Thread Henri Yandell
I'm happy to make this public in the current development version of dbutils. This is partly because I believe any unreleased software has the right to go and utterly change it in the future, so the users are accepting that risk [not as if forking a private version of dbutils is going to be stunnin

Re: [dbutils] public access to ResultSetHandler

2003-02-21 Thread george stewart
"Juozas Baliuka" <[EMAIL PROTECTED]> writes: > It will be public if we will not find better ways to handle resultsets. Thanks very much for your answer. I'll be watching your changes. Making some interface public and the ability to fill collections would handle 95% of our work. I've been look

DO NOT REPLY [Bug 17301] New: - NPE in Oracle driver when using DBCP PoolingDataSource

2003-02-21 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: jakarta-commons-sandbox/daemon/src/native/nt/procrun procgui.c procrun.c procrun.h procrun.rc procrun.vcproj

2003-02-21 Thread mturk
mturk 2003/02/21 13:07:24 Modified:daemon/src/native/nt/procrun procgui.c procrun.c procrun.h procrun.rc procrun.vcproj Log: Added nice About box for WINAPP mode. Revision ChangesPath 1.4 +126 -10 jakarta-commons-sandbox/daemon/src/native

cvs commit: jakarta-commons-sandbox/daemon/src/native/nt/procrun jakarta-banner.bmp License.rtf

2003-02-21 Thread mturk
mturk 2003/02/21 13:06:09 Added: daemon/src/native/nt/procrun jakarta-banner.bmp License.rtf Log: Banner and ASF licence for about box. Revision ChangesPath 1.1 jakarta-commons-sandbox/daemon/src/native/nt/procrun/jakarta-banner.bmp <>

cvs commit: jakarta-commons-sandbox/daemon/src/native/nt/procrun/bin procrunw.exe tomcatw.exe

2003-02-21 Thread mturk
mturk 2003/02/21 13:05:18 Modified:daemon/src/native/nt/procrun/bin procrunw.exe tomcatw.exe Log: New builds with About box. Revision ChangesPath 1.8 +216 -57 jakarta-commons-sandbox/daemon/src/native/nt/procrun/bin/procrunw.exe <> 1.3

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

2003-02-21 Thread mbecke
mbecke 2003/02/21 05:48:09 Modified:httpclient/src/java/org/apache/commons/httpclient HttpMethodBase.java HttpClient.java Log: Fixed a bug where an HttpConnection could be lost. If an exception occurred between the point when a connection was retrieved and

Re: Not sure how active the VFS project is ...

2003-02-21 Thread Rob Walker
I probably won't get time to look at VFS much more just at present. I'll double check internally that I can send you the sources for our "plug in" JFileChooser pieces. They're parts of a commercial project, but in themselves they're fairly self contained and not "core". We're active in quite a

HTTPClient Feature Patch

2003-02-21 Thread Thoralf Rickert
Hi! I'm not subribed to the list, so please make a CC to my address... I'm working on a small WebDAV application based on the org.apache.webdav library. For user feedback it is necessary to know how many bytes a Put request has already finished (0%...25%...50%...75%...100%) (especially for big

Re: [Logging] Internationalization enhancement proposal

2003-02-21 Thread Andrew McConnell
On Fri, 2003-02-21 at 11:05, Costin Manolache wrote: > Adding 24 methods and the requirement that the logger deals with > internationalization doesn't seem right. The second part is worse - > each app uses different styles of ResourceBundles - and you mix > very different domains. > Well, I agr

Re: [Logging] Internationalization enhancement proposal

2003-02-21 Thread Costin Manolache
Adding 24 methods and the requirement that the logger deals with internationalization doesn't seem right. The second part is worse - each app uses different styles of ResourceBundles - and you mix very different domains. A much simpler solution - with no API change in Log - is to use the fact t

Re: [dbutils] public access to ResultSetHandler

2003-02-21 Thread Juozas Baliuka
Hi, It will be public if we will not find better ways to handle resultsets. I am not sure about "connection" parameter too, connection can be stored in ThreadLoacal, but this will add more "public API" to component. It is possible to live without "cln" parameter, handler can be implemented this wa

[dbutils] public access to ResultSetHandler

2003-02-21 Thread george stewart
Hi, Could the developers elaborate on reasons for having package access to the interface ResultSetHandler? If this was public, user's could create objects without using the object arrays. If it ever becomes public, it would be nice to have something like this in the package: static void e

cvs commit: jakarta-commons-sandbox/vfs/src/test/org/apache/commons/vfs/test UriTests.java NamingTests.java ProviderTestSuite.java

2003-02-21 Thread adammurdoch
adammurdoch2003/02/21 05:18:18 Modified:vfs/src/test/org/apache/commons/vfs/provider/test JunctionTests.java vfs/src/test/org/apache/commons/vfs/test NamingTests.java ProviderTestSuite.java Added: vfs/src/test/org/apa

cvs commit: jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/impl providers.xml

2003-02-21 Thread adammurdoch
adammurdoch2003/02/21 05:16:59 Modified:vfs/src/java/org/apache/commons/vfs/impl providers.xml Log: Jsch requires jce. Revision ChangesPath 1.2 +1 -0 jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/impl/providers.xml Index: providers.xml ===

cvs commit: jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/impl VirtualFileSystem.java

2003-02-21 Thread adammurdoch
adammurdoch2003/02/21 05:16:39 Modified:vfs/src/java/org/apache/commons/vfs/provider AbstractFileObject.java DelegateFileObject.java vfs/src/java/org/apache/commons/vfs/impl VirtualFileSystem.java Log: Fixed some junction

cvs commit: jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/provider BasicFileName.java

2003-02-21 Thread adammurdoch
adammurdoch2003/02/21 05:11:36 Modified:vfs/src/java/org/apache/commons/vfs/provider BasicFileName.java Log: Don't remove the trailing slash from the root uri if it has already been removed. Revision ChangesPath 1.4 +14 -6 jakarta-common

cvs commit: jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/provider/jar JarFileSystem.java

2003-02-21 Thread adammurdoch
adammurdoch2003/02/21 05:09:00 Modified:vfs/src/java/org/apache/commons/vfs Resources.properties vfs/src/java/org/apache/commons/vfs/provider AbstractFileSystem.java vfs/src/java/org/apache/commons/vfs/provider/zip

cvs commit: jakarta-commons-sandbox/daemon/src/native/nt/procrun tomcatp.ico

2003-02-21 Thread mturk
mturk 2003/02/21 04:14:45 Modified:daemon/src/native/nt/procrun tomcatp.ico Log: Added 32x32 icon Revision ChangesPath 1.2 +1 -1 jakarta-commons-sandbox/daemon/src/native/nt/procrun/tomcatp.ico <>

cvs commit: jakarta-commons-sandbox/daemon/src/native/nt/procrun procgui.c procrun.h procrun.rc

2003-02-21 Thread mturk
mturk 2003/02/21 04:14:22 Modified:daemon/src/native/nt/procrun procgui.c procrun.h procrun.rc Log: Enable the GUI part to restore the window position. Revision ChangesPath 1.3 +42 -20jakarta-commons-sandbox/daemon/src/native/nt/procrun/procgui.c Index: p

cvs commit: jakarta-commons-sandbox/daemon/src/native/nt/procrun procrun.c

2003-02-21 Thread mturk
mturk 2003/02/21 04:13:39 Modified:daemon/src/native/nt/procrun procrun.c Log: Fix the service install. Revision ChangesPath 1.9 +61 -44jakarta-commons-sandbox/daemon/src/native/nt/procrun/procrun.c Index: procrun.c =

cvs commit: jakarta-commons-sandbox/daemon/src/native/nt/procrun/bin procrun.dll procrun.exe procrunw.exe tomcat.exe tomcatw.exe

2003-02-21 Thread mturk
mturk 2003/02/21 04:13:01 Modified:daemon/src/native/nt/procrun/bin procrun.dll procrun.exe procrunw.exe tomcat.exe tomcatw.exe Log: Latest builds. Revision ChangesPath 1.4 +83 -86 jakarta-commons-sandbox/daemon/src/native/nt/procrun/bi

[vfs] Re: Not sure how active the VFS project is ...

2003-02-21 Thread Adam Murdoch
Hi, It's been pretty active the last few weeks, after a long idle period. I'm hoping to find time to get a release out soonish. On Wed, 19 Feb 2003 02:30 pm, Rob Walker wrote: > As an aside, we've created our own "remote file system" interface for a > specific case, and managed to "plug" this

cvs commit: jakarta-commons-sandbox/vfs build.xml project.xml

2003-02-21 Thread adammurdoch
adammurdoch2003/02/21 02:00:00 Modified:vfs build.xml project.xml Log: Added xml-apis to dependencies. Revision ChangesPath 1.12 +5 -1 jakarta-commons-sandbox/vfs/build.xml Index: build.xml

[morphos] Idea for building morpher pipelines

2003-02-21 Thread Jeremias Maerki
I've spent some time playing around in Morphos lately, doing some cleaning-up and javadocing. I'll probably submit a patch next week. Anyway. ATM building a morpher pipeline is more or less a manual thing. Of course, there's the possibility to do getMorpher(inputFlavor, outputFlavor), but that doe

[GUMP] Build Failure - commons-jelly-tags-html

2003-02-21 Thread Morgan Delagrange
This email is autogenerated from the output from: Buildfile: build.xml init: [mkdir] Created dir: /home/rubys/j