[ActiveMQ] Spring 4.1.8 support in ActiveMQ Karaf

2016-01-21 Thread yogu13
Hello, I noticed that starting from activemq 5.13.0 spring support has been bumped up to version 4.1.8 pom.xml however i see that features-core.xml

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-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.

[Artemis] Any plans for Artemis Support for OSGI

2016-01-25 Thread yogu13
Hi, Just wanted to know of any plans Artemis has to release support for OSGI? Is anyone already using it within OSGI containers ? Regards, -Yogesh -- View this message in context: http://activemq.2283324.n4.nabble.com/Artemis-Any-plans-for-Artemis-Support-for-OSGI-tp4706368.html Sent from th

QueueBrowser can see messages being processed but unacknowledged

2016-11-30 Thread yogu13
Hi, This could probably be an issue on the ActiveMQ's QueueBrowser side. ActiveMQ's Queue Browser API returns messages list that includes the ones which currently getting processed by a consumer (not sent the acknowledgment). I have seen this behaviour in ActiveMQ 5.13.3 and 5.14.1 To replicate t

JournalDiskSyncStrategy in KahaDBStore

2016-11-30 Thread yogu13
As part of https://issues.apache.org/jira/browse/AMQ-6377 there is a new option introduced of periodic Sync for journal data. I do not see any documentation of how to go about using it. Does anyone know how to use it ? Regards, -Yogesh -- View this message in context: http://activemq.2283

Re: JournalDiskSyncStrategy in KahaDBStore

2016-12-01 Thread yogu13
Thank you Christopher! I have also posted http://activemq.2283324.n4.nabble.com/QueueBrowser-can-see-messages-being-processed-but-unacknowledged-tp4719599.html;cid=1480524082799-847 Appreciate if you have any pointers for me on this one. Regards, -Yogesh -- View this message in context: htt

Adding Network connectors dynamically

2017-09-01 Thread yogu13
Hello, I have a question on setting up network of brokers dynamically i.e. not via usual static configuration via XML. To explain my scenario we have a discovery server which can tell how many broker instances are available (running) within an environment, We use programmatic API for configuring A

Re: Adding Network connectors dynamically

2017-09-03 Thread yogu13
Hello Tim, Thank you for your reply .. Yes my brokers are embedded and the process gets notified of new servers which come up. Once i wrote the question i did try it out and could see via jmx that the network connector started working and showed up. However i still need to get it working perfectl

ActiveMQ 5.8.0 Issue with HTTP Connector

2013-03-19 Thread yogu13
Hi, We are using ActiveMQ 5.8.0 on JDK 1.6.37 (ubuntu machine). We are getting the following error... As soon as we get the error the consumer count for the queue goes to 0 and stops processing of any messages within the queue. Below is the trace of it 2013-03-19 20:42:00,240 | WARN | /api/messa

Re: ActiveMQ 5.8.0 Issue with HTTP Connector

2013-03-19 Thread yogu13
I also see exceptions logged at info level in activemq.log which keep repeating as if kahadb is continuously trying to persist this message but unable to write due to the UTF restriction...Below is the log for the same activemq.broker.TransportConnection.Transport | Async Exception Handler 2013-03

Re: ActiveMQ 5.8.0 Issue with HTTP Connector

2013-03-20 Thread yogu13
What can be done to get some answers here :) LEt me know if i am missing out on details.. i searched through various forums to only find that people who ended up with this issue never got any resolution. Regards, -Yogesh -- View this message in context: http://activemq.2283324.n4.nabble.com/A

Re: Re:Re: ActiveMQ 5.8.0 Issue with HTTP Connector

2013-03-21 Thread yogu13
I understand that there is a limit on the writeUTF8 method provided by DataOutputStream class but as i understand that there are workarounds for this as well. My question is why isn't ActiveMQ removing this restriction on 64K limit using the workarounds.. To my understanding neither does ActiveMQ

Re: Re:Re: Re:Re: ActiveMQ 5.8.0 Issue with HTTP Connector

2013-03-22 Thread yogu13
Its the payload which is more than 64K .. the only workaround which i am aware of is using BytesMessage instead of sending the information as TextMessage.. Is there a way i can send this info as TextMessage ? Thanks for your time.. Regards, -Yogesh -- View this message in context: http://acti

Re: Re:Re: Re:Re: Re:Re: ActiveMQ 5.8.0 Issue with HTTP Connector

2013-03-22 Thread yogu13
Thats strange! We use the HTTP Connector of ActiveMQ i.e the producer sends a http request (RESTful Call) and gets the message converted into JMS Mesage and is dropped into the queue. Hence the client (producer) doesnt need to have activemq library with him. The messages sent are persistent in na

Re: Re:Re: Re:Re: Re:Re: ActiveMQ 5.8.0 Issue with HTTP Connector

2013-03-25 Thread yogu13
Hi SyoNayi, Can you attach your code? Regards, -Yogesh -- View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMQ-5-8-0-Issue-with-HTTP-Connector-tp4664876p4665101.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Re:Re: Re:Re: Re:Re: Re:Re: ActiveMQ 5.8.0 Issue with HTTP Connector

2013-03-25 Thread yogu13
Hi , First, Thank you for your time...I do not think directly connecting to MQ and dropping the message should be a problem as to my understanding it should still go through the kahadb store via openwire (exception trace) which in this case is throwing the exception. Unless you marked the message

Re: Re:Re: Re:Re: Re:Re: Re:Re: ActiveMQ 5.8.0 Issue with HTTP Connector

2013-04-02 Thread yogu13
I was able to fix the issue... The issue was content-type which was being set as part of the HTTP Request. The HTTP Request had a content type as "application/x-www-form-urlencoded" we changed it to "text/xml" and the exception doesnt comeup. Perhaps there is a fork in logic the way data is serial