使用 java 独立应用程序连接到 BlazeDS
我有一个带有 BlazeDS 接口的 java 服务器来处理 Adobe AIR 客户端。我还有一堆遗留的独立 Java 应用程序,我需要将它们与服务器集成。 Java 应用程序需要 AIR 客户端所需的所有相同方法和远程调用。因此,如果我可以从 java 应用程序调用远程对象方法,将会节省大量工作。
有人知道这是否可以做到吗?
I have a java server with a BlazeDS interface to handle Adobe AIR clients. I also have a bunch of legacy stand alone java apps that I'll need to integrate with the server. The java apps need all the same methods and remote calls that the AIR clients needs. So it would save tons of work if I could call the remote object methods from the java apps.
Anyone know if this can be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以直接通过 HTTP 使用 BlazeDS Java AMF 库。但与 BlazeDS MessageBrokerServlet 交互需要一些额外的工作。也许更简单的方法是通过 Java 代码可以更轻松使用的另一个协议公开相同的 Java 服务。
You can use the BlazeDS Java AMF libraries directly over HTTP. But interacting with the BlazeDS MessageBrokerServlet will require some extra work. Probably an easier path is to just expose the same Java services through another protocol that the Java code can more easily use.
看看这个库,它允许你连接Java与运行 BlazeDS 的服务器。另一方面,如果您对纯粹的性能感兴趣,您可以研究其他协议。有很多。
Take a look on this library, it allows you to connect Java with a server running BlazeDS. On the other hand if you are interested in pure performance you can investigate another protocols..there are plenty of them.