suds 는 Ladon 예제 의 서 비 스 를 호출 합 니 다.

1330 단어 pythonSOAPsudsladon
ladon-0.9.35 설명 생 성 시 인자 search_frase 가 바 뀌 었 어 요. search - frase, 이 로 인해 클 라 이언 트 suds 호출 시 이름 을 짓 는 매개 변 수 를 사용 할 수 없습니다.bug 일 거 예요.
<element name="listBands">
<complexType>
<sequence>
<element name="search-frase" type="xsd:string"/>
</sequence>
</complexType>
</element>
# -*- coding: utf-8 -*-

'''

'''
base_url =  'http://localhost:8088/'
url = base_url +'Calculator/soap/description'
##    SUDS   Ladon   
from suds.client import Client as SudsClient
client = SudsClient(url=url, cache=None)
result = client.service.add(a=23,b=45)
print(result )

def testAlbumService():

    print("

Testing AlbumService:
")     # Load the AlbumService description     album_client = SudsClient(base_url + '/AlbumService/soap/description')     # Fetch albums containing the substring "Zoo" in the album title     jsonwsp_resp = album_client.service.listAlbums('Bowie') #search_frase=     print (jsonwsp_resp)     # Fetch all bands containing the substring "Bowie" in the band name     jsonwsp_resp = album_client.service.listBands('Bowie') #search_frase=     print (jsonwsp_resp) testAlbumService() print ( "xx")

좋은 웹페이지 즐겨찾기