2

我正在尝试使用spyne hello world 示例,代码基本上是:

class HelloWorldService(ServiceBase):
    @srpc(Unicode, Integer, _returns=Array(Unicode))
    def say_hello(name, times):
        for i in range(times):
            yield 'Hello, %s' % name

application = Application([HelloWorldService],
              tns='spyne.examples.hello',
              in_protocol=JsonDocument(validator='soft'),
              out_protocol=JsonDocument()
          )

if __name__ == '__main__':
    from wsgiref.simple_server import make_server
    wsgi_app = WsgiApplication(application)
    server = make_server('0.0.0.0', 7789, wsgi_app)
    print "rpc server start"
    server.serve_forever()

我正在尝试通过以下请求连接到它:

url = "http://127.0.0.1:7789/sayhello"
data = { "name": "World", "times": 4 }
headers = { 'content-type': 'application/json' }
r = requests.post(url, data=json.dumps(data), headers=headers)

它返回 404。

但是如果我使用的是 HttpRpc 协议,那么请求方式就可以了。

那么我如何实现一个客户端来使用 Json Document 协议。requests首选使用 lib 。

4

2 回答 2

1

如果你想使用 JsonDocument 作为 in_protocol,你应该使用这个符号来发送数据......

data = { "say_hello" : { "name": "World", "times": 4 } }

这意味着您应该将函数名称作为 json 中的主键传递,其内容应该是带有函数参数的 json。

并且您的网址应该相同,但没有函数名称,即:

url = "http://127.0.0.1:7789/"

如果您想查看更多内容,可以阅读http://spyne.io/blog/上的 spyne 博客

于 2013-01-29T21:15:49.880 回答
1

我刚刚通过 JsonDocument 协议示例向http://spyne.io添加了请求。

看看:http ://spyne.io/#inprot=JsonDocument&outprot=JsonDocument&s=rpc&tpt=WsgiApplication&validator=true

以供参考; 你可以同时做:

curl http://localhost:7789 -d '{ "say_hello" : { "name": "World", "times": 4 } }' 

或者

curl http://localhost:7789 -d '{ "say_hello" : ["World", 4]}' 

参数顺序与 Python 端的参数顺序相同。

于 2013-02-01T13:35:40.297 回答