0

I'm going to use WCF over Solace messaging platform. AFAIK Solace is JMS-compatible, so JMS binding would also meet my purposes. I found JNBridge, but it's not free. So I'd like to know if there are any other solutions.

As a minimum I need to support topic publish/subscribe logic.

Ability to process various message properties like CorrelationId and ApplicationMessageType would be great.

stop-cran
  • 4,229
  • 2
  • 30
  • 47

1 Answers1

2

Solace does have a JMS API but another option for this case to is to use Solace's REST interface to initiate the WCF service.

More information on Solace's REST interface is available on the Solace Developer Portal: http://docs.solace.com/Open-APIs-Protocols/REST-home.htm

Alexandra Masse
  • 1,277
  • 1
  • 7
  • 11
  • That's a nice solution. System.Net.WebSockets seem to be even better if one needs a callback, can be they also used with Solace? – stop-cran Nov 23 '16 at 07:14