客户端代理框架(Web 服务)
我有一个场景,我的服务器端 java 代码需要与客户端桌面上的应用程序进行交互。因此,我正在研究是否有任何简单的框架可以实现此类交互,例如使用 Web 服务或纯 java-servlet。我可以创建一个自定义框架来实现这一点,但我预见的技术挑战是找出 URL(或 IP)以将请求发布到客户端 servlet。任何想法或专业知识都会有很大帮助。
谢谢 文卡特
I have a scenario where my server side java code needs to interact with an application on the client desktop. So I was researching on if there are any simple frameworks to enable such interaction, say using web-services or pure java-servlets. I could create one custom framework to enable this, but the technical challenge I foresee would be to figure out the URL (or the IP) to post the request to the client servlet. Any ideas or knowhow would be of great help.
Thanks
Venkat
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显而易见的解决方案是让客户端连接到服务器。连接建立后,服务器可以直接向客户端发送命令。当然,使用 HTTP 做到这一点并不容易,因为您需要长时间运行的连接。
The obvious solution is to make the client connect to the server. After the connection is established, the server can send commands to the client directly. But of course this is not easy to do using HTTP, because you need a long-running connection.