Re: Can't Disable JMX?

2009-06-09 Thread mrh
That seems to have resolved the web access problem. However, I'm on windows, and I've set the SUNJMX variable as directed, but "run.jar" is still accessible under the "local process" category in jconsole. Does it need to be disabled for camel too? Thanks again,

Re: Can't Disable JMX?

2009-06-09 Thread mrh
y. Below are examples: > > Linux/Unix: > > SUNJMX= > > Windows: > > if "%SUNJMX%" == "" set SUNJMX= > Thanks for the quick reply, Bruce. I've updated the startup script, but I can still access run.jar from jconsole and also pull up the web ad

Can't Disable JMX?

2009-06-09 Thread mrh
I'm trying to disable JMX using the activemq.xml file (useJmx="false") and it does not seem to be working. I can still connect using jconsole and the admin webpage. Is this a bug or is there somewhere else that this must be disabled? Thanks, mrh -- View this message in

SSL Certificate Management

2009-02-23 Thread mrh
function like its HTTPS counterpart such that the broker's certificate is not sent to the client until the handshake, at which point a user has the ability to approve or disapprove? I'm still learning about JSSE, but could a "TrustManager" object be of assistance here? Thank

Re: How to specify SSL Ciphers

2009-02-12 Thread mrh
"&socket.enabledCipherSuites=..." does not seem to be working. Am I doing something wrong? Also, I can't seem to use the SSLTransportFactory class (which has a "compositeConfigure" method) in conjunction with the ActiveMQConnection class. Any assistance is gre

How to specify SSL Ciphers

