RE: select all nodes

2002-03-11 Thread David N Bertoni/Cambridge/IBM
i/Cambridge/IBM) Subject: RE: select all nodes 0

RE: select all nodes

2002-03-11 Thread Matt Leinhos
Look at the InputSource class. On Mar 11, pankaj bavishi wrote: - > >does xerces-c support anything similar to stringreader in xerces-j > >I have to pass an inputstream as string. > >Please suggest. > > >___

RE: select all nodes

2002-03-11 Thread pankaj bavishi
does xerces-c support anything similar to stringreader in xerces-j I have to pass an inputstream as string. Please suggest.Join the world’s largest e-mail service with MSN Hotmail. Click Here - To unsubscribe, e-mail: [EMAIL PRO

RE: select all nodes

2002-03-11 Thread Erik Rydgren
Use DOMString::transcode. Read the Xerces FAQ for common questions using it. Regards Erik Rydgren Mandarinen systems AB Sweden -Original Message- From: pankaj bavishi [mailto:[EMAIL PROTECTED]] Sent: den 11 mars 2002 17:05 To: [EMAIL PROTECTED] Subject: RE: select all nodes how do

Re: select all nodes

2002-03-11 Thread Tinny Ng
> > Or, as a midpoint between the two -- I'm not sure whether Xerces-C > implements the DOM Level 2 Traversal APIs Yes it does. Tinny - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

RE: select all nodes

2002-03-11 Thread pankaj bavishi
how do I use: DOM_Document dummy.getElementsByTagName("hello"); how should I pass ("hello")...it should be a DOMString. I can't do: DOMString st = "hello"; please helpGet your FREE download of MSN Explorer at http://explorer.msn.com. -

RE: select all nodes

2002-03-11 Thread Joseph Kesselman/CAM/Lotus
Or, as a midpoint between the two -- I'm not sure whether Xerces-C implements the DOM Level 2 Traversal APIs, but if so a NodeIterator or TreeWalker with the appropriate filter settings might do what you need. - To unsubscribe

RE: select all nodes

2002-03-11 Thread pankaj bavishi
hard way? >From: "Erik Rydgren" <[EMAIL PROTECTED]> >Reply-To: <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Subject: RE: select all nodes >Date: Mon, 11 Mar 2002 16:43:33 +0100 > >Sounds like you should use DOM_Element::getElementsByTagName(co

RE: select all nodes

2002-03-11 Thread Erik Rydgren
Sounds like you should use DOM_Element::getElementsByTagName(const DOMString& name) method. If you need more then that then take a look at the Xalan XPath implementation at www.apache.org. Regards Erik Rydgren Mandarinen systems AB Sweden -Original Message-From: pankaj bavishi