Python服务器公开和xml和json rpc接口

时间:2013-03-08 08:56:31

标签: python xml-rpc rpc json-rpc

正如标题所说,有没有办法将函数公开给JSON-RPC和XML-RPC接口?优选地,在单个端口上运行的一个服务器将回答这两种类型的请求。

谢谢!

1 个答案:

答案 0 :(得分:-1)

返回不同格式的常用方法之一是以某种方式指定您在网址中输入的类型。最常见的是:

http://example.com/some/page.<format>

http://example.com/some/page?output=<format>

然后您的返回对象应转换为所需格式:

// somewhere at the end of the method handling the request
return Formater(format_param).format(response_object)