[Digester] Can I set digester log4j logging mechanism??

2003-08-29 Thread Vivian Fonger
Hi everyone, Is there anyway that I can set digester to use log4j logging mechanism??? Vivian Fonger

Re: [digester] NullPointerException :Digester.addObjectCreate

2003-08-29 Thread Jai PP
I am getting null pointer exception at addObjectCreate. When there are lot of nodes. I am using latest 1.5 digester. Pls see the below code, if I run this many times or if there are lot of elements of A/B then following error is encountered. Exception : java.lang.NullPointerException void org.ap

Re: [HttpClient] IOException on Unix box

2003-08-29 Thread Michael Becke
It sounds like the Compaq JVM accepts a different set of SSL certifing authorities. Sun JVMs accept SSL certs signed by Thawte and Verisign in pre 1.4 JVMs, plus a bunch of new ones in 1.4+ JVMs. Your options are as follows: - get an SSL cert that is verified by an authority that the Compaq

[DBCP] Problem: Connection closes prematurely

2003-08-29 Thread Vivian Fonger
Hi everyone, I want to know what connection is considered active and what connection is considered idle. Currently, my application is using DBCP connection pooling and I am having problem with connection closes premarturely. This happen when the application is trying to traverse a resultset and

[HttpClient] IOException on Unix box

2003-08-29 Thread Greg Dunn
I'm using HttpClient to do credit card payment authorization. My app works running under various flavors of Windows but when deployed on a Unix system Compaq Tru64 (sp?) I'm getting an IOException on execution of the post: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateExcept

RE: Uploading 30Mb files

2003-08-29 Thread Schalk
I use the following bit of code to only get the filename: fileName = item.getName(); fileFieldName = item.getFieldName(); StringTokenizer tokenizer = new StringTokenizer(fileName, "\\, :, /"); int amount = token

Re: Uploading 30Mb files

2003-08-29 Thread Jan Agermose
How do I get the original filename of the file uploaded? Jan - Original Message - From: "Jan Agermose" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 28, 2003 11:16 PM Subject: Uploading 30Mb files > I'm developing an webapplication that handles big files 20-40 Mb p

[FTP] Restart method

2003-08-29 Thread [EMAIL PROTECTED]
Hello everybody. Could someone give me some examples on how to use the restart method to resume a FTP transfer from a specific offset. Especially, I don't understand how and when the offset is set when a transfer failed in order to use it to restart the transfer. Thank you for your help, Hugo

AW: Re: Réf. : AW: [digester] interface and setter

2003-08-29 Thread Carsten Kaiser
Maybe it's a classloader issue... Does your digester use the same classloader??? Maybe you have somewhere another version of your interface, which your digester is using while parsing??? If you use the classname rather than the class itself, the CallMethodRule is supposed to load the class with t

Re: Re: Réf. : AW: [digester] interface and setter

2003-08-29 Thread Nicolas . CHALUMEAU
Isn't what i do when i declare the Class [] params = {com.arso.trelaze.socle.persistance.Reader.class}; before calling addCallMethod ? And when i check my log i see that the factory create the RWClass which implemente Reader so they can't be a class cast problem. Maybe i should create a beaninfo

Re: [BeanUtils] How to set a mapped property when the key containsdots?

2003-08-29 Thread Flavio Tordini
It works! Thank you so much, robert! flavio robert burrell donkin wrote: hi Flavio there are a couple of problems with the example. on is a bug with beanutils (which i've hopefully fixed now) and the other is that the mapped set property on your example bean is shielded by the standard prope

[PATCH] [betwixt] Use interface dot-betwixt-file, if class is proxy

2003-08-29 Thread Christoph Gaffga
hi, > > I've implemented a way to customize the serialization of EJBs through > > dot-betwixt-files. > > My solution looks up the dot-betwixt-file if the class to serialize is a > > Proxy. I only changed some lines in XMLIntrospector.findByXMLDescriptor. and here is the patch for it. I hope it fi

Re: Uploading 30Mb files

2003-08-29 Thread Robert Leland
Jan Agermose wrote: I'm developing an webapplication that handles big files 20-40 Mb per file. Up until now the upload of the files has been done outside the scope of the application and the application scope has been "limited" to handling indexing document information and locating the documents f