Re: cmd app and xml

2010-05-14 Thread kak...@gmail.com
On May 14, 7:10 am, Stefan Behnel wrote: > kak...@gmail.com, 14.05.2010 12:46: > > > Hi there, > > i'm writing a console app using the cmd library. I also use > > xml.dom.minidom to parse an xml file that i get as a response to an > > HTTP Post request. > > with > > data = response.read() > > i ge

Re: cmd app and xml

2010-05-14 Thread Stefan Behnel
kak...@gmail.com, 14.05.2010 12:46: Hi there, i'm writing a console app using the cmd library. I also use xml.dom.minidom to parse an xml file that i get as a response to an HTTP Post request. with data = response.read() i get the xml response from the server. i then feed the parser with that dat

cmd app and xml

2010-05-14 Thread kak...@gmail.com
Hi there, i'm writing a console app using the cmd library. I also use xml.dom.minidom to parse an xml file that i get as a response to an HTTP Post request. with data = response.read() i get the xml response from the server. i then feed the parser with that data. myDoc = parse(data) but it doesn't