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.
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?