Re: [ActiveMQ] Spring 4.1.8 support in ActiveMQ Karaf

2016-01-29 Thread Christopher Shannon
Unfortunately, I had to back this commit out, you can track it here: https://issues.apache.org/jira/browse/AMQ-6136 The Spring DM dependency is causing problems and needs to be removed as it is deprecated. (there is already a jira for this, AMQ-5932) At this point this will most likely have to wa

Re: [ActiveMQ] Spring 4.1.8 support in ActiveMQ Karaf

2016-01-25 Thread Christopher Shannon
No problem, I'm hoping to release 5.13.1 pretty soon (maybe this week) so keep an eye out for it. On Thu, Jan 21, 2016 at 10:45 PM, yogu13 wrote: > I see its done... Thanks Chris! > > Regards, > -Yogesh > > > > -- > View this message in context: > http://activemq.2283324.n4.nabble.com/ActiveMQ-S

Re: [ActiveMQ] Spring 4.1.8 support in ActiveMQ Karaf

2016-01-22 Thread yogu13
I see its done... Thanks Chris! Regards, -Yogesh -- View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMQ-Spring-4-1-8-support-in-ActiveMQ-Karaf-tp4706278p4706308.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: [ActiveMQ] Spring 4.1.8 support in ActiveMQ Karaf

2016-01-22 Thread yogu13
Thanks Chris! If possible please do update this thread once done. Regards, -Yogesh -- View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMQ-Spring-4-1-8-support-in-ActiveMQ-Karaf-tp4706278p4706307.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: [ActiveMQ] Spring 4.1.8 support in ActiveMQ Karaf

2016-01-21 Thread Christopher Shannon
that version should probably be switched from [3.2,4) to [3.2,5) I'll raise a Jira and take care of it in time for 5.13.1 On Thu, Jan 21, 2016 at 5:28 AM, yogu13 wrote: > Hello, > > I noticed that starting from activemq 5.13.0 spring support has been bumped > up to version 4.1.8 pom.xml >

Re: ActiveMQ Spring listener suddently stops working

2015-03-12 Thread Tim Bain
You can use a JMX viewer (such as JConsole) to look at the number of dispatched messages for a given consumer; if messages are backed up on the broker, then you know that the client's prefetch buffer is full, so the number of messages currently dispatched to it is equal to its prefetch buffer size.

Re: ActiveMQ Spring listener suddently stops working

2015-03-12 Thread cdelgadob
That's what I suspect, although I'm not sure if this is handled somehow by Spring. Also, as you can see, the session is transacted, and I'm not sure if that affects the acknowledge mode... I'll take a look at the prefetch buffer as soon as we can start the system, this only happens in production, s

Re: ActiveMQ Spring listener suddently stops working

2015-03-12 Thread Tim Bain
How many messages get processed before it stops working? I see it's using CLIENT_ACKNOWLEDGE; have you confirmed that the ack happens on all code paths (including exceptions)? It's been a while, but I think what happens if you don't ack messages is that you can only process your prefetch buffer w

Re: ActiveMQ spring configuration

2014-06-30 Thread khandelwalanuj
Did anyone get a chance to look at this ? Thanks, Anuj -- View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMQ-spring-configuration-tp4682563p4682650.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: ActiveMQ spring xml configure connector publishedAddressPolicy

2013-07-09 Thread Laurence
I still have not figured out how to xml configure a transportConnector publishedAddressPolicy and publishedHostStrategy to a value of IPADDRESS. I created a groovy script spring bean to assist with configuration and it works for the uri attribute of the transportConnector, but have had no luck set

Re: ActiveMQ spring xml configure connector publishedAddressPolicy

2013-07-07 Thread Christian Posta
Post what you have... it should work.. How are you trying to discover the instances? On Sun, Jul 7, 2013 at 1:06 PM, Laurence wrote: > Hi, > > I'm trying to get activemq discovery via xml configuration to work by > broadcasting machine ip address instead of name (I can make this happen > with >

Re: ActiveMQ, Spring, Maven, beginner problem

