Re: JRE 9 Support

2017-08-08 Thread mprakash
When we ran jdeps on activemq-5.15.0 jar, we saw that there were dependencies on sun.misc package although, we never faced any exception in runtime. When we re-analyzed we figured out that activemq leveldb is using sun.misc package. This is in ActiveMQ broker. Thanks. -- View this message in c

Re: Re: how is topic implemented?

2017-08-08 Thread Tim Bain
It doesn't use temporary queues. Rather, each consumer results in a TopicSubscription being created, and each message sent to the topic has a reference handed to t

Re: JRE 9 Support

2017-08-08 Thread Tim Bain
Also, can you describe how you determined that there was such a dependency? On Tue, Aug 8, 2017 at 7:28 AM, Justin Bertram wrote: > Are you talking about the ActiveMQ 5.x broker or the ActiveMQ Artemis > broker? > > > Justin > > On Tue, Aug 8, 2017 at 6:04 AM, mprakash wrote: > > > Hi, > > > >

Re: Re: how is topic implemented?

2017-08-08 Thread wangqinghuan
hi Justin I'm using ActiveMQ 5.9 broker. 1095193...@qq.com From: Justin Bertram [via ActiveMQ] Date: 2017-08-08 21:02 To: wangqinghuan Subject: Re: how is topic implemented? Are you talking about the ActiveMQ 5.x broker or ActiveMQ Artemis broker? Justin On Tue, Aug 8, 2017 at 3:

Re: Connecting jetty websocket client to artemis stomp over websocket connector

2017-08-08 Thread aragoubi
I found an example which help me with this https://github.com/inventit/mqtt-websocket-java . Now, I am trying to manage queue using jmx, but unfortunately, even that I am following the code of jmx example, It doesn't work. I will post another que

Re: Delete/Purge Topic

2017-08-08 Thread senthil2commun...@gmail.com
Hi Megha, Wondering if you could get the AMQ jolokia REST api working? Please let me know, I have a similar requirement in deleting the topic, if not, at least all the message in the topic when it becomes invalid on specific conditions. Appreciate your response in this regard. Thanks, Senthil Kum

Re: JRE 9 Support

2017-08-08 Thread Justin Bertram
Are you talking about the ActiveMQ 5.x broker or the ActiveMQ Artemis broker? Justin On Tue, Aug 8, 2017 at 6:04 AM, mprakash wrote: > Hi, > > We are working on providing* JRE 9 support* for our product and found out > that ActiveMQ depends on classes present in *sun.misc package*. It would be

JRE 9 Support

2017-08-08 Thread mprakash
Hi, We are working on providing* JRE 9 support* for our product and found out that ActiveMQ depends on classes present in *sun.misc package*. It would be great, if you could please provide details about the jdk internal libraries dependency removal. Thanks. -- View this message in context:

Re: how is topic implemented?

2017-08-08 Thread Justin Bertram
Are you talking about the ActiveMQ 5.x broker or ActiveMQ Artemis broker? Justin On Tue, Aug 8, 2017 at 3:06 AM, wangqinghuan <1095193...@qq.com> wrote: > Hi > I have some puzzle about implementation of topic. > When many subsribers subscribe a topic, they each one can receive a copy of > messa

[artemis]: hierarchical topics over AMQP

2017-08-08 Thread Gordon Sim
How do I configure a hierarchical topic address in artemis since 2.0? That is, I want to define a multicast type address 'mytopic' such that I can then subscribe to mytopic/foo or mytopic/bar (or mytopic/#), and these are all treated as parts of the same topic? If I just have:

how is topic implemented?

2017-08-08 Thread wangqinghuan
Hi I have some puzzle about implementation of topic. When many subsribers subscribe a topic, they each one can receive a copy of message. How does activeMq implement topic? Does it maintain a temporary queue for every subscriber? If lots of subsribers, lots of queues are maintained in ActiveMQ br