我可以使用 JSON-RPC 将文件 POST 到 Web 服务吗?
我正在寻找可行的 Web 服务解决方案,并且刚刚发现 JSON-RPC 很诱人并且看起来很轻量(例如通过 XML 或 SOAP)。
但我想知道我是否能够使用 json 发布二进制数据?
顺便问一下,您对使用 JSON-RPC
和 ZEnd_Json_ServeR
有什么反馈吗?
I'm looking for viable webservice solution and I just found JSON-RPC which is seducing and seems lightweight (over XML or SOAP for example).
But I'm wondering if I'll be able to post binary DATA using json?
By the way, do you have any feedbacks using JSON-RPC
and the ZEnd_Json_ServeR
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用base 64编码、uuencode或base 85。看看这个答案:JSON 字符串中的二进制数据。比 Base64 更好的东西
我正在使用 JSON-RPC 和 Zend_Json_Server 并且它工作得很好。
You can use base 64 encoding, uuencode or base 85. Look at this answer: Binary Data in JSON String. Something better than Base64
I'm using JSON-RPC with the Zend_Json_Server and it works fine.