Author |
Message
|
vickas |
Posted: Sat Aug 18, 2018 11:14 pm Post subject: Integrating IIB v9/v10 with ActiveMQ 5.x over AMQP protocol |
|
|
Centurion
Joined: 18 Aug 2013 Posts: 126
|
Hi Experts ,
We have a requirement to integrate IIB v9/v10 with Active MQ server over AMQP 1.0 (Advanced Message queue protocol ).
from my research , to make WMQ interact with ActiveMQ , the best way is to bring in IIB , which allows to make connection using JMS nodes but then here the client wants us to connect to them only using AMQP protocol with encryption (TLS v1.2) enabled over the channel.
How can we achieve this ? |
|
Back to top |
|
 |
Vitor |
Posted: Mon Aug 20, 2018 4:55 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
Write Java code that emulates what you'd do with an IIB flow.
vickas wrote: |
the client wants us to connect to them only using AMQP protocol with encryption (TLS v1.2) enabled over the channel. |
How will the client know if you're using IIB or not? From the other end of the channel??  _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
souciance |
Posted: Mon Aug 20, 2018 9:56 am Post subject: |
|
|
Disciple
Joined: 29 Jun 2010 Posts: 169
|
Why do you even need IIB here? Just use the Java API for MQ and ActiveMQ to read/write. You can do this with a simple spring boot application. |
|
Back to top |
|
 |
Vitor |
Posted: Mon Aug 20, 2018 10:17 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
souciance wrote: |
Just use the Java API for MQ and ActiveMQ to read/write. You can do this with a simple spring boot application. |
Vitor wrote: |
Write Java code that emulates what you'd do with an IIB flow.
|
 _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
vickas |
Posted: Wed Aug 22, 2018 2:14 am Post subject: |
|
|
Centurion
Joined: 18 Aug 2013 Posts: 126
|
Vitor wrote: |
Write Java code that emulates what you'd do with an IIB flow.
vickas wrote: |
the client wants us to connect to them only using AMQP protocol with encryption (TLS v1.2) enabled over the channel. |
How will the client know if you're using IIB or not? From the other end of the channel??  |
Hi vitor ,
Thanks for the reply , The client might not be knowing that but here we want to know but our customer has IIB and want us to use IIB to integrate with Active MQ over AMQP ( Advanced message queue protocol) .
I cannot write any spring booter application , All i wanted to know here is how can we achieve this in IIB ?
I know that we can integrate IIB with ActiveMQ over JMS ( found many links
). As we know that JMS is an API and Advanced message queue is a protocol, want to know how can we achieve integrating IIB with ActiveMQ over AMQP |
|
Back to top |
|
 |
Vitor |
Posted: Wed Aug 22, 2018 4:33 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
vickas wrote: |
I know that we can integrate IIB with ActiveMQ over JMS ( found many links). |
Then you know how to integrate with ActiveMQ.
vickas wrote: |
As we know that JMS is an API and Advanced message queue is a protocol, want to know how can we achieve integrating IIB with
ActiveMQ over AMQP |
The same as you would with anything else. The premise of the JMS nodes is that you're using the JMS classes (APIs as you describe them) with a 3rd party JMS provider such as ActiveMQ; if you were using a non-3rd party JMS provider you'd be using the MQ nodes!
Likewise, the point of the JMS classes is to provide a level of abstraction between the calling application (be it IIB or some hand rolled Java) and the underlying provider. So the IIB part of this is no more nor less the use of the JMS nodes.
So your question is in fact "how do I configure ActiveMQ to communicate with my client over AMQP", and that's a question for an ActiveMQ forum. I certainly don't have any (recent) experience with ActiveMQ. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
|