"[email protected]" <[email protected]> writes: > On Jun 1, 10:34 am, Stefan Behnel <[email protected]> wrote: >> [email protected], 01.06.2010 16:00: >> >> > how can i fix it, how to "ignore" the headers and parse only >> > the XML? >> >> Consider reading the answers you got in the last thread that you opened >> with exactly this question. >> >> Stefan > > That's exactly, what i did but something seems to not working with the > solutions i had, when i changed my implementation from pure Python's > sockets to twisted library! > That's the reason i have created a new post! > Any ideas why this happened?
As I already explained: if you send your headers as well to any XML parser it will choke on those, because the headers are /not/ valid / well-formed XML. The solution is to remove the headers from your data. As I explained before: headers are followed by one empty line. Just remove lines up and until including the empty line, and pass the data to any XML parser. -- John Bokma j3b Hacking & Hiking in Mexico - http://johnbokma.com/ http://castleamber.com/ - Perl & Python Development -- http://mail.python.org/mailman/listinfo/python-list
