Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 69884 invoked from network); 14 May 2006 14:51:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 May 2006 14:51:28 -0000 Received: (qmail 9080 invoked by uid 500); 14 May 2006 14:51:27 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 8995 invoked by uid 500); 14 May 2006 14:51:26 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 8656 invoked by uid 99); 14 May 2006 14:51:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 May 2006 07:51:22 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 14 May 2006 07:51:03 -0700 Received: (qmail 69284 invoked by uid 65534); 14 May 2006 14:50:42 -0000 Message-ID: <20060514145042.69280.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r406339 [9/16] - in /incubator/activemq/site: ./ 2004/04/13/ 2004/05/26/ 2004/06/23/ 2004/06/25/ 2004/08/17/ 2004/08/19/ 2004/08/23/ 2004/10/07/ 2004/11/02/ 2004/12/20/ 2005/02/03/ 2005/02/25/ 2005/04/11/ 2005/06/06/ 2005/07/04/ 2005/07/13/... Date: Sun, 14 May 2006 14:49:27 -0000 To: activemq-commits@geronimo.apache.org From: jstrachan@apache.org X-Mailer: svnmailer-1.0.8 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Modified: incubator/activemq/site/how-do-i-disable-persistence.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-disable-persistence.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-disable-persistence.html (original) +++ incubator/activemq/site/how-do-i-disable-persistence.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I disable persistence
+ +
Modified: incubator/activemq/site/how-do-i-edit-the-website.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-edit-the-website.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-edit-the-website.html (original) +++ incubator/activemq/site/how-do-i-edit-the-website.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I edit the website
+ +

The website is all contained on a wiki.

Modified: incubator/activemq/site/how-do-i-embed-a-broker-inside-a-connection.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-embed-a-broker-inside-a-connection.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-embed-a-broker-inside-a-connection.html (original) +++ incubator/activemq/site/how-do-i-embed-a-broker-inside-a-connection.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I embed a Broker inside a Connection
+ +

In many messaging topologies there are JMS Brokers (server side) and a JMS client side. Often it makes sense to deploy a broker within your JVM. This allows you to optimise away a network hop; making the networking of JMS as efficient as pure RMI, but with all the usual JMS features of location independence, reliability, load balancing etc.

In ActiveMQ 4.x

Modified: incubator/activemq/site/how-do-i-enable-asynchronous-sending.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-enable-asynchronous-sending.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-enable-asynchronous-sending.html (original) +++ incubator/activemq/site/how-do-i-enable-asynchronous-sending.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I enable asynchronous sending
+ +

The default setting for ActiveMQ is that all persistent messages outside of a transaction are sent to a broker are synchronous. This means that the send method is blocked until the message is received by the broker, its then written to disk - then a response is returned to the client and the send() unblocks with success or throws a JMSException if the send could not complete (e.g. due to a security exception).  In the case of the persistent messages being sent in a transaction, only the commit is synchronous since if the commit succeeds, then it means that all of the sends and acknowledgements in the transaction succeeded.

Modified: incubator/activemq/site/how-do-i-find-the-size-of-a-queue.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-find-the-size-of-a-queue.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-find-the-size-of-a-queue.html (original) +++ incubator/activemq/site/how-do-i-find-the-size-of-a-queue.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I find the Size of a Queue
+ +

How do I check on the size of the queue? I know it's not JMS standard, but most JMS implementations have a way to do this.

Modified: incubator/activemq/site/how-do-i-get-started-with-jms.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-get-started-with-jms.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-get-started-with-jms.html (original) +++ incubator/activemq/site/how-do-i-get-started-with-jms.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I get started with JMS
+ +


Your best way to get started understanding the JMS API is Sun's JMS tutorial

Modified: incubator/activemq/site/how-do-i-make-messages-durable.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-make-messages-durable.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-make-messages-durable.html (original) +++ incubator/activemq/site/how-do-i-make-messages-durable.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I make messages durable
+ +

Durability of messages is defined by the MessagerProducer. You can explicitly configure the durability via the setDeliveryMode() method. e.g.

Modified: incubator/activemq/site/how-do-i-preserve-order-of-messages.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-preserve-order-of-messages.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-preserve-order-of-messages.html (original) +++ incubator/activemq/site/how-do-i-preserve-order-of-messages.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I preserve order of messages
+ +

ActiveMQ will preserve the order of messages sent by a single producer to all consumers on a topic. If there is a single consumer on a queue then the order of messages sent by a single producer will be preserved as well.

Modified: incubator/activemq/site/how-do-i-run-a-broker.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-run-a-broker.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-run-a-broker.html (original) +++ incubator/activemq/site/how-do-i-run-a-broker.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I run a broker
+ +

For ActiveMQ 3.x/4.x

Modified: incubator/activemq/site/how-do-i-set-the-message-expiration.html URL: http://svn.apache.org/viewcvs/incubator/activemq/site/how-do-i-set-the-message-expiration.html?rev=406339&r1=406338&r2=406339&view=diff ============================================================================== --- incubator/activemq/site/how-do-i-set-the-message-expiration.html (original) +++ incubator/activemq/site/how-do-i-set-the-message-expiration.html Sun May 14 07:49:14 2006 @@ -37,7 +37,7 @@ @@ -231,8 +231,10 @@
- -
How do I set the message expiration
+ +

JMSExpiration on a message is set by the MessageProducer in JMS - either via