Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.Net Messaging & STOMP Protocol

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.

like image 282
Abdel Raoof Olakara Avatar asked Aug 27 '10 21:08

Abdel Raoof Olakara


People also ask

What is messaging in C#?

The MSDN states: "Message Queuing (MSMQ) technology enables applications running at different times to communicate across heterogeneous networks and systems that may be temporarily offline. Applications send messages to queues and read messages from queues."

What is Message class?

A message class is a SAP entity used to hold different single text messages that are used, as needed, to communicate information, warnings or errors to users in different SAP objects (like programs, function modules, exits and enhancements) throughout the SAP system.

What is message in MSMQ in VB net?

Microsoft includes the Microsoft Message Queue (MSMQ) product in their server operating systems to provide the queueing infrastructure for applications to create and manipulate queues in addition to sending to and receiving messages from those queues. The Services Framework provides a namespace, System.


1 Answers

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:

  • ActiveMQ which connects using OpenWire to an ActiveMQ Message Broker.
  • STOMP which connects to any STOMP Broker.

Their site linked above has the downloads, and links to articles on how to get started on the common messaging scenarios.

like image 76
p.campbell Avatar answered Oct 14 '22 04:10

p.campbell