On 5/19/2009 8:27 PM, [email protected] wrote: > >> Thanks. Please send me any sample even if non-working. It's still good >> to get me started. > > Here's a simple example of SOAPpy usage: > > import SOAPpy > server = SOAPpy.SOAPProxy("http://localhost:8080/MyService"); > > server.doSomeOperation(); > > Thanks for your help,
Uhm... are you using PyInstaller trunk, aren't you? The following works correctly for me: ========================================== import xml print xml.__version__ import xml.sax print xml.sax.make_parser() print xml.sax.saxexts.__file__ ========================================== Basically, PyInstaller is correctly packaging and using files from the _xmlplus directory (which is part of PyXML), instead of the standard xml library. Moreover, it is correctly able to create the SAX parser, which is the error that your traceback shows. -- Giovanni Bajo Develer S.r.l. http://www.develer.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
