Re: 'Hopefully' Configuration Issue

2008-01-04 Thread Rob Davies
I'd suggest that you disable producer flow control - see http://activemq.apache.org/producer-flow-control.html This will allow messages for a slow consumer to be off-lined to disk cheers, Rob On Jan 5, 2008, at 12:19 AM, EJLeVin1 wrote: We have been using 5.0 -- but today I tried seeing if

Re: Deadlock in Active MQ 5.0

2008-01-04 Thread Rob Davies
This looks like a very old version you are using - could you use the latest ActiveMQ snapshot ? On Jan 5, 2008, at 1:36 AM, ManojC wrote: No we are not running on jre 1.4 it is the one which come with JDK 1.6. Thanks Manoj ManojC wrote: Did any body faced this problem. My application g

Re: Dural-subScriber can not receive message!

2008-01-04 Thread bill richard
why these things happened? any hint? bill richard wrote: > > https://issues.apache.org/activemq/browse/AMQ-1536 > -- View this message in context: http://www.nabble.com/Dural-subScriber-can-not-receive-message%21-tp14610996s2354p14629018.html Sent from the ActiveMQ - User mailing list archiv

Re: Deadlock in Active MQ 5.0

2008-01-04 Thread ManojC
No we are not running on jre 1.4 it is the one which come with JDK 1.6. Thanks Manoj ManojC wrote: > > Did any body faced this problem. My application get stuck on this stack > trace in 5.0. The project was done in such way that it getMessage from > Queue1 and post to Queue2 and the other one g

Re: Deadlock in Active MQ 5.0

2008-01-04 Thread Rob Davies
are you running amq 5 on jre 1.4 or something ??? On Jan 5, 2008, at 12:40 AM, ManojC wrote: Did any body faced this problem. My application get stuck on this stack trace in 5.0. The project was done in such way that it getMessage from Queue1 and post to Queue2 and the other one getFromthe

Deadlock in Active MQ 5.0

2008-01-04 Thread ManojC
Did any body faced this problem. My application get stuck on this stack trace in 5.0. The project was done in such way that it getMessage from Queue1 and post to Queue2 and the other one getFromthe Queue1 and post back to Queue2. so it look like something poll(q1)->send)q2) ->poll(q2)->send(q1)

Re: 'Hopefully' Configuration Issue

2008-01-04 Thread EJLeVin1
We have been using 5.0 -- but today I tried seeing if the 5.1 SNAPSHOT would be the fix, but that didn't make any difference. One thing we were able to solve -- we got the producer to continue sending messages even if one of the consuming applications was "paused". The way we did that was throug

Re: How to retrieve message producer's IP address from consumer side?

2008-01-04 Thread ttmdev
If all else fails, you can have the producer assign its IP address to a message property. Joe Hiram Chirino wrote: > > Since producers are decoupled from the consumers this is not currently > easy to do. But it it may be possible hack something up since the > producer's hostname is encoded i

Re: JMS Selectors/ Queue Browsing - Ajax

2008-01-04 Thread Hiram Chirino
A patch would be gladly accepted! On Jan 2, 2008 6:53 AM, toxicafunk <[EMAIL PROTECTED]> wrote: > > I'm also interested on this subject. Looking at activemq-web-4.1.1.jar, i > found the QueueBrowseServlet: > > Renders the contents of a queue using some kind of view. The URI is assumed > to be the

Re: ActiveMQ Slave loops for lock, preventing JBoss to continue deployment

2008-01-04 Thread Hiram Chirino
Yep we have an issue open about it already: http://issues.apache.org/activemq/browse/AMQ-1519 On Jan 3, 2008 3:41 PM, aarvee <[EMAIL PROTECTED]> wrote: > > I have embedded ActiveMQ 5.0.0 (with Master-Slave Shared File System config.) > in JBoss using the suggested RAR approach. > > I am using two

Re: Secure a subset of destinations

2008-01-04 Thread Hiram Chirino
That sounds about right. You should also be aware that it's legal to create a producer with a null destination. So you should really check on each send. Regards, Hiram On Jan 3, 2008 9:35 AM, joe.stapleton <[EMAIL PROTECTED]> wrote: > > Thanks James. If I was to add an interceptor to block addC

