All Projects → SolaceSamples → solace-samples-jms

SolaceSamples / solace-samples-jms

Licence: Apache-2.0 license
Getting Started Samples for the Solace JMS API.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to solace-samples-jms

solace-samples-openmama
Tutorials for the Solace Transport Bridge of OpenMAMA
Stars: ✭ 19 (-38.71%)
Mutual labels:  solace, solace-samples
solace-samples-javascript
Getting Started Samples for the Solace JavaScript API.
Stars: ✭ 26 (-16.13%)
Mutual labels:  solace, solace-samples
solace-samples-rest-messaging
Tutorials show how to use the Solace REST Messaging API
Stars: ✭ 23 (-25.81%)
Mutual labels:  solace, solace-samples
solace-samples-dotnet
Getting Started Samples for the Solace .NET API
Stars: ✭ 30 (-3.23%)
Mutual labels:  solace, solace-samples
solace-samples-mqtt
Getting Started Samples for using MQTT with Solace Message Routers.
Stars: ✭ 28 (-9.68%)
Mutual labels:  solace, solace-samples
solace-samples-cloudfoundry-java
Samples showing how to connect and exchange messages with Solace Messaging for Pivotal Cloud Foundry.
Stars: ✭ 29 (-6.45%)
Mutual labels:  solace, solace-samples
solace-integration-guides
solacelabs.github.io/solace-integration-guides/
Stars: ✭ 12 (-61.29%)
Mutual labels:  solace
covid19-stream-processors
Stream Information & Example Applications for Processing JHU and CovidTracking.com COVID-19 data available as streams over Solace
Stars: ✭ 35 (+12.9%)
Mutual labels:  solace
solace-java-spring-boot
A Spring Boot auto-configuration and starter for the Solace Java API.
Stars: ✭ 18 (-41.94%)
Mutual labels:  solace

Build Status

Getting Started Examples

Solace JMS API

The "Getting Started" tutorials will get you up to speed and sending messages with Solace technology as quickly as possible. There are three ways you can get started:

  • Follow these instructions to quickly spin up a cloud-based Solace messaging service for your applications.
  • Follow these instructions to start the Solace VMR in leading Clouds, Container Platforms or Hypervisors. The tutorials outline where to download and how to install the Solace VMR.
  • If your company has Solace message routers deployed, contact your middleware team to obtain the host name or IP address of a Solace message router to test against, a username and password to access it, and a VPN in which you can produce and consume messages.

Contents

This repository contains code and matching tutorial walk throughs for basic Solace messaging patterns. For a nice introduction to the Solace API and associated tutorials, check out the Getting Started Home Page.

See the individual tutorials for details:

Prerequisites

This tutorial requires the Solace JMS API library. There are multiple options for getting the Solace JMS API.

Option 1: Download the JMS API library

Download from here. The JMS API is distributed as a zip file containing the required jars, API documentation, and examples.

Option 2: Using it with Gradle

implementation("com.solacesystems:sol-jms:10.10.0") or implementation group: 'com.solacesystems', name: 'sol-jms', version: '10.10.0'

Option 3: Using it with Maven

<dependency>
   <groupId>com.solacesystems</groupId>
   <artifactId>sol-jms</artifactId>
   <version>10.10.0</version>
</dependency>

Build the Samples

Just clone and build. For example:

  1. clone this GitHub repository
  2. ./gradlew assemble

Running the Samples

To try individual samples, build the project from source and then run samples like the following:

./build/staged/bin/topicPublisher <msg_backbone_ip:port>

The individual tutorials linked above provide full details which can walk you through the samples, what they do, and how to correctly run them to explore Solace messaging.

Exploring the Samples

Setting up your preferred IDE

Using a modern Java IDE provides cool productivity features like auto-completion, on-the-fly compilation, assisted refactoring and debugging which can be useful when you're exploring the samples and even modifying the samples. Follow the steps below for your preferred IDE.

Using Eclipse

To generate Eclipse metadata (.classpath and .project files), do the following:

./gradlew eclipse

Once complete, you may then import the projects into Eclipse as usual:

File -> Import -> Existing projects into workspace

Browse to the 'solace-samples-jms' root directory. All projects should import free of errors.

Using IntelliJ IDEA

To generate IDEA metadata (.iml and .ipr files), do the following:

./gradlew idea

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Authors

See the list of contributors who participated in this project.

License

This project is licensed under the Apache License, Version 2.0. - See the LICENSE file for details.

Resources

For more information try these resources:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].