Re: ActiveMQ to Websphere MQ

2010-08-13 Thread sweenma
"Did you ever resolve this issue? I have having the same problem." No I did not. Instead of using activemq to websphere mq communication, I just created some reader threads that read the activemq msg's and forwarded it off mq. Very fast. -- View this message in context: http://old.nabble.com/A

Re: ActiveMQ to Websphere MQ

2010-08-13 Thread Craig Brumfield
Did you ever resolve this issue? I have having the same problem. Thanks, Craig -- View this message in context: http://old.nabble.com/ActiveMQ-to-Websphere-MQ-tp28097168p29433806.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

How do I determine what a consumer is being removed.

2010-08-13 Thread Robillard, Greg L
I am running a stability test on activemq and periodically, my consumers are being removed and they shouldn't be. How can I determine the cause of the disconnect. Is it client, network, activemq, etc. 2010-08-13 16:18:49,456 | DEBUG | fltwinds2 removing consumer: ID:EAGD9722385-1439-128171413

AMQ to Websphere MQ performance

2010-08-13 Thread Craig Brumfield
I configured a connection from my AMQ to Webspere MQ and can send messages, but they are sent very slowly. It seems like each new message is a new connection to MQ. If you browser consumers on my outgoing queue, it always shows 1, but if you click to view this consumer, it says it is invalid. A

Can I run Performance Module from desktop to measure brokers on remote host?

2010-08-13 Thread jzhang
I am trying to run perf test (http://activemq.apache.org/activemq-performance-module-users-manual.html) to benchmark brokers. I ran: mvn activemq-perf:broker -Durl=broker:tcp://lab_host.mycompany.com:61617 It throws error: Loading message broker from: broker:tcp://lab_host.mycompany.com:61617 E

Re: How to forward a full message received in Java by onMessage() into another queue?

2010-08-13 Thread Gary Tully
It will be a new message with a new Id, so you will need to explicitly set the correlationID to the original messageID On 13 August 2010 14:28, Martin C. wrote: > Hi, > > On Fri, Aug 13, 2010 at 2:30 PM, Gary Tully wrote: >> >> you need a message producer and do producer.send(..., message); >> >

Re: last 5.4.0-SNAPSHOT build do not support 0.0.0.0 in uri transportConnector

2010-08-13 Thread Dejan Bosanac
Hi, that's fixed today. You can build the current trunk or wait for the next snapshot. Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Fri, Aug 13, 2010

last 5.4.0-SNAPSHOT build do not support 0.0.0.0 in uri transportConnector

2010-08-13 Thread tranchida
I'm trying the last 5.4.0-fuse-SNAPSHOT build (aug 13) in activemq.xml, I can not use anymore 0.0.0.0 in the uri transportConnector ( it was ok in build aug 5) in order to start broker, see error below. I need to replace 0.0.0.0 with hostname and add a new transportConnector with localhost. Thi

Re: Why are "ActiveMQ.Advisory.Consumer....." topics automatically created?

2010-08-13 Thread Gary Tully
Two things to disable, broker attribute advisorySupport=false and on a connection factory or in the brokerURL, ?jms.watchTopicAdvisories=false (so the watchTopicAdvisories attribute of a connection/connection factory) If there are not consumers for these destinations there is little overhead as al

Why are "ActiveMQ.Advisory.Consumer....." topics automatically created?

2010-08-13 Thread BenXS
When I start ActiveMQ and do some simple things like peeking into a certain jms msg in a queue (through Browser Console) then always automatically ActiveMQ.Advisory.Consumer.. topics are created. Why? How can I (permanently) disable the creation of such topics? The only thing I added to

Re: Can the same Java Bean consume from Queues or Topics? Only activemq.xml config change?

2010-08-13 Thread Martin C.
Hi, On Fri, Aug 13, 2010 at 3:21 PM, BenXS wrote: > Can I use the same (unchanged) java bean to consume jms msgs from a(nother) > topic instead from the previous queue? Yes, this should work. You only have to be aware of the changed semantics and delivery guarantees. Best regards, Martin

Re: How to forward a full message received in Java by onMessage() into another queue?

2010-08-13 Thread Martin C.
Hi, On Fri, Aug 13, 2010 at 2:30 PM, Gary Tully wrote: > > you need a message producer and do producer.send(..., message); > will this also preserve the message ID or will a new message ID be used for this message? I am interested as I may need to forward some messages to another broker and I'd

Can the same Java Bean consume from Queues or Topics? Only activemq.xml config change?

2010-08-13 Thread BenXS
Assume I created successfully a Java Bean which consumes JMS msgs through an onMessage() method from a queue. Broker URL and queue name is defined in (Spring) XML in activemq.xml Can I use the same (unchanged) java bean to consume jms msgs from a(nother) topic instead from the previous queue? A

André Dittrich ist außer Haus.

2010-08-13 Thread andre . dittrich
Ich werde ab 13.08.2010 nicht im Büro sein. Ich kehre zurück am 06.09.2010.

Re: How to forward a full message received in Java by onMessage() into another queue?

2010-08-13 Thread Gary Tully
you need a message producer and do producer.send(..., message); On 13 August 2010 12:40, BenXS wrote: > > Assume I wrote a Java bean (configured by Spring) which receives successfully > incoming messages on a certain queue. So the "onMessage()" method looks > similar like: > > public void onMessa

How to forward a full message received in Java by onMessage() into another queue?

2010-08-13 Thread BenXS
Assume I wrote a Java bean (configured by Spring) which receives successfully incoming messages on a certain queue. So the "onMessage()" method looks similar like: public void onMessage(Message message) { ... } Now I want to forward/sent the just received message into another queue "bbb

Re: How to ensure FIFO function in ActiveMQ

2010-08-13 Thread WuKo
Hi Gary, Thanks for the quick response. Yelei Gary Tully wrote: > > Queues are FIFO by default > > On 13 August 2010 11:37, WuKo wrote: >> >> Hello, >> >> Does anybody knows if ActiveMQ by default has FIFO function in Queue >> model >> (not subscribe model)? >> If not, is there any way to co

Re: How to ensure FIFO function in ActiveMQ

2010-08-13 Thread Gary Tully
Queues are FIFO by default On 13 August 2010 11:37, WuKo wrote: > > Hello, > > Does anybody knows if ActiveMQ by default has FIFO function in Queue model > (not subscribe model)? > If not, is there any way to configure it? > Thanks. > > Yelei > -- > View this message in context: > http://old.nab

How to ensure FIFO function in ActiveMQ

2010-08-13 Thread WuKo
Hello, Does anybody knows if ActiveMQ by default has FIFO function in Queue model (not subscribe model)? If not, is there any way to configure it? Thanks. Yelei -- View this message in context: http://old.nabble.com/How-to-ensure-FIFO-function-in-ActiveMQ-tp29427470p29427470.html Sent from the

[ANN]VTD-XML 2.9

2010-08-13 Thread Jimmy Zhang
VTD-XML 2.9, the next generation XML Processing API for SOA and Cloud computing, has been released. Please visit https://sourceforge.net/projects/vtd-xml/files/ to download the latest version. a.. Strict Conformance a.. VTD-XML now fully conforms to XML namespace 1.0 spec b.. Performan