我正在尝试使用SOAPpy作为客户端发送SOAP请求。我找到了一些文档,说明如何通过扩展SOAPpy.HTTPTransport来添加cookie,但我似乎无法让它工作。
我尝试使用示例here, 但我试图发送请求的服务器开始抛出415错误,所以我试图在不使用ClientCookie的情况下完成此操作,或者在我使用它时弄清楚为什么服务器正在投掷415。我怀疑这可能是因为ClientCookie使用了urllib2& http / 1.1,而SOAPpy使用urllib& HTTP / 1.0
有人知道如何使ClientCookie使用http / 1.0,如果这是问题,或者是在不使用ClientCookie的情况下将cookie添加到SOAPpy标头的方法吗?如果使用其他服务尝试此代码,则只会在向Microsoft服务器发送请求时抛出错误。
我仍然在寻找蟒蛇的立足点,所以它可能就是我在做一些愚蠢的事情。
import sys, os, string
from SOAPpy import WSDL,HTTPTransport,Config,SOAPAddress,Types
import ClientCookie
Config.cookieJar = ClientCookie.MozillaCookieJar()
class CookieTransport(HTTPTransport):
def call(self, addr, data, namespace, soapaction = None, encoding = None,
http_proxy = None, config = Config):
if not isinstance(addr, SOAPAddress):
addr = SOAPAddress(addr, config)
cookie_cutter = ClientCookie.HTTPCookieProcessor(config.cookieJar)
hh = ClientCookie.HTTPHandler()
hh.set_http_debuglevel(1)
# TODO proxy support
opener = ClientCookie.build_opener(cookie_cutter, hh)
t = 'text/xml';
if encoding != None:
t += '; charset="%s"' % encoding
opener.addheaders = [("Content-Type", t),
("Cookie", "Username=foobar"), # ClientCookie should handle
("SOAPAction" , "%s" % (soapaction))]
response = opener.open(addr.proto + "://" + addr.host + addr.path, data)
data = response.read()
# get the new namespace
if namespace is None:
new_ns = None
else:
new_ns = self.getNS(namespace, data)
print '\n' * 4 , '-'*50
# return response payload
return data, new_ns
url = 'http://www.authorstream.com/Services/Test.asmx?WSDL'
proxy = WSDL.Proxy(url, transport=CookieTransport)
print proxy.GetList()
答案 0 :(得分:0)
错误415是因为内容类型标题不正确。
为firefox或任何工具(wireshark,Charles或Fiddler)安装httpfox以跟踪您发送的标头。尝试Content-Type:application / xml。
...
t = 'application/xml';
if encoding != None:
t += '; charset="%s"' % encoding
...
如果您尝试将文件发送到Web服务器,请使用Content-Type:application / x-www-form-urlencoded
答案 1 :(得分:0)
在SOAPpy调用中使用Cookie的好方法 Using Cookies with SOAPpy calls