客户端应用程序与应用程序服务器的通信
我们正在创建一个与应用程序服务器(Java 客户端、RoR 服务器)通信的客户端-服务器模型。
对于要通信的实际数据,我们有几个选项:
- XML 通信,实际绘制客户端屏幕(如 Web 浏览器)
- 仅通信数据/权限等。通过 XML(整个 UI 保存在客户端上)
- 组合 - 每次强制下载客户端并传达数据/权限/等。通过 XML。
这样做的最佳方法是什么? (此外,我们不能使用网络浏览器,因为我们需要与客户端中的条形码扫描组件进行交互)
We're creating a client-server model that communicates with an application server (Java clients, RoR server).
We have a few options for the actual data that is going to be communicated:
- XML Communication that actually paints the client's screen (a la web-browser)
- Communicating just data/permissions/etc. through XML (Entire UI is held on client)
- Combination - Force download the client each time and communicate data/permissions/etc. through XML.
What is the best way of doing this? (Also, we can't use web-browsers since we need to interface with a barcode scanning components in the clients)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Java Web Start 部署一个厚 Java 客户端。
Have a thick Java client deployed using Java Web Start.