gpt4 book ai didi

python - 使用 Spyne 创建多个服务

转载 作者:行者123 更新时间:2023-12-01 05:31:16 26 4
gpt4 key购买 nike

我正在尝试使用 Spyne 创建 SOAP Web 服务。基于简单Hello example ,我想创建 2 个不同的服务:

from spyne.application import Application
from spyne.protocol.soap import Soap11
from spyne.server.wsgi import WsgiApplication

from spyne.decorator import rpc
from spyne.service import ServiceBase
from spyne.model.complex import Iterable
from spyne.model.primitive import Unicode

class HelloWorldService(ServiceBase):
@rpc(Unicode, _returns=Iterable(Unicode))
def say_hello(ctx, name):
return [u'Hello, %s' % name]

class HelloWorldService1(ServiceBase):
@rpc(Unicode, _returns=Iterable(Unicode))
def say_hello1(ctx, name):
return [u'Hello, %s' % name]

if __name__=='__main__':
from wsgiref.simple_server import make_server

application = Application([HelloWorldService, HelloWorldService1],
'spyne.examples.hello.soap',
in_protocol=Soap11(validator='lxml'),
out_protocol=Soap11()
)
wsgi_application = WsgiApplication(application)

server = make_server('127.0.0.1', 8000, wsgi_application)
server.serve_forever()

但是,当我尝试使用 suds 来使用这些服务时:

from suds.client import Client
client = Client('http://localhost:8000/?wsdl')
print client

只有一项服务可用:

Service ( HelloWorldService ) tns="spyne.examples.hello.soap"
Prefixes (1)
ns0 = "spyne.examples.hello.soap"
Ports (1):
(Application)
Methods (1):
say_hello(xs:string name, xs:integer times, )
Types (3):
say_hello
say_helloResponse
stringArray

所以,我想知道是否有什么我错过的事情。此外,如果可能的话,谁能告诉我如何在Spyne中创建多个服务,每个服务都有自己的wsdl文件。

最佳答案

您的代码是正确的,并且会显示 say_hello 和 say_hello1 方法。也许您应该在清除客户端的 wsdl 缓存后重试。

您可以通过在浏览器中访问 http://localhost:8000/?wsdl 来查看实际的 wsdl 文档。

关于python - 使用 Spyne 创建多个服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20217104/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com