2009-02-11 Thread mrh
? Maybe in the transport options of the URI (for example: ssl://localhost:port?enabledCipherSuites=...")? Or in the ActiveMQ.xml file? Or, even the SSL_OPTS property? I'm still trying to understand the Introspection and was curious if this is possible? Thanks, mrh -- View this

RE: SSL Support in CMS?

2008-12-16 Thread mrh
>From a developer's perspective, is the existing functionality close? I see where there's already an existing code branch. If someone were to want to complete the task, could it be done relatively quickly, or is there still a significant amount of work to do / code to imp

RE: SSL Support in CMS?

2008-12-15 Thread mrh
With any of the recent builds, has support for SSL been added to the AMQ-CPP library? If not, do you plan to add it anytime soon? Thanks, mrh tabish121 wrote: > > Note that this only works on Unix platforms, not windows. > -- View this message in context: http://www.nabbl

Re: Message persistence

2008-04-23 Thread mrh
I've noticed the same thing in JMX when trying to set the persistent="false" in the tag. Is this a bug or are messages still sent as persistent / durable even when persistence is disabled by the broker? Thanks, mrh Džiugas Baltrūnas-3 wrote: > > Hello, > > I wan

Re: AMQ 5.0 -- CMS

2007-12-14 Thread mrh
Correction: will ActiveMQ-CPP work with it? Thanks, mrh mrh wrote: > > I've been testing a program using AMQ 4.1.1 and just noticed that 5.0.0 is > now out... when was it released, and will CMS work with it? > > Thanks, > mrh > -- View this message in context:

AMQ 5.0 -- CMS

2007-12-14 Thread mrh
I've been testing a program using AMQ 4.1.1 and just noticed that 5.0.0 is now out... when was it released, and will CMS work with it? Thanks, mrh -- View this message in context: http://www.nabble.com/AMQ-5.0CMS-tp14339691s2354p14339691.html Sent from the ActiveMQ - User mailing

Re: Queue "hangs" when Kaha Store kicks in. Restart required.

2007-12-10 Thread mrh
I believe I've noticed something similar using a topic... any ideas? Thanks, mrh DominicTulley wrote: > > Hi, I've been investigating Camel recently and today I was taking a look > at message throughput in ActiveMQ when Camel routing is being used. > > I have been

Selector Modification

2007-11-09 Thread mrh
Is it possible to modify selectors after the listener has been started, without closing and restarting the consumer? Thanks, mrh -- View this message in context: http://www.nabble.com/Selector-Modification-tf4778084s2354.html#a13668366 Sent from the ActiveMQ - User mailing list archive at

Re: SSL Support in CMS?

2007-10-31 Thread mrh
n. I apologize in advance for my ignorance of the library... still trying to understand everything. Thanks again, mrh Tim Bish wrote: > > No definite time line at the moment. I'm not sure how stomp could be an > alternative to SSL could you elaborate? > -- View this mes

RE: SSL Support in CMS?

2007-10-31 Thread mrh
Oh ok... do you anticipate windows support being added anytime soon? If not, would Stomp be an alternative? Thanks, mrh -- View this message in context: http://www.nabble.com/SSL-Support-in-CMS--tf4725795s2354.html#a13517720 Sent from the ActiveMQ - User mailing list archive at Nabble.com.

SSL Support in CMS?

2007-10-31 Thread mrh
In a post from last November, it was stated that CMS did not support SSL. http://www.nabble.com/cms-API-in-Windows-tf2627647s2354.html#a7352661 Click here to view that thread. Since that time, has support for SSL been added to CMS? If not, can Stomp or Openwire handle SSL? Thanks, mrh

Re: Stop Thread / Stop Listening

2007-10-26 Thread mrh
I can't seem to find the link to the examples... would you mind posting it here? Thanks, mrh -- View this message in context: http://www.nabble.com/Stop-Thread---Stop-Listening-tf4693571s2354.html#a13432796 Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Stop Thread / Stop Listening

2007-10-26 Thread mrh
, the program exits without stopping the consumer correctly, which throws an exception. Now I'm starting to understand. Thanks again for all of the assistance! mrh tabish121 wrote: > > When you use a MessageListener that listener is notified in a thread > context other than the main

Re: Stop Thread / Stop Listening

2007-10-26 Thread mrh
In other words, if the asynchronous listener is listening "forever", is it possible to neatly stop that listener by closing the connection, the session, the consumer, etc? --mrh mrh wrote: > > Thank you for the reply, Tim. > > Yes, this is my primary question: &

Re: Stop Thread / Stop Listening

2007-10-26 Thread mrh
own, no wait... just listen in the background while allowing the user to do other things, until the user wants to exit the entire application. Is the only way to do this with threads? Thanks again, mrh On Fri, 2007-10-26 at 06:49 -0700, mrh wrote: > In the activemq-cpp example code, ther

Re: Stop Thread / Stop Listening

2007-10-26 Thread mrh
ly receive messages (using the onMessage function to process them) but stop the listener from the outside? Say, from an outside thread? Thanks, mrh -- View this message in context: http://www.nabble.com/Stop-Thread---Stop-Listening-tf4693571s2354.html#a13427708 Sent from the ActiveMQ - User ma

Stop Thread / Stop Listening

2007-10-25 Thread mrh
;exit"? Thanks, mrh -- View this message in context: http://www.nabble.com/Stop-Thread---Stop-Listening-tf4693571s2354.html#a13415697 Sent from the ActiveMQ - User mailing list archive at Nabble.com.

RE: Openwire or Stomp Tutorial

2007-10-23 Thread mrh
Thanks, Nate! That is exactly what I was looking for. Somehow I had overlooked the constructor. I had found the consumer's getMessageSelector() method, but could not find a corresponding setMessageSelector(). I don't know why I did not check the constructor. Thanks, again! mrh

Openwire or Stomp Tutorial

2007-10-23 Thread mrh
e activemq-cpp example code, but cannot find anything on selectors with CMS. Can someone point in the direction of example code or a tutorial? Thanks, mrh -- View this message in context: http://www.nabble.com/Openwire-or-Stomp-Tutorial-tf4677582s2354.html#a13364721 Sent from the ActiveMQ - Us