Re: Broker Network using SSL with KeyManager+TrustManager

2008-01-04 Thread Hiram Chirino
I don't think it's possible right now, but you could always patch that code to make it work. We accept contributions! On Jan 3, 2008 8:59 AM, h3qvw <[EMAIL PROTECTED]> wrote: > > Hello, > > I'm trying to connect 2 brokers using ssl; I can't use a system property to > specify keystores since they'

Re: ActiveMQ 5 and Log4j JMSAppender error

2008-01-04 Thread Tom Johnson
All the client and server jars are from the ActveMQ installation. Disabling the firewall has no effect on the problem.I've written a test JMS app that produces and consumes an ObjectMessage in the topic which works just fine. Maybe this should be posted in a log4j forum. Hiram Chirin

Re: 'Hopefully' Configuration Issue

2008-01-04 Thread Hiram Chirino
What version you running with? On Jan 4, 2008 1:22 AM, EJLeVin1 <[EMAIL PROTECTED]> wrote: > > Hi, > First off I want to say I am sorry right up front if this is a very > basic question, but I as well as others have been searching for a solution > to this to no avail. We have run into the fo

Re: reg producing of object messages from activemq cpp and consuming using java client

2008-01-04 Thread Hiram Chirino
Hi, Encoding Object Messages from C++ would be VERY difficult. It's a complex encoding and your C++ would need to intimately know about the class structures in your Java world. I'd recommend you send XML messages in C++ in the broker then use the built in camel integration in the broker to trans

Re: ActiveMQ 5 and Log4j JMSAppender error

2008-01-04 Thread Hiram Chirino
You should make sure you use matching versions of the ActiveMQ client and server jars. The error indicates that the client connected but did not receive the expected response from the JMS server. Are you sure you connected to the right port and there are no firewall rules that would cause problem

Re: How to retrieve message producer's IP address from consumer side?

2008-01-04 Thread Hiram Chirino
Since producers are decoupled from the consumers this is not currently easy to do. But it it may be possible hack something up since the producer's hostname is encoded into the message id. Regards, Hiram On Jan 4, 2008 1:18 PM, LeeZ01 <[EMAIL PROTECTED]> wrote: > > Does any one know how to retri

ActiveMQ 5 and Log4j JMSAppender error

2008-01-04 Thread Tom Johnson
I get the following error when attempting to use the JMSAdapter of Log4j to write the messages to ActiveMQ: javax.jms.JMSException: Wire format negotiation timeout: peer did not send his wire format. at org.apache.activemq.util.JMSExceptionSupport.create(JMSExceptionSupport.java:62)

How to retrieve message producer's IP address from consumer side?

2008-01-04 Thread LeeZ01
Does any one know how to retrieve the producer's IP address from the consumer side? I use ActiveMQ 4.1.1 and Spring framework 2.0. Thanks in advance. -- View this message in context: http://www.nabble.com/How-to-retrieve-message-producer%27s-IP-address-from-consumer-side--tp14622124s2354p14622

Re: any activemq version that can handle >1mb message size

2008-01-04 Thread Marco Buss
Hello Klas, ActiveMQ 5.0 can handle Messages >1 if you use blob Messages which where introduced in ActiveMQ 5.0. See: http://activemq.apache.org/blob-messages.html Original-Nachricht > Datum: Fri, 4 Jan 2008 05:43:28 -0800 (PST) > Von: eklas <[EMAIL PROTECTED]> > An: users@ac

any activemq version that can handle >1mb message size

2008-01-04 Thread eklas
Hi I've been trying to use ActiveMq to reliable send messages > 1mb. I've tried several versions and persistence backends without success. Has anyone some real experience of a working setup? activemq v4 with plain file peristence lost messages due to: http://www.nabble.com/lost-msgs-in-4.1.1-%2

reg producing of object messages from activemq cpp and consuming using java client

2008-01-04 Thread narts
I am using activemq 5.0.0 and activemq cpp 2.1.3 on Windows My requirement is to produce object messages using cpp client and consume by java client. But activemq cpp 2.1.3 is not supporting object messages. So i am looking for the possibility to produce text messages using cpp client and consu