Zeep文档示例:
from zeep import Client
client = Client('http://my-enterprise-endpoint.com')
client.service.submit_order(user_id=1, order={
'number': '1234',
'price': 99,
})
我的用例:
我想调用一个需要参数'findCriteria'
的网络服务示例:
findcriteria = {
'Criteria' : [{
'ColumnName' : 'Closed',
'Value' : 0
},
{
'ColumnName' : 'AssignToQueueID',
'Value' : queueid
},
{
'ColumnName' : 'SupportCallType',
'Value' : 'I'
}
]
}
致电服务:
print client.service.GetCount(findCriteria = findcriteria)
这是创建的XML:
<soap-env:Body>
<ns1:GetCount>
<ns1:findCriteria/>
</ns1:GetCount>
</soap-env:Body>
</soap-env:Envelope>
问题:
虽然服务返回计数,但不会应用条件。
当我向服务提供原始XML有效负载时,结果是正常的。
问题出在<ns1:findCriteria/>
部分。
对于每一列,都应该创建一个Criteria元素。
WSDL上的grep GetCount的结果:
<s:element name="GetCount">
<s:element name="GetCountResponse">
<s:element minOccurs="1" maxOccurs="1" name="GetCountResult" type="s:int" />
<wsdl:message name="GetCountSoapIn">
<wsdl:part name="parameters" element="tns:GetCount" />
<wsdl:message name="GetCountSoapOut">
<wsdl:part name="parameters" element="tns:GetCountResponse" />
<wsdl:operation name="GetCount">
<wsdl:input message="tns:GetCountSoapIn" />
<wsdl:output message="tns:GetCountSoapOut" />
<wsdl:operation name="GetCount">
<soap:operation soapAction="http://<server>/webservices/SupportCall/GetCount" style="document" />
<wsdl:operation name="GetCount">
<soap12:operation soapAction="http://<server>/webservices/SupportCall/GetCount" style="document" />
答案 0 :(得分:2)
我有一个类似的问题,我设法解决了它,但为了帮助你,我需要一个样本正确的XML(它应该是什么样子)或者至少需要一个使用SoapUI生成的默认请求。
与此同时,也许下面的代码可能对您有所帮助: 这里的复杂参数是凭证,它由2个登录项组成,即登录和域。
<soap-env:Envelope xmlns:ns1="http://xml.kamsoft.pl/ws/kaas/login_types"
xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
<soap-env:Body>
<ns1:login>
<ns1:credentials>
<ns1:item>
<ns1:name>login</ns1:name>
<ns1:value>
<ns1:stringValue>login_here</ns1:stringValue>
</ns1:value>
</ns1:item>
<ns1:item>
<ns1:name>domain</ns1:name>
<ns1:value>
<ns1:stringValue>domain_here</ns1:stringValue>
</ns1:value>
</ns1:item>
</ns1:credentials>
<ns1:password>password_here</ns1:password>
</ns1:login>
</soap-env:Body>
</soap-env:Envelope>
以下是生成此XML的代码:
domain = "domain_here"
login = "login_here"
password = "password_here"
credentials = {"item": [{"name": "login", 'value': {"stringValue": login}},
{"name": "domain", 'value': {"stringValue": domain}}]}
client.service.login(credentials=credentials, password=password)
答案 1 :(得分:1)
使用以下命令检查您的wsdl:
python -mzeep <wsdl>
您可以在输出中找到服务的详细信息:ns1:GetCount(FindCriteria:findCriteria)
基于上述检查输出的示例代码:
find_criteria_type = client.get_type('ns1:findCriteria')
find_criteria = find_criteria_type()
client.service.GetCount(FindCriteria=find_criteria)
如果您的XML是这样的:
<soap-env:Body>
<ns1:GetCount>
<ns1:findCriteria>
<ns1:param1>val1</ns1:param1>
<ns1:param2>val2</ns1:param1>
</ns1:findCriteria>
</ns1:GetCount>
</soap-env:Body>
你需要在创建obj时传递参数:
find_criteria = find_criteria_type(param1=val1, param2=val2)
答案 2 :(得分:0)
当我运行以下命令时:
GET_TYPE_PutPropDataMappings=CPRManager_url.get_type('ns1:PropDataMapperSetup')
print(GET_TYPE_PutPropDataMappings)
SET_Values_PutPropDataMappings=GET_TYPE_PutPropDataMappings(ActingUserId='388153')
print(SET_Values_PutPropDataMappings)
结果是:-
PropDataMapperSetup({http://www.ABCd.com/CPR/Manager}PropDataMapperSetup(ActingUserId: xsd:int, Mappings: {http://www.ABCd.com/CPR/Manager}ArrayOfPropDataMapping, UserCompanyId: xsd:int))
{
'ActingUserId': '388153',
'Mappings': None,
'UserCompanyId': None
}
哪个看起来正确。但是,当我运行请求以使用以下命令获取值时:
Response_PutPropDataMappings=CPRManager_url.service.PutPropDataMappings(propDataMapperSetup=SET_Values_PutPropDataMappings)
print(Response_PutPropDataMappings)
我得到:-
{
'ErrorCodes': None,
'ErrorMessages': {
'string': [
'Invalid acting userid :0'
]
},
'WarningMessages': None,
'WasSuccessful': None
}
与传递:-
相同Response_PutPropDataMappings=CPRManager_url.service.PutPropDataMappings(propDataMapperSetup)
print(Response_PutPropDataMappings)