Apache xmlrpc - 客户端通知
我刚刚开始使用 apache xmlrpc 库。 我想知道如何创建双向通信,以便 服务器可以通知客户端一些事件。当我使用 RMI 时,它是 可以发送服务器远程对象,导致来自服务器的连接 给客户。 可以用 xmlrpc 来做到这一点吗?实际上我想发送一些“远程”监听器 到服务器,这样客户端就会收到通知,而无需询问服务器是否有 发生了一些变化。
谢谢。 朱雷
I just started using apache xmlrpc library.
I was wondering how it is possible to create two way communication, so that
server can notify client about some events. When I was using RMI it was
possible to send Server RemoteObject, that caused connection from server
to client.
Is it possible to do this with xmlrpc? Actually I want to send some 'remote' listener
to server so client will be notified without the need to ask server if there
has been some changes.
Thanks.
Jure
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的客户端能够运行轻量级服务器,例如 Apache 的xmlrpc WebServer类,那么Server就可以调用客户端进行通知。
If your client is able to run a lightweight server, like Apache's xmlrpc WebServer class, then the Server could call the client for notifications.