使用SOAPPy的体会

2009-12-05 02:59:00

昨天下午开始用PYTHON写一个SOAP程序,开始时参考dive into python里的例子和说明,

但实践中发现不够用,网上的文档又很少,自己摸索了半天才初步搞定,下面是其中碰到的一

些问题,写下来给和我一样的SOAP初学者参考,如果有不对或者不足的地方,请高手指正:

1、安装

按照dive into python的说明,安装这三个库:PyXML, fpconst 和 SOAPpy

其中PyXML在SF的下载地址:

http://sourceforge.net/project/showfiles.php?group_id=6473没有py2.5的版本,请到

这里下载:

http://platea.pntic.mec.es/~jmorilla/python/PyXML-0.8.4.win32-py2.5.exe

SOAPpy安装时会报错:SyntaxError:from __future__ imports must occur at the

beginning of the file。这时需要改一下安装目录下SOAPpy目录中的个文件:Client.py

Types.py Server.py,把from __future__ import nested_scopes移到第一行就可以了。

2、调试

强烈建议打开调试模式:

from SOAPpy import WSDL

server = WSDL.Proxy('https://www.xxxxx.com/xxxx')

server.soapproxy.config.dumpSOAPOut = 1

server.soapproxy.config.dumpSOAPIn = 1

server.soapproxy.config.debug = 9

还有,最好下载一个SOAP的调试工具,我用的是soapUI,很好用。可以把调试信息直接粘贴

到soapUI中,改某些数据,看能不能运行。

3、要点

a、header

这是我构造出来的东东:

https://www.xxxxx.com/xxxx" SOAP-ENC:root="1">

xxxxx

123456

用这几行构造出来的:

from SOAPpy import structType

from SOAPpy import headerType

ct = structType(data = {'password' : '123456','username':'xxxxx'})

ct._validURIs = []

ct._ns = ("ns1", "https://www.xxxxx.com/xxxx")

hd = headerType(data = {"AuthHeader" : ct})

server.soapproxy.header = hd

b、body

SOAPpy似乎有缺陷,我用的这个WSDL中定义了getWordRequest方法,隶属于getWord,供其

output时使用,但SOAPpy解析不出这个方法,只解析出getWord,我只好这么做:

server.methods['getWordRequest']=server.methods['getWord']

server.methods['getWordRequest'].namespace ='https://www.xxxxx.com/xxxx'

变通了一下。还有一个更土的办法是把WSDL下载下来,修改一下。不知道有没有更好的办法

另外,某个方法的参数是这样定义的:

server.getWordRequest(strWord='2')

我觉得有点特殊,结果如下:

https://www.xxxxx.com/xxxx" SOAP-ENC:root

="1">

2

c、namespace

我没找到定义全局namespace的办法,只好在header和body分别定义,呵呵,笨了一些。

namespace很重要,一定要定义,不然就出错,其实就是上面的两句:

ct._ns = ("ns1", "https://www.xxxxx.com/xxxx")

server.methods['getWordRequest'].namespace ='https://www.xxxxx.com/xxxx'

你可能感兴趣的:(使用SOAPPy的体会)