FWIW, you can change the structure of the xml on demand with xslt.

-----Original Message-----
From: Manoj Chakkalakkal [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 25, 2005 4:41 PM
To: Jakarta Commons Users List
Subject: Digester beginner question


I have the following XML.
<class>
        <student>
                <attribute name="id">10</attribute>
                <attribute name="name">Mark</attribute>
        </student>
        <student>
                <attribute name="id">11</attribute>
                <attribute name="name">Mary</attribute>
        </student>

</class>

public class Student{
        String id;
        String name;
}

How do I write use Commons Digester to set the properties id and name of
the class Student?

I cannot change the structure of XML.

Thank you
-Manoj


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to