python3调用webservice接口
本帖最后由 玄天宗 于 2018-5-31 12:49 编辑下面是利用工具soapUI调用的接口代码(红色为接口传入参数xml):
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.webservice.hpin.org/">
<soapenv:Header/>
<soapenv:Body>
<ser:pushCustomerInfoFT>
<!--Optional:-->
<arg0><![CDATA[<?xml version="1.0" encoding="utf-8"?>
<reqCustomer>
<eventNo>HL55588899900</eventNo>
<name>阿加</name>
<idNum>513822198906204***</idNum>
<phone>15882275820</phone>
<barCode>FT2033</barCode>
<mealName></mealName >
<familyHistory>有</familyHistory>
<customerHistory>有</customerHistory>
<sex>男</sex>
<age>20</age>
<height>170</height>
<weight>55</weight>
<createTime>2018-05-10 00:00:00</createTime>
<reportReceiveName>测试</reportReceiveName>
<reportReceivePhone>15882275821</reportReceivePhone>
<reportReceiveAddress>成都</reportReceiveAddress>
<authID>FT</authID>
</reqCustomer>]]></arg0>
</ser:pushCustomerInfoFT>
</soapenv:Body>
</soapenv:Envelope>
以下是python调用接口代码:
from suds.client import Client
url = 'http://192.168.1.***:8088/websGene/geneReport?wsdl'
client = Client(url)
reqCustomer = {
'eventNo': 'HL55588899900',
'name': '阿加',
'idNum': '513822198906204***',
'phone': '15882275820',
'barCode': 'FT2033',
'mealName': '1',
'familyHistory': '1',
'customerHistory': '1',
'sex': '男',
'age': '20',
'height': '170',
'weight': '55',
'createTime': '2018-05-10',
'reportReceiveName': 'test',
'reportReceivePhone': '15882275821',
'reportReceiveAddress': '22',
'authID': 'FT'
}
person_adde = client.service.pushCustomerInfoFT(reqCustomer)
print(person_adde)
结果:报错suds.TypeNotFound: Type not found: 'idNum'
经过反复调整,发现是传入的参数格式等有问题
求大佬指点,xml的参数该怎么传递? 遇到了同样的问题,请问有解决方法么 一秋秋s 发表于 2021-5-26 15:28
遇到了同样的问题,请问有解决方法么
好久没来看论坛了,问题解决了吗? 在使用suds连接webservice时候,遇到了找不到type的错误
该错误一般类型为TypeNotFound:(类名,URL)
出现这种错误的时候发现是由于缺少namespace导致的,一个类型依赖其他类型,而其他类型需要报错的URLnamespace。
此时可以使用suds.xsd.doctor的Import创建,然后将import加入到doctor中
作者:battle_
链接:https://www.jianshu.com/p/5c0977484c0b
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
imp = Import("http://localhost/services/RequestService")
doctor = ImportDoctor(imp)
Client可以携带doctor属性连接webservice url
而且doctor可以通过add方法再添加多个Import,doctor.add( *imports),类型依赖很多就需要用到这个了 玄天宗 发表于 2021-10-28 17:42
好久没来看论坛了,问题解决了吗?
问题最后的解决方式是:从前公司离职,不再使用webserivce接口 一秋秋s 发表于 2021-11-1 16:18
问题最后的解决方式是:从前公司离职,不再使用webserivce接口
{:5_109:}我自己最后解决了,时间有点久了。好像改一哈传入参数的格式就行了 玄天宗 发表于 2022-5-30 11:13
我自己最后解决了,时间有点久了。好像改一哈传入参数的格式就行了
新公司也用webservice接口,但是从没来遇到过这个问题了
页:
[1]