Re: Digester problem

2007-06-29 Thread James Carman
Have you tried an ObjectCreate followed by a SetProperties? On 6/28/07, Poulton, Jonathan [EMAIL PROTECTED] wrote: Hi there, I've tried finding a solution to what I think should be quite a simple problem using the Commons Digester, but the tutorials I can find on the subject only really cover

Digester problem

2007-06-28 Thread Poulton, Jonathan
Hi there, I've tried finding a solution to what I think should be quite a simple problem using the Commons Digester, but the tutorials I can find on the subject only really cover the basics and aren't of any help. Given an XML fragment like the following: article id=_1234 text.../text

Re: [Digester] Problem using recursion in xml rule file

2007-03-14 Thread Vikram
Hi Arshika, even i am having the same problem with a project i am working on... it is working on removing the tag and doesn't work with the tag... if u have got the solution...please mail me the same... thanks :) Vikram... - To

[Digester] Problem using recursion in xml rule file

2007-02-28 Thread Arshika Mishra
Hi! I am trying to parse an XML file using digester but getting a problem. The file has a recursive tag. The format of the file given below: dpr-domain name=AircraftPerformances dpr-data-category name=AircraftClass systemOption=FULLOLDI dpr-attribute

[digester] problem

2006-04-11 Thread Qaiser Mehmood
Hi, I am using Commons Digester to parse one XML file to a Java Object and the code is not populating my Java Bean. The XML Files are Rules.xml : ?xml version=1.0? digester-rules pattern value=messages/message object-create-rule

[digester] problem with factory creation rule

2006-03-29 Thread amine achergui
Hi everyone, I'm using an xml file for rules. pattern value=configuration/action/destination factory-create-rule classname=pakcagename.DestinationCreationFactory bean-property-setter-rule pattern=value/ set-next-rule methodname=setDestination/ /pattern I have

Re: Digester: Problem with CallMethodRule

2005-09-05 Thread Mikko Nylén
Simon Kitching wrote: On Mon, 2005-09-05 at 07:18 +0300, Mikko Nylén wrote: Hi!, I'm having a little problem with Digester's CallMethodRule: it doesn't call the method. The XML file I try to parse is: --- configuration pages page path=/index.htm class=test.TestPage / page

Digester: Problem with CallMethodRule

2005-09-04 Thread Mikko Nylén
Hi!, I'm having a little problem with Digester's CallMethodRule: it doesn't call the method. The XML file I try to parse is: --- configuration pages page path=/index.htm class=test.TestPage / page path=/hello.htm class=test.HelloPage / /pages /configuration --- The Java code I'm

Re: [Digester] Problem with XML rule definiton.

2005-03-31 Thread Silas Snider
I was using Eclipse as the development enviroment, so that could be doing it, but I have done reflection with it before, and it worked both in the jar file and the environment. Sincerely, Silas Snider Reid Pinchback wrote: It sounds like one of two things: 1) in the jar'd configuration

[Digester] Problem with XML rule definiton.

2005-03-30 Thread Silas Snider
Dear List: I am having problems with Digester. I am using it to parse the XML returned by Amazon's Web Services. My problem occurs when I create a .jar out of my java program. I am passing the XML rules to DigesterLoader as a stream from the getClass().getResourceAsStream(resource file name)

Re: [Digester] Problem with XML rule definiton.

2005-03-30 Thread Reid Pinchback
It sounds like one of two things: 1) in the jar'd configuration something is missing from the classpath 2) in the jar'd configuration you aren't using the same type of classloaders as you are in the non-jar'd configuration (e.g. not just jar vs non-jar, but jar-in-webapp vs

non-String Bean Digester problem

2005-01-19 Thread William Fuller
Hello, I'm new to Digester, Tomcat, Servlet, Velocity, and even Java... Yup, one of those. I am running into a spot of bother while using Digester to parse my XML file that I will ultimately pluck from Derby. The file starts out like this: Screen

Re: non-String Bean Digester problem

2005-01-19 Thread Simon Kitching
Hi William, On Wed, 2005-01-19 at 02:49 -0600, William Fuller wrote: Hello, I'm new to Digester, Tomcat, Servlet, Velocity, and even Java... Yup, one of those. No worries, we've all been there.. I am running into a spot of bother while using Digester to parse my XML file that I will

Digester: Problem of loading parents attribute to the child

2004-10-07 Thread Nalika Dissanayaka
Hi, I am having a difficulty to load the following XML file by using the commons Digester. Is there anyone that can help me on this... XML FILE ?xml version=1.0 encoding=UTF-8? metadata lang=en-US environment=Production revision=001 Sender Namemy nameDC/Name

Re: Digester: Problem of loading parents attribute to the child

2004-10-07 Thread Simon Kitching
On Fri, 2004-10-08 at 07:11, Nalika Dissanayaka wrote: Hi, I am having a difficulty to load the following XML file by using the commons Digester. Is there anyone that can help me on this... XML FILE ?xml version=1.0 encoding=UTF-8? metadata lang=en-US environment=Production

Re: Digester Problem related to Bean Classname

2003-02-06 Thread Craig R. McClanahan
On Thu, 6 Feb 2003, Maher Martin wrote: Date: Thu, 6 Feb 2003 16:20:58 +0100 From: Maher Martin [EMAIL PROTECTED] Reply-To: Jakarta Commons Users List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: Digester Problem related to Bean Classname Hi, I've encountered