IMO the problem is related again with the stack.
try ...


Bill Keese wrote:

This looks OK to me; I'm not sure why it's failing. What happens? Does it create an ArrayList but no objects are added to it? You should probably turn on tracing to figure out what is happening.

Vinicius Caldeira Carvalho wrote:

Hi there! I'd like a little help with diggester. I tried the receipt and it didn't work for me ...
Here's what I have:
my xml:


<user-data>
    <user name="Vinicius Carvalho" age="25"/>
    <user name="Clarissa Daguer" age="23"/>
</user-data>


the method to instantiate the bean:

clazz = org.vinicius.User.class;

File input = new File(path);
        Digester digester = new Digester();
        digester.setValidating(false);

//  digester.addObjectCreate("user-data","java.util.ArrayList");
digester.push(new ArrayList());

digester.addObjectCreate("user-data/user",clazz.getName());
digester.addSetProperties("user-data/user"); digester.addSetNext("user-data/user","add",clazz.getName());
Object obj = null;
try {
obj = digester.parse(input);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return obj;



The bean is a simple userBean with name and age properties. What I'd like to do is to have an arrayList of users returned to me.

What am I doing wrong



---------------------------------------------------------------------
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]

-------------------------------------------------------------------------------------------------------------------
Este correo electr�nico y, en su caso, cualquier fichero anexo al mismo, 
contiene informaci�n de car�cter confidencial exclusivamente dirigida a su 
destinatario o destinatarios. Queda prohibida su divulgaci�n, copia o 
distribuci�n a terceros sin la previa autorizaci�n escrita de Indra. En el caso 
de haber recibido este correo electr�nico por error, se ruega notificar 
inmediatamente esta circunstancia mediante reenv�o a la direcci�n electr�nica 
del remitente.

The information in this e-mail and in any attachments is confidential and 
solely for the attention and use of the named addressee(s). You are hereby 
notified that any dissemination, distribution or copy of this communication is 
prohibited without the prior written consent of Indra. If you have received 
this communication in error, please, notify the sender by reply e-mail

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

Reply via email to