JMS Courier C++ and .NET examples
Introduction
While JMS Courier is JMS provider independent, you need to know how to configure the runtime environment for the provider that you wish to use. We have configuration knowledge for some providers but you might have to gather the required configuration information yourself if you're using a different provider.
Please let us know if you have successfully used JMS Courier with a currently undocumented provider so we can save future evaluators from having to go through this hassle.
Using JMS from C++
A JMS Topic Publisher written in C++
This sample application publishes messages to a JMS topic. It pauses for variable amounts of time between messages so that you can observe the effects of running multiple publishers concurrently without running into network or channel saturation.An asynchronous JMS Topic Receiver written in C++
This is the corresponding JMS topic receiver. It listens for messages and prints them to the console.
Using JMS from .NET
A JMS Topic Publisher written in C#
This sample application publishes messages to a JMS topic. It pauses for variable amounts of time between messages so that you can observe the effects of running multiple publishers concurrently without running into network or channel saturation.An asynchronous JMS Topic Receiver written in C#
This is the corresponding JMS topic receiver. It listens for messages and prints them to the console.
