Re: ActiveMQ-CPP 2.2 Released

2008-06-25 Thread SKoehler
Hi Tim, would you mind updating the ActiveMQ-CPP main page (http://activemq.apache.org/cms/index.html), the release notes link at the 2.2 release page (links to empty 2.1.2 release notes) and release 2.2 also on the jira page

Re: ActiveMQ Server Hangs

2008-06-25 Thread SUMIT JAIN
qrtt1 wrote: SUMIT JAIN wrote: Is it possible to identify when does the activemq server hangs .? ActiveMQ server is on Linux machine 2GB RAM Other processes running on this machine 1.web application running on tomcat 2.MySQL 3.ActiveMQ server connected to our web application

Disable ActiveMQ.DLQ

2008-06-25 Thread varoa
Hi, I'm using a couple of topics with the configuration shown at the bottom of this msg. There is 1 client consuming from each topic, both run the same code, create a connection like this: ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(this.url); this.connection =

How can i connect to JMX beans of activemq from the code

2008-06-25 Thread Michal Singer
hi. i am trying to monitor actimve jmx beans from inside the code. I am trying something like connecting to the JMX server the process uses with accessing a bean with name: org.apache.activemq.broker name:type=Broker but i get exception: com.expand.expandview.common.exceptions.EVJMXException:

Re: AMQ 5.1 - How to get a list of Queues

2008-06-25 Thread shaf
Does anyone know whether this has been fixed? If so, how can I patch my existing server with the fix (I dont have any build libraries to re-build the source)? It is critical for me to have the ability to browse for queues via the Java API's Thanks, shaf. ttmdev wrote: FYI - the

Re: AMQ 5.1 - How to get a list of Queues

2008-06-25 Thread James Strachan
2008/5/8 shaf [EMAIL PROTECTED]: Thanks guys, so when I try to create a Queue using the following: ActiveMQSession session = this.con.getConnection().createSession(false, Session.AUTO_ACKNOWLEDGE); // create queue Queue request = session.createQueue( name );

Re: How can i connect to JMX beans of activemq from the code

2008-06-25 Thread Mario Siegenthaler
The correct MBean name is: org.apache.activemq:BrokerName=name,Type=Broker The jconsole (at least with Java 6) displays the object name of any MBean. Also it might be worth to look at the activemq_web project which provides a layer to access the broker over jmx (query queues etc). This is then

Re: AMQ 5.1 - How to get a list of Queues

2008-06-25 Thread Mario Siegenthaler
If you really want to create and list queues you could use the JMX-interface to the broker and call the addQueue method on the Broker-MBean. That does create an empty queue. Mario On Wed, Jun 25, 2008 at 3:20 PM, James Strachan [EMAIL PROTECTED] wrote: 2008/5/8 shaf [EMAIL PROTECTED]: Thanks

Re: How can i connect to JMX beans of activemq from the code

2008-06-25 Thread Bruce Snyder
On Wed, Jun 25, 2008 at 6:16 AM, Michal Singer [EMAIL PROTECTED] wrote: hi. i am trying to monitor actimve jmx beans from inside the code. I am trying something like connecting to the JMX server the process uses with accessing a bean with name: org.apache.activemq.broker name:type=Broker

RE: ActiveMQ-CPP 2.2 Released

2008-06-25 Thread Bish, Tim
You may want to refresh your browser cache because when I go on the page everything seems fine, unless I'm missing something. And yes, 2.2 is officially released. Regards Tim. -Original Message- From: SKoehler [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2008 10:57 PM To:

Re: 5.1's linux daemon service config ...

2008-06-25 Thread shaf
In the absence of ./bin/linux-x86-32/activemq, I copied the one that exists in the macosx directory but found a problem. When I startup ActiveMQ 5.1.0 this way I cannot browse the queue using the DestinationSource object, it always return a null. When I try the same starting AMQ using the

Re: HTTPS how to.

2008-06-25 Thread ttmdev
See the following JIRA and associated patch. http://issues.apache.org/activemq/browse/AMQ-1098 There is also this thread, which concerns ActiveMQ’s use of Jetty for HTTPS support. Note that a misconfiguration with respect to the keys and/or certificates can lead to an infinite loop with the

DestinationSource return null if AMQ5.1.0 started using wrapper, bug??

2008-06-25 Thread shaf
Under Linux, in the absence of ./bin/linux-x86-32/activemq, I copied the one that exists in the macosx directory but found a problem. When I startup ActiveMQ 5.1.0 this way I cannot browse the queue using the DestinationSource object, it always return a null. When I try the same starting AMQ

Re: AMQ 5.1 - How to get a list of Queues

2008-06-25 Thread shaf
Gents, I am really having a hard time trying to get a list of queues programmatically (Java). I have seen the DestinationSource ( connection.getDestinationSource() ) working on my local laptop but when deployed onto the server environment, it returns a null for some reason and I know there are

deadlock on memory full with transacted sends

2008-06-25 Thread pica
Hi, I can deadlock 5.1 5.2 latest snapshot configured for pure jdbc persistence using maven's performance test like this: mvn activemq-perf:producer -Dfactory.brokerURL=tcp://192.168.228.84:61616 -Dproducer.sessTransacted=true -Dproducer.sessAckMode=transacted

Re: Regarding Web Console statistics

2008-06-25 Thread Badri
Thanks Mario for the clarification. I found 2 issues: I have attached gif image of the web console. In the topic MarketData.EUR.GBP, we see consumer count as 0, messages sent as: 395765 messages received as 75637. I am not sure how messages received is 75637. In the topic MarketData.USD.CHF, we

client id for topic connections.

2008-06-25 Thread Suchitha Koneru (sukoneru)
Hello Active Mq users , We use active mq broker 4.1.1 for communication between two jvms. Topic publishers , non persistent delivery of messages and durable subscribers are used. // The following is the code snippet for creating a durable subscriber ActiveMQSession

AMQ5.1.0 - Programmatically getting a list of queues

2008-06-25 Thread shaf
Gents, I am really having a hard time trying to get a list of queues programmatically (Java). I have seen the DestinationSource ( connection.getDestinationSource() ) working on my local laptop but when deployed onto the server environment, it returns a null for some reason and I know there are

who can tell me why a NoSuchMethodException,is a bug?

2008-06-25 Thread Will Zhuang
when i user QueueSender.send(object) it throw a NoSuchMethod exception. in it's source code,like this: public abstract class ActiveMQMessageProducerSupport ... { public void send(Message message, int deliveryMode, int priority, long timeToLive) throws JMSException {

RE: ActiveMQ-CPP 2.2 Released

2008-06-25 Thread SKoehler
well shame on meat least for the project index page :-) but on the second page (ServiceMix ?!) it seems still unreleased (https://issues.apache.org/activemq/browse/AMQCPP?report=com.sourcelabs.jira.plugin.portlet.releases:releases-projecttab) and still the link to the release notes (on the