码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-08-24 12:38:19      阅读:387      评论:0      收藏:0      [点我收藏+]

标签:csdn   eval   .net   str   blog   wsdl   使用   参数   port   

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接口之多参数传递

标签:csdn   eval   .net   str   blog   wsdl   使用   参数   port   

原文地址:http://www.cnblogs.com/sammy1989/p/7422239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!