溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python中怎么使用suds調(diào)用webservice

發(fā)布時(shí)間:2021-06-24 17:09:27 來(lái)源:億速云 閱讀:172 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

本篇文章給大家分享的是有關(guān)python中怎么使用suds調(diào)用webservice,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。

  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.簡(jiǎn)單參數(shù)調(diào)用

Python代碼  python中怎么使用suds調(diào)用webservice

  1. result = client.service.getPercentBodyFat('jeff'68170)  

  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.復(fù)雜參數(shù)

Java代碼  python中怎么使用suds調(diào)用webservice

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

  2. print person  

Java代碼  python中怎么使用suds調(diào)用webservice

  1. (Person)=  

  2.   {  

  3.     phone = []  

  4.     age = NONE  

  5.     name(Name) =   

  6.         {  

  7.             last = NONE  

  8.             first = NONE  

  9.         }  

  10.    }  

 #設(shè)置變量

Java代碼  python中怎么使用suds調(diào)用webservice

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

  2. phone.npa = 202

  3. phone.nxx = 555

  4. phone.number = 1212

Python代碼  python中怎么使用suds調(diào)用webservice

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

  2. name.first = 'Elmer'

  3. name.last = 'Fudd'

Python代碼  python中怎么使用suds調(diào)用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以上版本還提供了更簡(jiǎn)單的調(diào)用方式,完美的jsonpython中怎么使用suds調(diào)用webservice

  1. person = {}  

  2. #根據(jù)對(duì)象結(jié)構(gòu)構(gòu)造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調(diào)用webservice,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI