Re: only a simple xml reader value

2006-02-11 Thread uche . ogbuji
[EMAIL PROTECTED] wrote: > The only thing I must read is the response I get from a EPP server. > A response like this: > > > http://www.eurid.eu/xml/epp/epp-1.0"; > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; > xmlns:contact="http://www.eurid.eu/xml/epp/contact-1.0"; > xmlns:domain="htt

Re: only a simple xml reader value

2006-02-08 Thread Albert Leibbrandt
[EMAIL PROTECTED] wrote: >I'm newbie with that xml stuff. > >The only thing I must read is the response I get from a EPP server. >A response like this: > > >http://www.eurid.eu/xml/epp/epp-1.0"; >xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; >xmlns:contact="http://www.eurid.eu/xml/epp/con

Re: only a simple xml reader value

2006-02-08 Thread martijn
I'm newbie with that xml stuff. The only thing I must read is the response I get from a EPP server. A response like this: http://www.eurid.eu/xml/epp/epp-1.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:contact="http://www.eurid.eu/xml/epp/contact-1.0"; xmlns:domain="http://www

Re: only a simple xml reader value

2006-02-08 Thread uche . ogbuji
[EMAIL PROTECTED] wrote: > H!, > > Is it possible to get a value value ? > > When I do this: > - > theXML = """ > The Fascist Menace > """ > import xml.dom.minidom as dom > doc = dom.parseString(theXML) > print doc.getElementsByTagName('title

only a simple xml reader value

2006-02-08 Thread martijn
H!, Is it possible to get a value value ? When I do this: - theXML = """ The Fascist Menace """ import xml.dom.minidom as dom doc = dom.parseString(theXML) print doc.getElementsByTagName('title')[0].toxml() I get : The Fascist Menace thats