python调用webservice接口之多参数传递

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python调用webservice接口之多参数传递相关的知识,希望对你有一定的参考价值。

from suds.client import Client

 

def func(url, operation, *args):
‘‘‘接口调用‘‘‘
  client = Client(url)
  result = eval("client.service.%s" % operation)(*args)  #eval将字符串转换成变量使用

  return result

 

url = ‘http://10.***.**.***:****/DaiDaiKan/DaiDaiKanService.asmx?wsdl‘  #注意地址后面需要加wsdl

operation = ‘Prereview‘

name = ‘测试01‘
reportId = ‘100‘
reportSn = ‘2016072500003039963690‘
mobile_token = ‘123‘

func(url, operation, str(name), str(reportId), str(reportSn), str(mobile_token))

 

参考博客地址:

http://blog.csdn.net/qq_15013233/article/details/52369656

http://blog.csdn.net/xocom/article/details/64120902







以上是关于python调用webservice接口之多参数传递的主要内容,如果未能解决你的问题,请参考以下文章

java axis调用webservice,接口方法中的数组型参数应该怎么传参

java Web工程,如何在不传参数的情况下,判断WebService接口是不是开放

java调用java编写的WebService接口服务端收到的参数为空

php调用webservice接口,java代码接收不到参数

php调用java写的WebService不能传参问题解决

调用webservice每次传进的参数都为null,请教是啥原因