nxmldocument product and zope 2.8.1
I am transitioning to zope 2.8.1 and python 2.3.5 and I would like to use the nxmldocument product: http://www.zope.org/Members/philh/nXMLDocument (I am also using Mark Hammond's Win32 extensions, and Microsoft's MSXML 4.0 parser on a windows 2003 server). However, upon startup, I received the following error with the nxmldocument product: Traceback (most recent call last): File "E:\Program Files\Zope-2.8.1-final\lib\python\OFS\Application.py", line 695, in import_product product=__import__(pname, global_dict, global_dict, silly) File "E:\Program Files\Zope\Products\nXMLDocument\__init__.py", line 4, in ? import nXMLDocument File "E:\Program Files\Zope\Products\nXMLDocument\nXMLDocument.py", line 8, in ? import pythoncom File "E:\Python23\lib\site-packages\pythoncom.py", line 3, in ? pywintypes.__import_pywin32_system_module__("pythoncom", globals()) File "E:\Python23\lib\site-packages\win32\lib\pywintypes.py", line 42, in __import_pywin32_system_module__ mod = imp.load_module(modname, None, found, ('.dll', 'rb', imp.C_EXTENSION)) ImportError: DLL load failed: The specified procedure could not be found. Thanks in advance! John Tynan - webmaster KJZZ.org / KBAQ.org 480.774.8462
kjzz.webmaster@riomail.maricopa.edu wrote:
mod = imp.load_module(modname, None, found, ('.dll', 'rb', imp.C_EXTENSION)) ImportError: DLL load failed: The specified procedure could not be found.
Looks like nXMLDocument is expecting a procedure that isn't in the DLL it's found. Incorrect version of the DLL? cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
participants (2)
-
Chris Withers -
kjzz.webmaster@riomail.maricopa.edu