我正在尝试使用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 。