使用 Spring 和 Hessian 实现互操作性?是否可以?
《春天在行动》一书中说道:
Hessian 与 RMI 一样,使用二进制消息在客户端和服务之间进行通信。但是,与其他二进制远程处理技术(例如 RMI)不同,二进制消息可以移植到 Java 以外的语言,包括 PHP、Python、C++ 和 C#。 (316)
你能给我一些建议吗?也就是说,例如,通过使用 PHP,我可以读取 Hessian 消息。
Spring in Action book says:
Hessian, like RMI, uses binary messages to communicate between client and service. However, unlike other binary remoting technologies (such as RMI), the binary message IS PORTABLE to languages other than Java, including PHP, Python, C++, and C#. (316)
Can you give me some advice how can i get it ? That is, by using PHP, for instance, i can read a Hessian messsage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 Hessian 实现列表中:Hessian 的 PHP 实现
From the list of Hessian implementations: PHP Implementation of Hessian
当然,请参阅 17.3。 Spring参考中使用Hessian或Burlap通过HTTP远程调用服务。
Sure, see 17.3. Using Hessian or Burlap to remotely call services via HTTP in the Spring reference.