RESOLVED -
For those also having this issue, I eventually resolved the issue by adding
the appropriate ACTIVEMQ variables to the /etc/default/activemq file
e.g.
ACTIVEMQ_HOME="//directorynamehere//xyx/"
ACTIVEMQ_CONF="/$ACTIVEMQ_HOME/conf/"
etc
How the system worked fine without these original
While I was analysing how activemq do it async send internally I found
following approach to get async response. ( This is using activemq producer
implementation). Unfortunately i had to abandon PooledConnectionFactory
since PooledConnection does not have a way to return ActiveMQMessageProducer
( i
On 02/19/2016 02:35 AM, mayuraviraj wrote:
> While I was analysing how activemq do it async send internally I found
> following approach to get async response. ( This is using activemq producer
> implementation). Unfortunately i had to abandon PooledConnectionFactory
> since PooledConnection does n
Remember that you can always call a private or protected method (or field)
via reflection. You pay a price in terms of both performance and
maintainability, but neither price is so high that you shouldn't at least
consider the option if you don't have a better one.
On Feb 19, 2016 9:16 AM, "Timoth