Hi Guys,
I've been trying hopelessly -ALL- afternoon to get python-xml and python-soappy working nicely, but for the -LIFE- of me I keep running into the same brick wall over and over. I'm running Debian and I've installed the latest stable builds of Python, Python-XML and Python-SOAPPY along with all there depensancies but i get the following error when trying to run my code. Traceback (most recent call last): File "xml.py", line 1, in ? from SOAPpy import SOAPProxy File "/var/lib/python-support/python2.4/SOAPpy/__init__.py", line 5, in ? from Client import * File "/var/lib/python-support/python2.4/SOAPpy/Client.py", line 57, in ? from Parser import parseSOAPRPC File "/var/lib/python-support/python2.4/SOAPpy/Parser.py", line 9, in ? import xml.sax File "/pblue/xml.py", line 1, in ? from SOAPpy import SOAPProxy ImportError: cannot import name SOAPProxy This is my Code: from SOAPpy import SOAPProxy url = 'http://services.xmethods.net:80/soap/servlet/rpcrouter' namespace = 'urn:xmethods-Temperature' server = SOAPProxy(url, namespace) server.getTemp('27502') It's a very simple program, and its driving me bonkers not being able to get it working, I'd appreciate any help you can offer to help resolve it. Thanks guys, I'm sure this is just a typical NOOB mistake, but hopefully once the damn thing is up and running it'll be clear sailing. Rob
-- http://mail.python.org/mailman/listinfo/python-list