真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python中怎么使用suds調用webservice-創(chuàng)新互聯(lián)

本篇文章給大家分享的是有關python中怎么使用suds調用webservice,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

網(wǎng)站設計制作過程拒絕使用模板建站;使用PHP+MYSQL原生開發(fā)可交付網(wǎng)站源代碼;符合網(wǎng)站優(yōu)化排名的后臺管理系統(tǒng);網(wǎng)站設計、成都網(wǎng)站制作收費合理;免費進行網(wǎng)站備案等企業(yè)網(wǎng)站建設一條龍服務.我們是一家持續(xù)穩(wěn)定運營了十年的創(chuàng)新互聯(lián)網(wǎng)站建設公司。
  1. from suds.client import Client

  2. url = 'http://localhost:7080/webservices/WebServiceTestBean?wsdl'

  3. client = Client(url)


  4. #查看該service提供的方法

  5. print client


  6. Suds - version: 0.3.3 build: (beta) R397-20081121


  7. Service (WebServiceTestBeanService) tns="http://test.server.enterprise.rhq.org/"

  8.    Prefixes (1):

  9.      ns0 = "http://test.server.enterprise.rhq.org/"

  10.    Ports (1):

  11.      (Soap)

  12.        Methods:

  13.          addPerson(Person person, )

  14.          echo(xs:string arg0, )

  15.          getList(xs:string str, xs:int length, )

  16.          getPercentBodyFat(xs:string name, xs:int height, xs:int weight)

  17.          getPersonByName(Name name, )

  18.          hello()

  19.          testExceptions()

  20.          testListArg(xs:string[] list, )

  21.          testVoid()

  22.          updatePerson(AnotherPerson person, name name, )

  23.    Types (23):

  24.      Person

  25.      Name

  26.      Phone

  27.      AnotherPerson

   1.簡單參數(shù)調用

Python代碼  python中怎么使用suds調用webservice

  1. result = client.service.getPercentBodyFat('jeff', 68, 170)

  2. print result


  3. result = client.service.getPercentBodyFat(name='jeff', height=68, weight=170)

  4. print result


  5. #詞典

  6. d = dict(name='jeff', height=68, weight=170)

  7. result = client.service.getPercentBodyFat(**d)

  8. print result


  9. You have 21% body fat.

   2.復雜參數(shù)

Java代碼  python中怎么使用suds調用webservice

  1. person = client.factory.create('Person')

  2. print person

Java代碼  python中怎么使用suds調用webservice

  1. (Person)=

  2.   {

  3.     phone = []

  4.     age = NONE

  5.     name(Name) =

  6.         {

  7.             last = NONE

  8.             first = NONE

  9.         }

  10.    }

 #設置變量

Java代碼  python中怎么使用suds調用webservice

  1. phone = client.factory.create('Phone')

  2. phone.npa = 202

  3. phone.nxx = 555

  4. phone.number = 1212

Python代碼  python中怎么使用suds調用webservice

  1. name = client.factory.create('Name')

  2. name.first = 'Elmer'

  3. name.last = 'Fudd'

Python代碼  python中怎么使用suds調用webservice

  1. person.name = name

  2. person.age = 35

  3. person.phone = [phone]


  4. #或者

  5. person.phone.append(phone)

  1. try:

  2.    person_added = client.service.addPerson(person)

  3. except WebFault, e:

  4.   print e

  在0.3.8以上版本還提供了更簡單的調用方式,完美的jsonpython中怎么使用suds調用webservice

  1. person = {}

  2. #根據(jù)對象結構構造json


  3. phone = {

  4.     'npa':202,

  5.     'nxx':555,

  6.     'number':1212,

  7. }


  8. name = {

  9.     'first':'Elmer',

  10.     'last':'Fudd'

  11. }


  12. person['name'] = name

  13. person['age'] = 35

  14. person['phone'] = [phone,]


  15. try:

  16.    person_added = client.service.addPerson(person)

  17. except WebFault, e:

  18.   print e

 3.異常處理

  1. client = client(url, faults=False)

  2. result = client.service.addPerson(person)

  3. print result

  4. ( 200, person ...)

以上就是python中怎么使用suds調用webservice,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


新聞名稱:python中怎么使用suds調用webservice-創(chuàng)新互聯(lián)
文章路徑:http://weahome.cn/article/djsjcj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部