.Net 消息传递和STOMP协议
我对 .net 消息传递和 .net 消息传递有疑问它与其他开放协议的兼容性。我想知道.net 消息传递 API 是否能够与 STOMP 协议一起使用?我如何使用这个协议?有没有我需要使用的特定库?
感谢您分享您的经验和想法。
I have a doubt regarding .net messaging & its compatibility with other open protocols out there. I would like to know if .net messaging API capable of working with STOMP protocol? How do i make use of this protocol? is there any specific library out there I need to use?
thanks for sharing your experience and ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的目标是从 .NET 语言发送消息,请考虑利用适用于 .NET 的 Apache ActiveMQ NMS 库。他们声称使用单个 API 连接到多个不同的提供商。
目前,可以使用以下提供程序:
上面链接的他们的网站提供了下载内容,以及有关如何开始常见消息传递场景的文章的链接。
If your goal is to send messages from a .NET language, consider leveraging the Apache ActiveMQ NMS library for .NET. They claim to use a single API to connect to multiple different providers.
Currently, the following providers are available:
Their site linked above has the downloads, and links to articles on how to get started on the common messaging scenarios.
从根本上来说,STOMP 似乎是基于 TCP 的消息传递及其命令和控制字符集。
.NET 中没有任何内容会让您怀疑无法使用此协议构建应用程序或库。如果您从头开始构建 .NET STOMP 库,则必须利用
System.Net.Sockets
。下面是一些示例 C# 代码。你有什么疑问?也许编辑您的问题时有任何疑问?
At the root of it, STOMP appears to be TCP-based messaging with its set of commands and control characters.
There's nothing in .NET that should give you any doubts about not being able to build an application or library using this protocol. If you were building a .NET STOMP library from scratch, you'd have to leverage
System.Net.Sockets
. Here's some sample C# code.What doubts did you have? Perhaps edit your question with any concerns?