Hello,
i have this kind of xml i want to parse:
<pageclass name='news'>
<page pageid="33">
            <metadata name="title>
             a title
            </metadata>
            <metadata name="remoteURL">
            a url
           </metadata>
</page>
</pageclass>
<pageclass name='other'>
<page pageid="xx">
   ....
</page>
</pageclass>

So in the digester i have this code (only relevant part ):

digester.setRules(new ExtendedBaseRules());
digester.addObjectCreate("website/[EMAIL PROTECTED]'news']/page",
                Notizia.class.getName());

which doesn't work as I was supposing:  when I try to peek the object on the
stack, i get a NPE.
So the question is: does digester support that kind of xpath expressions to
select nodes?


--
To Iterate is Human, to Recurse, Divine
James O. Coplien, Bell Labs
(how good is to be human indeed)

Reply via email to