2012-05-10 Thread mickhayes
Can I suggest you read ch 9 (pp. 177-212) of the O'Reilly JMS book, "Spring and JMS" 2ed and the section "Configuration for Spring JMS Examples" in Appendix D. It all works. - Michael Hayes B.Sc. (NUI), M.Sc. (DCU), SCSA SCNA -- View this message in context: http://activemq.2283324.n4.nabb

Re: ActiveMQ, Spring/JMS, and text messages

2008-10-14 Thread James Strachan
2008/10/14 Dejan Bosanac <[EMAIL PROTECTED]>: > Ah, Cool :) It's fixed now (revision 704544) Yay! :) -- James --- http://macstrac.blogspot.com/ Open Source Integration http://open.iona.com

Re: ActiveMQ, Spring/JMS, and text messages

2008-10-14 Thread Dejan Bosanac
Ah, Cool :) It's fixed now (revision 704544) Cheers -- Dejan Bosanac http://www.ttmsolutions.com - get a free ActiveMQ user guide ActiveMQ in Action - http://www.manning.com/snyder/ Scripting in Java - http://www.scriptinginjava.net James Strachan wrote: > Sorry I meant the field called "p

Re: ActiveMQ, Spring/JMS, and text messages

2008-10-14 Thread James Strachan
2008/10/14 Dejan Bosanac <[EMAIL PROTECTED]>: > Done. BTW ObjectMessage already had this implemented. > > I'm not sure about properties, most of the message properties are > fields, we could only mess things with byte properties and such. Sorry I meant the field called "properties" which (from mem

Re: ActiveMQ, Spring/JMS, and text messages

2008-10-14 Thread Dejan Bosanac
Done. BTW ObjectMessage already had this implemented. I'm not sure about properties, most of the message properties are fields, we could only mess things with byte properties and such. Cheers -- Dejan Bosanac http://www.ttmsolutions.com - get a free ActiveMQ user guide ActiveMQ in Action - h

Re: ActiveMQ, Spring/JMS, and text messages

2008-10-14 Thread James Strachan
2008/10/14 Dejan Bosanac <[EMAIL PROTECTED]>: > Hi, > > this all looks good. The fact that you see text = null (even when it is > not null) in the log is because "text" filed of the text message object > is set only after the first call of getText() method. > > What is returned by > > objMessage. g

Re: ActiveMQ, Spring/JMS, and text messages

2008-10-14 Thread Dejan Bosanac
Hi, this all looks good. The fact that you see text = null (even when it is not null) in the log is because "text" filed of the text message object is set only after the first call of getText() method. What is returned by objMessage. getText() call? Also, can you check that the message you've

Re: ActiveMQ, Spring 2.5 And Jencks

2008-05-13 Thread Rob Davies
On 13 May 2008, at 09:39, carloc wrote: Hi Everyone, I'm gonna use activemq in a project. It will be a distributed system which will use Active MQ for communicating with each other. Some of the functions involve request/reply pattern usage. My Question Is, Will I need to use Jencks in

Re: ActiveMQ - Spring

2007-11-12 Thread James Strachan
On 30/10/2007, navneek <[EMAIL PROTECTED]> wrote: > > Hi, > > Im trying to use the Spring approach to access the components in > activemq.xml > I tried to load this file using the following syntax > > ApplicationContext context = new > ClassPathXmlApplicationContext("activemq.xml"); > > But it thro

Re: ActiveMQ - Spring

2007-11-10 Thread tpounds
Are you using the correct namespaces/schemas for spring and activemq? Are you using the spring ClassPathXmlApplicationContext directly or the xbean version? The version provided by xbean doesn't require the spring namespaces/schemas to be defined...If you look through the bundled activemq XML fil

Re: ActiveMQ - Spring

2007-11-05 Thread ktecho
I don't know if this is your problem, but I lost a lot of time with a similar problem that was resolved by changing the spring-x.x.jar that comes with ActiveMQ with the latest version from the 1.x branch of Spring. Just delete the .jar that comes with ActiveMQ and put the .jar you downloaded with