Re: SecurityException: User name [admin] or password is invalid

2016-02-19 Thread JellyDev01
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

Re: Identify ActiveMQ asyncrhonous message failures?

2016-02-19 Thread mayuraviraj
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

Re: Identify ActiveMQ asyncrhonous message failures?

2016-02-19 Thread Timothy Bish
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

Re: Identify ActiveMQ asyncrhonous message failures?

2016-02-19 Thread Tim Bain
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