An open API service indexing awesome lists of open source software.

https://github.com/marketsquare/robotframework-jmslibrary

A library for Robot Framework to connect to several JMS Providers using jPype
https://github.com/marketsquare/robotframework-jmslibrary

Last synced: about 1 year ago
JSON representation

A library for Robot Framework to connect to several JMS Providers using jPype

Awesome Lists containing this project

README

          

# robotframework-jmslibrary

Robot Framework library for sending and receiving JMS messages to different JMS providers like ActiveMQ and WebLogic.

📕 [Keyword Documentation](https://marketsquare.github.io/robotframework-jmslibrary/JMS.html)

## Getting started

### Installation

`pip install --upgrade robotframework-jmslibrary`

### Usage

```RobotFramework
*** Settings ***
Library JMS

*** Test Cases ***
Send And Receive JMS Messages
Create Producer RobotQueue1
Send Hello from Robot Framework
Create Consumer RobotQueue1
Receive == Hello from Robot Framework

Send JMS Messages
Create Producer RobotQueue4
Send Message Hello from Robot Framework
Create Consumer RobotQueue4
Receive == Hello from Robot Framework
```