Re: [OT] Digester question

2003-08-04 Thread Jim Collins
gt; To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, August 04, 2003 9:06 PM Subject: Re: [OT] Digester question > Um, so, that actually worked? ;-) > > Quoting Jim Collins <[EMAIL PROTECTED]>: > > > Kris, > > > > Thanks fo

Re: [OT] Digester question

2003-08-04 Thread Kris Schneider
;[EMAIL PROTECTED]> > Sent: Monday, August 04, 2003 8:46 PM > Subject: Re: [OT] Digester question > > > > A bit out of my comfort zone on this one, but I think you might have to > change > > your XML to something like: > > > > > > someText > > &

Re: [OT] Digester question

2003-08-04 Thread Jim Collins
Kris, Thanks for the help. Jim. - Original Message - From: "Kris Schneider" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, August 04, 2003 8:46 PM Subject: Re: [OT] Digester question > A bit out of my comfor

Re: [OT] Digester question

2003-08-04 Thread Kris Schneider
A bit out of my comfort zone on this one, but I think you might have to change your XML to something like: someText because the FactoryCreateRule/ObjectCreationFactory stuff seems to work with an element's attributes, not its sub-elements. Then it looks like you need to subclass AbstractObjec

OT Digester question

2003-08-04 Thread Jim Collins
Appologies for the off topic question. Does anyone know how I can create an object with a constructor that takes agruments specified via XML elements. I have a Configuration object with a constructor that takes two String parameters. The XML will be something like this: someText someText

Re: Struts Digester question...

2002-06-10 Thread Craig R. McClanahan
On Mon, 10 Jun 2002, Struts Newsgroup wrote: > Date: Mon, 10 Jun 2002 01:10:02 -0700 > From: Struts Newsgroup <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Struts Digester question... > >

Struts Digester question...

2002-06-10 Thread @Basebeans.com
Subject: Struts Digester question... From: "Scott Curtis" <[EMAIL PROTECTED]> === Hi, When I start my server and Struts loads I am seeing the following line in the console: register('-//Apache Software Foundation//DTD Struts Configuration 1.0//EN', 'classload

Re: Digester Question

2002-03-05 Thread Steve A Drake
On Mon, 4 Mar 2002, Craig Tataryn wrote: > I realize that the digester is now part of commons, but I figure there is > probably a lot of expertise here since it grew up in Struts. I was > wondering if someone could help me figure out the easiest way to do this: > > I have an xml document, that h

Re: Digester Question

2002-03-05 Thread Craig Tataryn
Anyone? >From: "Craig Tataryn" <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Digester Question >Date: Mon, 04 Mar 2002 14:19:07 -0600 > >I realize that the digester is now p

Digester Question

2002-03-04 Thread Craig Tataryn
I realize that the digester is now part of commons, but I figure there is probably a lot of expertise here since it grew up in Struts. I was wondering if someone could help me figure out the easiest way to do this: I have an xml document, that holds form data, I would like to use the digester

Re: digester question

2001-02-16 Thread Craig R. McClanahan
"Gogineni, Pratima" wrote: > Hi, > > I have been reading the documentation on digester - I was wondering if it > uses XPATH for element pattern matching and if it doesnt why not? > > I dont think the documentation mentions this ... > That's *usually* a pretty good sign that it doesn't support th

digester question

2001-02-16 Thread Gogineni, Pratima
Hi, I have been reading the documentation on digester - I was wondering if it uses XPATH for element pattern matching and if it doesnt why not? I dont think the documentation mentions this ... THanks Pratima

Digester question

2000-11-20 Thread Matthias Kerkhoff
Hi all, my project has a lot of beans, each having a lot of properties. While writing the all these ever same constructors I've thought about possible improvements. So I had this idea I would like to use the Digester to "magically" assign default properties (in ctor and reset) to my beans. Th