我有以下python代码,用于使用Zeep来使用WS。
date_ = date.today().strftime('%d-%m-%y %H:%M') # '2016-08-01 00:00:00'
destination = {'column': 'destination', 'value': destination, 'type': 'string'}
doc_date = {'column': 'doc_date', 'value': date_, 'type': 'string'}
type_id = {'column': 'type_id', 'value': type_id, 'type': 'string'} # 507
typist = {'column': 'typist', 'value': typist, 'type': 'string'}
priority = {'column': 'priority', 'value': priority, 'type': 'integer'}
data = {'datas': [destination, doc_date, type_id, typist, priority]}
try:
res = client.service.storeResource(encoded_data, data, collID, table, fileFormat, status)
if res.returnCode == 0:
if category == '':
return True
mlb_data = {'datas': [{'column': 'category_id', 'value': category, 'type': 'string'}]}
res2 = client.service.storeExtResource(res.resId, mlb_data, 'mlb_coll_ext')
return True
else:
print("res KO")
return False
except Exception as e:
print("SD2:", e)
return False
我使用SOAP UI单独测试了WS“ storeResource”,并且使用相同的参数可以正常工作。这是我运行python脚本后遇到的错误
SD2: Missing element for Any
答案 0 :(得分:0)
在调用服务时必须设置“任何”参数:
client.service.storeExtResource(Any='value')
答案 1 :(得分:-1)
要解决可选参数的“缺少元素”错误,请使用以下命令:
from zeep import xsd
并设置您不会以xsd.SkipValue
发送的可选元素。