ZSI を使用して記述されたクライアント コードがあり、静的応答を使用してモックをセットアップしたいと考えています。私は urllib2 パッケージを使用しようとしましたが、戻り値の型が urllib2 の文字列であり、ここでの応答は私が知らない別の型であるため、機能しません。私を助けて... 誰かこれで私を助けることができますか?
コード:
from PayDayLoans_services_types import *
import urlparse, types
from ZSI.TCcompound import ComplexType, Struct
from ZSI import client
import ZSI
# Locator
class PayDayLoansLocator:
PayDayLoansSoap_address = "https://something.com/something.asmx"
def getPayDayLoansSoapAddress(self):
return PayDayLoansLocator.PayDayLoansSoap_address
def getPayDayLoansSoap(self, url=None, **kw):
return PayDayLoansSoapSOAP(url or PayDayLoansLocator.PayDayLoansSoap_address, **kw)
# Methods
class PayDayLoansSoapSOAP:
def __init__(self, url, **kw):
kw.setdefault("readerclass", None)
kw.setdefault("writerclass", None)
# no resource properties
self.binding = client.Binding(url=url, **kw)
# no ws-addressing
# op: LoanResubmitXML
def LoanResubmitXML(self, request):
if isinstance(request, LoanResubmitXMLSoapIn) is False:
raise TypeError, "%s incorrect request type" % (request.__class__)
kw = {}
# no input wsaction
self.binding.Send(None, None, request, soapaction="http://www.something.com/Request/ResubmitXML", **kw)
# no output wsaction
response = self.binding.Receive(LoanResubmitXMLSoapOut.typecode)
return response