从.net mvc3网站访问activemq ajax amq.js
我有一个 .net mvc3 站点,想要使用 JavaScript 中的 ActiveMq amq.js ajax 调用功能。问题是根据聊天演示功能..它需要配置 servlet 来访问 java 类,但这在 c# 应用程序中是不可能的
任何想法或线索。 (基本上需要一种访问 activemq 主题的方法,而无需手动编写基于计时器的轮询代码)
I have a .net mvc3 site and want to use the ActiveMq amq.js ajax call feature from javascript. The problem is according to chat demo feature..it requires configuring servlets to access java classes but thats not possible in c# application
Any Ideas or leads. (Basically need a way to access activemq topic without having to manually writing a timer based polling code)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ActiveMQ 支持基于 websockets 的 STOMP 协议 http://activemq.apache.org/websockets.html。使用此功能,您无需设置任何 servlet,只需配置代理以公开适当的传输连接器即可。有许多 STOMP/websocket Javascript 库,例如 Stomple (https://github.com/krukow/stomple),您可以使用它们轻松访问主题。
ActiveMQ supports the STOMP protocol over websockets http://activemq.apache.org/websockets.html. Using this you don't need to set up any servlets, just configure the broker to expose the appropriate transportConnector. There are a number of STOMP/websocket Javascript libraries such as Stomple (https://github.com/krukow/stomple) that you can then use to easily access topics.