Re: File Upload and request parameters

2008-10-29 Thread sim123
Thank you very much for quick reply Martin, it worked, I appreciate your help. sim123 wrote: > > Hello, > > I am using FileUpload for multipart request handling, my request > contains three different parameter and one file, I want to read those > parameters first and then read the file as thos

Re: File Upload and request parameters

2008-10-29 Thread Martin Cooper
On Wed, Oct 29, 2008 at 5:10 PM, sim123 <[EMAIL PROTECTED]> wrote: > > Hello, > > I am using FileUpload for multipart request handling, my request > contains three different parameter and one file, I want to read those > parameters first and then read the file as those paramters construct > direct

File Upload and request parameters

2008-10-29 Thread sim123
Hello, I am using FileUpload for multipart request handling, my request contains three different parameter and one file, I want to read those parameters first and then read the file as those paramters construct directory where this file needs to be stored, here is the code protected void doPost(

DigesterPipelineFactory(URL confURL) Is unable to set ruleset

2008-10-29 Thread Pim Tjeertes
Hello, I'm trying out the Pipeline because the concept intriges me. Ofcourse I'm starting with a really simple example using the DigesterPipelineFactory(URL confURL). But when I do I get a Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/digester/RuleSetBase I think

Re: [Configuration] Bug with XMLConfiguration and getString() ...?!

2008-10-29 Thread Oliver Heger
Jörg Schaible schrieb: Grimm, Markus wrote: Hi guys, I've got the following problem: I've got a xml-config-file with that content: ... myhost 22 testuser 08,15 ... In my application I get the

RE: [Configuration] Bug with XMLConfiguration and getString() ...?!

2008-10-29 Thread Jörg Schaible
Grimm, Markus wrote: > Hi guys, > > I've got the following problem: > I've got a xml-config-file with that content: > > > > ... > > myhost > 22 > testuser > 08,15 > > ... > > > In my application I get the info a

[Configuration] Bug with XMLConfiguration and getString() ...?!

2008-10-29 Thread Grimm, Markus
Hi guys, I've got the following problem: I've got a xml-config-file with that content: ... myhost 22 testuser 08,15 ... In my application I get the info about pass f.e. like this String pass =

RE: parse xml with digester

2008-10-29 Thread Jörg Schaible
[EMAIL PROTECTED] wrote: > From experience I find Betwixt easier than Digester for this, > because it > handles the Digester rules for you. Also once you've set up > your mappings > and strategy objects (which isn't difficult) you get Object-to-XML and > XML-to-Object at the same time. In practise