You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomee.apache.org by "Jonathan S. Fisher" <jo...@springventuregroup.com> on 2015/09/28 20:42:23 UTC

Embedded broker is not connecting full duplex to external broker

Hey guys,

I have the following embedded broker configuration:

<Resource
id="ra/activemq"
type="ActiveMQResourceAdapter">
BrokerXmlConfig =
broker:(vm://tomee1,network:static:(tcp://external-activemq-instance:61616)?duplex=true)?persistent=true&amp;brokerName=tomee1
ServerUrl = vm://tomee1
datasource =
</Resource>

When I look on the console for
http://external-activemq-instance:8161/admin/network.jsp I do not see a
bridge created for this connection. I *do* see a connection however on the
http://external-activemq-instance:8161/admin/connections.jsp page.

We can get activemq<-->activemq bridges to work bidirectionally no problem,
it seems to be just the embedded broker. We need messages to flow in both
directions. Any idea why this why this would be failing?

*Jonathan S. Fisher*

-- 
Email Confidentiality Notice: The information contained in this 
transmission is confidential, proprietary or privileged and may be subject 
to protection under the law, including the Health Insurance Portability and 
Accountability Act (HIPAA). The message is intended for the sole use of the 
individual or entity to whom it is addressed. If you are not the intended 
recipient, you are notified that any use, distribution or copying of the 
message is strictly prohibited and may subject you to criminal or civil 
penalties. If you received this transmission in error, please contact the 
sender immediately by replying to this email and delete the material from 
any computer.

Re: Embedded broker is not connecting full duplex to external broker

Posted by Romain Manni-Bucau <rm...@gmail.com>.
DiscoveryNetworkConnector has it but it is not set properly by AMQ factory


Romain Manni-Bucau
@rmannibucau <https://twitter.com/rmannibucau> |  Blog
<http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> |
LinkedIn <https://www.linkedin.com/in/rmannibucau> | Tomitriber
<http://www.tomitribe.com>

2015-09-28 13:39 GMT-07:00 Jonathan S. Fisher <
jonathan@springventuregroup.com>:

> Hmm... does *anyone* have this working? We can't get messages to flow at
> all between the embedded broker and the "normal" external broker.
>
> Trying to find a workaround, I was looking through
>
> https://github.com/apache/activemq/blob/master/activemq-client/src/main/java/org/apache/activemq/transport/discovery/multicast/MulticastDiscoveryAgent.java
> I'm not seeing any references to duplex either....
>
> Any pointers on how to get embedded/external broker communication working
> appreciated. I have a feeling it's likely failing because ActiveMQ can't
> advertise interest in destinations...
>
>
> On Mon, Sep 28, 2015 at 2:44 PM, Romain Manni-Bucau <rmannibucau@gmail.com
> >
> wrote:
>
> > seems duplex is ignored on SimpleDiscoveryAgent and not set on
> > DiscoveryNetworkConnector with AMQ default factory.
> > see
> >
> org.apache.activemq.transport.discovery.simple.SimpleDiscoveryAgentFactory#doCreateDiscoveryAgent
> >
> > probably something to ask amq guys
> >
> >
> > Romain Manni-Bucau
> > @rmannibucau <https://twitter.com/rmannibucau> |  Blog
> > <http://rmannibucau.wordpress.com> | Github <
> > https://github.com/rmannibucau> |
> > LinkedIn <https://www.linkedin.com/in/rmannibucau> | Tomitriber
> > <http://www.tomitribe.com>
> >
> > 2015-09-28 11:42 GMT-07:00 Jonathan S. Fisher <
> > jonathan@springventuregroup.com>:
> >
> > > Hey guys,
> > >
> > > I have the following embedded broker configuration:
> > >
> > > <Resource
> > > id="ra/activemq"
> > > type="ActiveMQResourceAdapter">
> > > BrokerXmlConfig =
> > >
> > >
> >
> broker:(vm://tomee1,network:static:(tcp://external-activemq-instance:61616)?duplex=true)?persistent=true&amp;brokerName=tomee1
> > > ServerUrl = vm://tomee1
> > > datasource =
> > > </Resource>
> > >
> > > When I look on the console for
> > > http://external-activemq-instance:8161/admin/network.jsp I do not see
> a
> > > bridge created for this connection. I *do* see a connection however on
> > the
> > > http://external-activemq-instance:8161/admin/connections.jsp page.
> > >
> > > We can get activemq<-->activemq bridges to work bidirectionally no
> > problem,
> > > it seems to be just the embedded broker. We need messages to flow in
> both
> > > directions. Any idea why this why this would be failing?
> > >
> > > *Jonathan S. Fisher*
> > >
> > > --
> > > Email Confidentiality Notice: The information contained in this
> > > transmission is confidential, proprietary or privileged and may be
> > subject
> > > to protection under the law, including the Health Insurance Portability
> > and
> > > Accountability Act (HIPAA). The message is intended for the sole use of
> > the
> > > individual or entity to whom it is addressed. If you are not the
> intended
> > > recipient, you are notified that any use, distribution or copying of
> the
> > > message is strictly prohibited and may subject you to criminal or civil
> > > penalties. If you received this transmission in error, please contact
> the
> > > sender immediately by replying to this email and delete the material
> from
> > > any computer.
> > >
> >
>
> --
> Email Confidentiality Notice: The information contained in this
> transmission is confidential, proprietary or privileged and may be subject
> to protection under the law, including the Health Insurance Portability and
> Accountability Act (HIPAA). The message is intended for the sole use of the
> individual or entity to whom it is addressed. If you are not the intended
> recipient, you are notified that any use, distribution or copying of the
> message is strictly prohibited and may subject you to criminal or civil
> penalties. If you received this transmission in error, please contact the
> sender immediately by replying to this email and delete the material from
> any computer.
>

Re: Embedded broker is not connecting full duplex to external broker

Posted by "Jonathan S. Fisher" <jo...@springventuregroup.com>.
Hmm... does *anyone* have this working? We can't get messages to flow at
all between the embedded broker and the "normal" external broker.

Trying to find a workaround, I was looking through
https://github.com/apache/activemq/blob/master/activemq-client/src/main/java/org/apache/activemq/transport/discovery/multicast/MulticastDiscoveryAgent.java
I'm not seeing any references to duplex either....

Any pointers on how to get embedded/external broker communication working
appreciated. I have a feeling it's likely failing because ActiveMQ can't
advertise interest in destinations...


On Mon, Sep 28, 2015 at 2:44 PM, Romain Manni-Bucau <rm...@gmail.com>
wrote:

> seems duplex is ignored on SimpleDiscoveryAgent and not set on
> DiscoveryNetworkConnector with AMQ default factory.
> see
> org.apache.activemq.transport.discovery.simple.SimpleDiscoveryAgentFactory#doCreateDiscoveryAgent
>
> probably something to ask amq guys
>
>
> Romain Manni-Bucau
> @rmannibucau <https://twitter.com/rmannibucau> |  Blog
> <http://rmannibucau.wordpress.com> | Github <
> https://github.com/rmannibucau> |
> LinkedIn <https://www.linkedin.com/in/rmannibucau> | Tomitriber
> <http://www.tomitribe.com>
>
> 2015-09-28 11:42 GMT-07:00 Jonathan S. Fisher <
> jonathan@springventuregroup.com>:
>
> > Hey guys,
> >
> > I have the following embedded broker configuration:
> >
> > <Resource
> > id="ra/activemq"
> > type="ActiveMQResourceAdapter">
> > BrokerXmlConfig =
> >
> >
> broker:(vm://tomee1,network:static:(tcp://external-activemq-instance:61616)?duplex=true)?persistent=true&amp;brokerName=tomee1
> > ServerUrl = vm://tomee1
> > datasource =
> > </Resource>
> >
> > When I look on the console for
> > http://external-activemq-instance:8161/admin/network.jsp I do not see a
> > bridge created for this connection. I *do* see a connection however on
> the
> > http://external-activemq-instance:8161/admin/connections.jsp page.
> >
> > We can get activemq<-->activemq bridges to work bidirectionally no
> problem,
> > it seems to be just the embedded broker. We need messages to flow in both
> > directions. Any idea why this why this would be failing?
> >
> > *Jonathan S. Fisher*
> >
> > --
> > Email Confidentiality Notice: The information contained in this
> > transmission is confidential, proprietary or privileged and may be
> subject
> > to protection under the law, including the Health Insurance Portability
> and
> > Accountability Act (HIPAA). The message is intended for the sole use of
> the
> > individual or entity to whom it is addressed. If you are not the intended
> > recipient, you are notified that any use, distribution or copying of the
> > message is strictly prohibited and may subject you to criminal or civil
> > penalties. If you received this transmission in error, please contact the
> > sender immediately by replying to this email and delete the material from
> > any computer.
> >
>

-- 
Email Confidentiality Notice: The information contained in this 
transmission is confidential, proprietary or privileged and may be subject 
to protection under the law, including the Health Insurance Portability and 
Accountability Act (HIPAA). The message is intended for the sole use of the 
individual or entity to whom it is addressed. If you are not the intended 
recipient, you are notified that any use, distribution or copying of the 
message is strictly prohibited and may subject you to criminal or civil 
penalties. If you received this transmission in error, please contact the 
sender immediately by replying to this email and delete the material from 
any computer.

Re: Embedded broker is not connecting full duplex to external broker

Posted by Romain Manni-Bucau <rm...@gmail.com>.
seems duplex is ignored on SimpleDiscoveryAgent and not set on
DiscoveryNetworkConnector with AMQ default factory.
see org.apache.activemq.transport.discovery.simple.SimpleDiscoveryAgentFactory#doCreateDiscoveryAgent

probably something to ask amq guys


Romain Manni-Bucau
@rmannibucau <https://twitter.com/rmannibucau> |  Blog
<http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> |
LinkedIn <https://www.linkedin.com/in/rmannibucau> | Tomitriber
<http://www.tomitribe.com>

2015-09-28 11:42 GMT-07:00 Jonathan S. Fisher <
jonathan@springventuregroup.com>:

> Hey guys,
>
> I have the following embedded broker configuration:
>
> <Resource
> id="ra/activemq"
> type="ActiveMQResourceAdapter">
> BrokerXmlConfig =
>
> broker:(vm://tomee1,network:static:(tcp://external-activemq-instance:61616)?duplex=true)?persistent=true&amp;brokerName=tomee1
> ServerUrl = vm://tomee1
> datasource =
> </Resource>
>
> When I look on the console for
> http://external-activemq-instance:8161/admin/network.jsp I do not see a
> bridge created for this connection. I *do* see a connection however on the
> http://external-activemq-instance:8161/admin/connections.jsp page.
>
> We can get activemq<-->activemq bridges to work bidirectionally no problem,
> it seems to be just the embedded broker. We need messages to flow in both
> directions. Any idea why this why this would be failing?
>
> *Jonathan S. Fisher*
>
> --
> Email Confidentiality Notice: The information contained in this
> transmission is confidential, proprietary or privileged and may be subject
> to protection under the law, including the Health Insurance Portability and
> Accountability Act (HIPAA). The message is intended for the sole use of the
> individual or entity to whom it is addressed. If you are not the intended
> recipient, you are notified that any use, distribution or copying of the
> message is strictly prohibited and may subject you to criminal or civil
> penalties. If you received this transmission in error, please contact the
> sender immediately by replying to this email and delete the material from
> any computer.
>