Re: camel and email

2011-08-22 Thread Claus Ibsen
On Sun, Aug 21, 2011 at 11:41 PM, Johan Edstrom seij...@gmail.com wrote: You probably want to *read* with pop3/imap, smtp is a transport protocol, not a mailbox protocol, i,e it is a producing side component. You also need to add the nessasary JARs to the classpath, such as camel-mail JAR

Re: Running multiple activemq instances on the same server

2011-08-22 Thread Dejan Bosanac
Seems like you're using some older version of the broker. Try 5.5.0 Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ in Action - http://www.manning.com/snyder/ Blog -

Re: Delete queues from JDBC storage

2011-08-22 Thread Dejan Bosanac
Sure you can. Have you tried it? Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Sat, Aug 20, 2011 at 4:16

Re: Geronimo and Web-Console

2011-08-22 Thread Dejan Bosanac
You need to provide more info on what you tried and what results you got Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ in Action - http://www.manning.com/snyder/ Blog -

Re: Broker of brokers topic duplicate question

2011-08-22 Thread Dejan Bosanac
Try turning conduit subscriptions on http://activemq.apache.org/networks-of-brokers.html#NetworksofBrokers-WhentouseandnotuseConduitsubscriptions Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com

per destination expiry

2011-08-22 Thread kaustubh khasnis
Hi, We can set the expiry of messages when sending the message from producer. But is there any way we can set the message expiry per destination inside the broker?? Thanks and regards Kaustubh

Re: per destination expiry

2011-08-22 Thread Gary Tully
You could do this with a simple broker plugin, along the lines of: org.apache.activemq.plugin.ForcePersistencyModeBrokerPlugin see: http://activemq.apache.org/developing-plugins.html On 22 August 2011 09:51, kaustubh khasnis kaustubh.khas...@gmail.com wrote: Hi, We can set the expiry of

Re: Running multiple activemq instances on the same server

2011-08-22 Thread JohnTom
Hi I was already using ActiveMQ 5.5.0 -- View this message in context: http://activemq.2283324.n4.nabble.com/Running-multiple-activemq-instances-on-the-same-server-tp3758394p3759607.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Running multiple activemq instances on the same server

2011-08-22 Thread JohnTom
Hi I was already using active MQ 5.5.0 On Mon, Aug 22, 2011 at 10:58 AM, Dejan Bosanac [via ActiveMQ] ml-node+3759510-812903270-261...@n4.nabble.com wrote: Seems like you're using some older version of the broker. Try 5.5.0 Regards -- Dejan Bosanac - http://twitter.com/dejanb

Re: Running multiple activemq instances on the same server

2011-08-22 Thread Dejan Bosanac
Think not. It works here with 5.5.0, but you can expect that kind of error on older versions as activemq script wasn't supporting commands Regards -- Dejan Bosanac - http://twitter.com/dejanb - The experts in open source integration and messaging - http://fusesource.com ActiveMQ

Re: Sharing producer session between threads

2011-08-22 Thread Gary Tully
use a connection pool, see: http://activemq.apache.org/maven/5.5.0/activemq-pool/apidocs/index.html On 21 August 2011 15:38, moismail mohammed.h...@gmail.com wrote: Hi All, I am trying to send huge amount of messages from multiple threads. I want to optimize the performance by sharing either

Re: I am losing persistent messages - debug help needed

2011-08-22 Thread James Green
To follow-up on this. I added the receipt header on each send() and now all messages are received by the broker. Producer Flow Control remains on, and the memory limit remains at 5MB (both settings unchanged). I will therefore speculate that the broker was dropping messages and was unable to

Re: Sharing producer session between threads

2011-08-22 Thread moismail
Hi Gary, Thanks for the reply but, v 5.5 has a dependency on JDK 1.6 and I am using JDK 1.5 right now. Is its supported under version 5.4.2 ? Thanks On Mon, Aug 22, 2011 at 1:39 PM, Gary Tully [via ActiveMQ] ml-node+3759736-240455935-261...@n4.nabble.com wrote: use a connection pool, see:

Re: Sharing producer session between threads

2011-08-22 Thread Gary Tully
yep: http://activemq.apache.org/maven/5.4.0/activemq-pool/apidocs/index.html On 22 August 2011 12:32, moismail mohammed.h...@gmail.com wrote: Hi Gary, Thanks for the reply but, v 5.5 has a dependency on JDK 1.6 and I am using JDK 1.5 right now. Is its supported under version 5.4.2 ? Thanks

Re: per destination expiry

2011-08-22 Thread kaustubh khasnis
Thanks a lot Gary --Kaustubh On Mon, Aug 22, 2011 at 2:31 PM, Gary Tully gary.tu...@gmail.com wrote: You could do this with a simple broker plugin, along the lines of: org.apache.activemq.plugin.ForcePersistencyModeBrokerPlugin see: http://activemq.apache.org/developing-plugins.html On 22

Uniqueness of indexes in message store

2011-08-22 Thread Hervé BARRAULT
Hi, I am using ActiveMQ 5.4.0 and i would know which combination of keys is unique. We have producer identifier (ProducerId) and producer sequence identifier (long) in MessageID Producer identifier is combination of connection identifier (String) session identifier (long) and a value (long)

XML view for durable subscribers

2011-08-22 Thread Aleksandar Ivanisevic
Just noticed that there is no XML view for durable topic subscribers and since this can be really useful for monitoring etc, I've cobbled up a view like this: subscribers subscriber clientId=foo subscriptionName=bar

Re: Message loss in network of brokers - transactional send

2011-08-22 Thread oseymen
Also, I think a send transaction would help, it should encompass all of the composite destinations. That is correct. When I send messages in transaction, I get no message loss - but both JMX and admin console pending message count displays wrong number. My setup is still same - 2 brokers,

Re: Running multiple activemq instances on the same server

2011-08-22 Thread oseymen
Can you try activemq-admin instead of activemq? I.e. bin\activemq-admin create instance1? Ozan -- View this message in context: http://activemq.2283324.n4.nabble.com/Running-multiple-activemq-instances-on-the-same-server-tp3758394p3760444.html Sent from the ActiveMQ - User mailing list archive

Re: Broker of brokers topic duplicate question

2011-08-22 Thread David Fischer(Gtalk)
Thanks for replying. Yes i have try true and false on the topic setting and still i get duplicates. If some has a 7 broker hub/spoke model configuration setting it would be awsome. So here is more information. does this make sense? All 6 spoke machines have network connections to each other.

Is it possible to secure only one topic

2011-08-22 Thread manua
HI, Is it possible to secure only one topic and rest all queues/topic will be kept as such. I used the activemq-security.xml file as the conf file, and have removed all references to /queues...still then, for connecting to any queue, it needs the log in information. It works fine if I specify

Re: Subscriber on a secure topic goes in unack infinite loop

2011-08-22 Thread manua
Thanks Tim, will try to code for that. Thanks Manu -- View this message in context: http://activemq.2283324.n4.nabble.com/Subscriber-on-a-secure-topic-goes-in-unack-infinite-loop-tp3760584p3761108.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Activemeq Redelivery Question

2011-08-22 Thread neoman
Hello Everyone, We are currently using ActivemMQ 5.3.1 in our project. This is our redelivery policy. bean id=redeliveryPolicy class=org.apache.activemq.RedeliveryPolicy property name=initialRedeliveryDelay value=15000 / property name=maximumRedeliveries