Soap2Jms

A project that provides a SOAP api to a JMS queue

License

License

GroupId

GroupId

com.github.jbricks.soap2jms
ArtifactId

ArtifactId

soap2jms
Last Version

Last Version

0.1.0
Release Date

Release Date

Type

Type

pom
Description

Description

Soap2Jms
A project that provides a SOAP api to a JMS queue
Project URL

Project URL

https://jbricks.github.io/soap2jms
Source Code Management

Source Code Management

https://github.com/jbricks/soap2jms

Download soap2jms

Filename Size
soap2jms-0.1.0.pom 10 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.jbricks.soap2jms/soap2jms/ -->
<dependency>
    <groupId>com.github.jbricks.soap2jms</groupId>
    <artifactId>soap2jms</artifactId>
    <version>0.1.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.jbricks.soap2jms/soap2jms/
implementation 'com.github.jbricks.soap2jms:soap2jms:0.1.0'
// https://jarcasting.com/artifacts/com.github.jbricks.soap2jms/soap2jms/
implementation ("com.github.jbricks.soap2jms:soap2jms:0.1.0")
'com.github.jbricks.soap2jms:soap2jms:pom:0.1.0'
<dependency org="com.github.jbricks.soap2jms" name="soap2jms" rev="0.1.0">
  <artifact name="soap2jms" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.github.jbricks.soap2jms', module='soap2jms', version='0.1.0')
)
libraryDependencies += "com.github.jbricks.soap2jms" % "soap2jms" % "0.1.0"
[com.github.jbricks.soap2jms/soap2jms "0.1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • s2j_common
  • s2j_server
  • s2j_client
  • integration

Build Status

#Jms Over Soap

This project allows to access a JMS queue through a standard SOAP over HTTP web service. It allows to read and send messages from/to a JMS queue. Clients don't have to depend on any JMS implementation libraries. They are simple JAX-WS web service clients, that can be supported by any JAX-WS implementation (Apache CXF for instance).

It is not to be confused with "Soap over JMS". Soap Over JMS encapsulates a soap message into a JMS envelope. It has the same problems of JMS in terms of interoperability and it requires a JMS client implementation to connect to the server.

Visit the website for more informations.

goals:

  • Simplicity: It is simple to integrate. It has few dependencies. It will be well documented.
  • Reliability: JMS has a plus over SOAP: its reliability. Soap2Jms try to replicate this at the minimum cost: all the operations are idempotent. If clients are coded properly, messages will not be lost or duplicated in case of network or system failure.
  • Interoperability: It is independent from the specific JMS provider used. It can work in any application, without any change. Clients can be coded in languages other than java (.NET ...). Web services are WS-I Basic Profile 1 compliant.

Similar projects

Before starting the implementation I've evaluated similar project, each one has it's own strengths.

ActiveMQ REST Interface

ActiveMQ has a separate project that exposes most of the JMS functions through a rest interface. Pros:

  • Well manteined, it has a large community.
  • Well documented.
  • Well tested, security is ensured.

Cons:

  • The protocol is over complicated. It mimic JMS. It requires to open a session, and later to close it.
  • It's ActiveMQ specific.
  • It's JSON over HTTP. It doesn't have a WSDL to conform to (only a very lengthly description of the protocol).

OpenMQ UMS Interface

ActiveSoap

Hosted on codehaus, the site seems dead (10/11/2016).

com.github.jbricks.soap2jms

Java Bricks

The missing bricks in the java stack

Versions

Version
0.1.0