[XML-SIG] Win32 and 4DOM

Lars Marius Garshol larsga@garshol.priv.no
30 Mar 2000 16:28:41 +0200


* Ludvig Svenonius
| 
| At the command prompt:
| C:\Program Files\Python\Ft\Dom\demo>python dom_from_xml_file.py
| addr_book1.xml
| SAXException caught: No parsers found
| Traceback (innermost last):
|   File "dom_from_xml_file.py", line 20, in ?
|     read_xml_from_file(sys.argv[1])
|   File "dom_from_xml_file.py", line 13, in read_xml_from_file
|     Ext.Print(xml_dom_object)
| NameError: xml_dom_object

This one is easy, at least: Python can't find your SAX parsers.  If
you either install the saxlib from my pages (and an XML parser; xmllib
will do) or the XML-SIG package 0.5.3 this problem will go away.

Whether this is the cause of the other problems as well I can't really
tell.

--Lars M.