Author: jstrachan
Date: Mon Jun 5 10:44:34 2006
New Revision: 411868
URL: http://svn.apache.org/viewvc?rev=411868&view=rev
Log:
Latest export from confluence
Modified:
incubator/activemq/site/broker-configuration-uri.html
incubator/activemq/site/how-to-unit-test-jms-code.html
incubator/activemq/site/using-activemq.html
Modified: incubator/activemq/site/broker-configuration-uri.html
URL:
http://svn.apache.org/viewvc/incubator/activemq/site/broker-configuration-uri.html?rev=411868&r1=411867&r2=411868&view=diff
==============================================================================
--- incubator/activemq/site/broker-configuration-uri.html (original)
+++ incubator/activemq/site/broker-configuration-uri.html Mon Jun 5 10:44:34
2006
@@ -240,8 +240,7 @@
<!--
<div class="pagetitle">Broker Configuration URI</div>
-->
- <DIV class="wiki-content">
-<H3><A name="BrokerConfigurationURI-Overview"></A>Overview</H3>
+ <DIV class="wiki-content"><H3><A
name="BrokerConfigurationURI-Overview"></A>Overview</H3>
<P>An ActiveMQ broker can be extensivly configured using a single
configuration URI. We recomend that user use the <A
href="xml-configuration.html" title="Xml Configuration">Xml Configuration</A>
xml file to configure AcitveMQ brokers. The URI form of configuring broker is
only useful for configuring simple broker configurations.</P>
@@ -302,7 +301,12 @@
<DIV class="preformatted"><DIV class="preformattedContent">
<PRE>broker:(tcp://localhost:61616,network:static:tcp://remotehost:61616)?persistent=false&useJmx=true
</PRE>
-</DIV></DIV> </DIV>
+</DIV></DIV>
+
+<TABLE cellpadding="5" width="85%" cellspacing="8px" class="infoMacro"
border="0" align="center"><COLGROUP><COL width="24"><COL></COLGROUP><TR><TD
valign="top"><IMG
src="http://goopen.org/confluence/images/icons/emoticons/information.gif"
width="16" height="16" align="absmiddle" alt="" border="0"></TD><TD><B
class="strong">You can use the Broker URI on other transports</B><BR>
+<P>If you are using another transport - such as the <A
href="vm-transport-reference.html" title="VM Transport Reference">VM Transport
Reference</A> then you can refer to the above broker URI properties inside that
URL. e.g. using the URL</P>
+
+<P>vm://localhost?broker.persistent=false</P></TD></TR></TABLE></DIV>
</DIV>
</TD>
@@ -312,8 +316,8 @@
</DIV>
<DIV id="site-footer">
Added by <A
href="http://goopen.org/confluence/users/viewuserprofile.action?username=chirino">Hiram
Chirino</A>,
- last edited by <A
href="http://goopen.org/confluence/users/viewuserprofile.action?username=jstrachan">James
Strachan</A> on May 12, 2006
- (<A
href="http://goopen.org/confluence/pages/diffpages.action?pageId=19&originalId=5491">view
change</A>)
+ last edited by <A
href="http://goopen.org/confluence/users/viewuserprofile.action?username=jstrachan">James
Strachan</A> on Jun 05, 2006
+ (<A
href="http://goopen.org/confluence/pages/diffpages.action?pageId=19&originalId=8549">view
change</A>)
(<A
href="http://goopen.org/confluence/pages/editpage.action?pageId=19">edit
page</A>)
</DIV>
Modified: incubator/activemq/site/how-to-unit-test-jms-code.html
URL:
http://svn.apache.org/viewvc/incubator/activemq/site/how-to-unit-test-jms-code.html?rev=411868&r1=411867&r2=411868&view=diff
==============================================================================
--- incubator/activemq/site/how-to-unit-test-jms-code.html (original)
+++ incubator/activemq/site/how-to-unit-test-jms-code.html Mon Jun 5 10:44:34
2006
@@ -245,11 +245,25 @@
<P>So when unit testing JMS code we recommend the following</P>
<UL>
- <LI>use an embedded broker to avoid the separate process</LI>
- <LI>disable broker persistence</LI>
- <LI>its often simpler and faster to just use Java code to create the
broker</LI>
+ <LI>use <A href="how-do-i-embed-a-broker-inside-a-connection.html"
title="How do I embed a Broker inside a Connection">an embedded broker</A> to
avoid a separate broker process being required</LI>
+ <LI>disable <A href="broker-configuration-uri.html" title="Broker
Configuration URI">broker persistence</A></LI>
+ <LI>its often simpler and faster to just use Java code to create the
broker via an XML configuration file using Spring etc</LI>
</UL>
+
+<P>You can do all of this using the following Java code to create your JMS
ConnectionFactory which will also automatically create an embedded broker</P>
+
+<DIV class="code"><DIV class="codeContent">
+<PRE class="code-java">ConnectionFactory connectionFactory = <SPAN
class="code-keyword">new</SPAN> ActiveMQConnectionFactory(<SPAN
class="code-quote">"vm:<SPAN
class="code-comment">//localhost?broker.persistent=<SPAN
class="code-keyword">false</SPAN>"</SPAN>);</SPAN></PRE>
+</DIV></DIV>
+
+<P>Or if you would rather be more explicit you can create the broker first
using the following Java code</P>
+
+<DIV class="code"><DIV class="codeContent">
+<PRE class="code-java">BrokerService broker = <SPAN
class="code-keyword">new</SPAN> BrokerService();
+broker.setPersistent(<SPAN class="code-keyword">false</SPAN>);
+broker.start();</PRE>
+</DIV></DIV>
</DIV>
</DIV>
@@ -261,7 +275,8 @@
<DIV id="site-footer">
Added by <A
href="http://goopen.org/confluence/users/viewuserprofile.action?username=jstrachan">James
Strachan</A>,
last edited by <A
href="http://goopen.org/confluence/users/viewuserprofile.action?username=jstrachan">James
Strachan</A> on Jun 05, 2006
-
+ (<A
href="http://goopen.org/confluence/pages/diffpages.action?pageId=8547&originalId=8551">view
change</A>)
+
(<A
href="http://goopen.org/confluence/pages/editpage.action?pageId=8547">edit
page</A>)
</DIV>
Modified: incubator/activemq/site/using-activemq.html
URL:
http://svn.apache.org/viewvc/incubator/activemq/site/using-activemq.html?rev=411868&r1=411867&r2=411868&view=diff
==============================================================================
--- incubator/activemq/site/using-activemq.html (original)
+++ incubator/activemq/site/using-activemq.html Mon Jun 5 10:44:34 2006
@@ -36,7 +36,7 @@
<TR>
<TD align="left" valign="middle" nowrap="">
<DIV id="site-breadcrumbs">
-<A href="home.html" title="ActiveMQ">ActiveMQ</A> > <A
href="home.html" title="Home">Home</A> > <A href="community.html"
title="Community">Community</A> > <A href="faq.html"
title="FAQ">FAQ</A> > <A href="" title="Using ActiveMQ">Using
ActiveMQ</A>
+<A href="home.html" title="ActiveMQ">ActiveMQ</A> > <A
href="home.html" title="Home">Home</A> > <A href="" title="Using
ActiveMQ">Using ActiveMQ</A>
</DIV>
</TD>
<TD align="right" valign="middle" nowrap="">
@@ -240,10 +240,7 @@
<!--
<div class="pagetitle">Using ActiveMQ</div>
-->
- <DIV class="wiki-content">
-<P>Questions on using ActiveMQ</P>
-
-<UL><LI><A href="activemq-command-line-tools-reference.html" title="ActiveMQ
Command Line Tools Reference">ActiveMQ Command Line Tools
Reference</A></LI><LI><A href="are-destinations-case-sensitive.html" title="Are
destinations case sensitive">Are destinations case sensitive</A></LI><LI><A
href="can-i-send-really-large-files-over-activemq.html" title="Can I send
really large files over ActiveMQ">Can I send really large files over
ActiveMQ</A></LI><LI><A href="can-two-brokers-share-the-same-database.html"
title="Can two brokers share the same database">Can two brokers share the same
database</A></LI><LI><A href="does-activemq-support-clustering.html"
title="Does ActiveMQ support clustering">Does ActiveMQ support
clustering</A></LI><LI><A
href="how-can-i-avoid-serialization-of-objects-in-objectmessage.html"
title="How can I avoid serialization of Objects in ObjectMessage">How can I
avoid serialization of Objects in ObjectMessage</A></LI><LI><A
href="how-can-i-enable-detailed-l
ogging.html" title="How can I enable detailed logging">How can I enable
detailed logging</A></LI><LI><A
href="how-can-i-get-a-list-of-the-topics-and-queues-in-a-broker.html"
title="How can I get a list of the topics and queues in a broker">How can I get
a list of the topics and queues in a broker</A></LI><LI><A
href="how-can-i-make-activemq-faster.html" title="How can I make ActiveMQ
faster">How can I make ActiveMQ faster</A></LI><LI><A
href="how-can-i-monitor-activemq.html" title="How can I monitor ActiveMQ">How
can I monitor ActiveMQ</A></LI><LI><A
href="how-can-i-see-what-destinations-are-used.html" title="How can I see what
destinations are used">How can I see what destinations are used</A></LI><LI><A
href="how-can-i-support-auto-reconnection.html" title="How can I support auto
reconnection">How can I support auto reconnection</A></LI><LI><A
href="how-can-i-use-different-network-protocols.html" title="How can I use
different network protocols">How can I use different net
work protocols</A></LI><LI><A href="how-do-distributed-queues-work.html"
title="How do distributed queues work">How do distributed queues
work</A></LI><LI><A href="how-do-i-access-activemq-from-c.html" title="How do I
access ActiveMQ from C">How do I access ActiveMQ from C</A></LI><LI><A
href="how-do-i-access-activemq-from-csharp-or-dotnet.html" title="How do I
access ActiveMQ from CSharp or dotNet">How do I access ActiveMQ from CSharp or
dotNet</A></LI><LI><A
href="how-do-i-access-activemq-from-ruby-perl-python-php.html" title="How do I
access ActiveMQ from Ruby, Perl, Python, PHP">How do I access ActiveMQ from
Ruby, Perl, Python, PHP</A></LI><LI><A
href="how-do-i-bridge-different-jms-providers.html" title="How do I bridge
different JMS providers">How do I bridge different JMS providers</A></LI><LI><A
href="how-do-i-change-dispatch-policy.html" title="How do I change dispatch
policy">How do I change dispatch policy</A></LI><LI><A
href="how-do-i-change-the-logging.html" titl
e="How do I change the logging">How do I change the logging</A></LI><LI><A
href="how-do-i-configure-automatic-reconnection.html" title="How do I configure
automatic reconnection">How do I configure automatic
reconnection</A></LI><LI><A
href="how-do-i-connect-to-one-of-a-number-of-message-brokers.html" title="How
do I connect to one of a number of message brokers">How do I connect to one of
a number of message brokers</A></LI><LI><A
href="how-do-i-create-new-destinations.html" title="How do I create new
destinations">How do I create new destinations</A></LI><LI><A
href="how-do-i-embed-a-broker-inside-a-connection.html" title="How do I embed a
Broker inside a Connection">How do I embed a Broker inside a
Connection</A></LI><LI><A href="how-do-i-enable-asynchronous-sending.html"
title="How do I enable asynchronous sending">How do I enable asynchronous
sending</A></LI><LI><A href="how-do-i-find-the-size-of-a-queue.html" title="How
do I find the Size of a Queue">How do I find the
Size of a Queue</A></LI><LI><A href="how-do-i-preserve-order-of-messages.html"
title="How do I preserve order of messages">How do I preserve order of
messages</A></LI><LI><A href="how-do-i-purge-a-queue.html" title="How do I
purge a queue">How do I purge a queue</A></LI><LI><A
href="how-do-i-run-a-broker.html" title="How do I run a broker">How do I run a
broker</A></LI><LI><A href="how-do-i-set-the-message-expiration.html"
title="How do I set the message expiration">How do I set the message
expiration</A></LI><LI><A
href="how-do-i-use-activemq-using-in-jvm-messaging.html" title="How do I use
ActiveMQ using in JVM messaging">How do I use ActiveMQ using in JVM
messaging</A></LI><LI><A href="how-do-i-use-ivy-with-activemq.html" title="How
do I use Ivy with ActiveMQ">How do I use Ivy with ActiveMQ</A></LI><LI><A
href="how-do-i-use-ssl.html" title="How do I use SSL">How do I use
SSL</A></LI><LI><A href="how-do-message-groups-compare-to-selectors.html"
title="How do Message Groups
compare to Selectors">How do Message Groups compare to
Selectors</A></LI><LI><A href="how-do-multiple-transports-work.html" title="How
do multiple transports work">How do multiple transports work</A></LI><LI><A
href="how-do-transactions-work.html" title="How do transactions work">How do
transactions work</A></LI><LI><A
href="how-lightweight-is-sending-a-message.html" title="How lightweight is
sending a message">How lightweight is sending a message</A></LI><LI><A
href="how-should-i-use-the-vm-transport.html" title="How should I use the VM
transport">How should I use the VM transport</A></LI><LI><A
href="i-am-having-problems-with-the-spring-jmstemplate.html" title="I am having
problems with the Spring JmsTemplate">I am having problems with the Spring
JmsTemplate</A></LI><LI><A
href="should-i-deploy-the-broker-inside-my-jvm-or-appserver.html" title="Should
I deploy the broker inside my JVM or AppServer">Should I deploy the broker
inside my JVM or AppServer</A></LI><LI><A href=
"what-happens-with-a-fast-producer-and-slow-consumer.html" title="What happens
with a fast producer and slow consumer">What happens with a fast producer and
slow consumer</A></LI><LI><A href="what-is-the-prefetch-limit-for.html"
title="What is the prefetch limit for">What is the prefetch limit
for</A></LI><LI><A
href="while-posting-large-binary-file-to-activemq-is-there-a-way-to-measure-its-progress.html"
title="While posting large binary file to activeMQ, is there a way to measure
its progress">While posting large binary file to activeMQ, is there a way to
measure its progress</A></LI><LI><A
href="why-do-i-not-get-all-of-the-messages-i-sent.html" title="Why do I not get
all of the messages I sent">Why do I not get all of the messages I
sent</A></LI></UL></DIV>
+ <DIV class="wiki-content"><UL><LI><A
href="activemq-4-connection-uris.html" title="ActiveMQ 4 Connection
URIs">ActiveMQ 4 Connection URIs</A><UL><LI><A
href="configuring-wire-formats.html" title="Configuring Wire
Formats">Configuring Wire Formats</A></LI><LI><A
href="discovery-transport-reference.html" title="Discovery Transport
Reference">Discovery Transport Reference</A></LI><LI><A
href="failover-transport-reference.html" title="Failover Transport
Reference">Failover Transport Reference</A></LI><LI><A
href="fanout-transport-reference.html" title="Fanout Transport
Reference">Fanout Transport Reference</A></LI><LI><A
href="multicast-transport-reference.html" title="Multicast Transport
Reference">Multicast Transport Reference</A></LI><LI><A
href="peer-transport-reference.html" title="Peer Transport Reference">Peer
Transport Reference</A></LI><LI><A href="ssl-transport-reference.html"
title="SSL Transport Reference">SSL Transport Reference</A></LI><LI><A
href="stat
ic-transport-reference.html" title="Static Transport Reference">Static
Transport Reference</A></LI><LI><A href="tcp-transport-reference.html"
title="TCP Transport Reference">TCP Transport Reference</A></LI><LI><A
href="udp-transport-reference.html" title="UDP Transport Reference">UDP
Transport Reference</A></LI><LI><A href="vm-transport-reference.html" title="VM
Transport Reference">VM Transport Reference</A></LI></UL></LI><LI><A
href="broker-configuration-uri.html" title="Broker Configuration URI">Broker
Configuration URI</A></LI><LI><A href="configuring-brokers.html"
title="Configuring Brokers">Configuring Brokers</A></LI><LI><A
href="examples.html" title="Examples">Examples</A></LI><LI><A
href="hello-world.html" title="Hello World">Hello World</A></LI><LI><A
href="initial-configuration.html" title="Initial Configuration">Initial
Configuration</A><UL><LI><A href="getting-started.html" title="Getting
Started">Getting Started</A><UL><LI><A href="getting-started-3x.html" titl
e="Getting Started 3.x">Getting Started 3.x</A></LI></UL></LI></UL></LI><LI><A
href="installation.html" title="Installation">Installation</A></LI><LI><A
href="known-bad-os-and-jvm-combinations.html" title="Known Bad OS and JVM
Combinations">Known Bad OS and JVM Combinations</A></LI><LI><A
href="performance.html" title="Performance">Performance</A><UL><LI><A
href="performance-report.html" title="Performance report">Performance
report</A></LI></UL></LI><LI><A href="performance-tuning.html"
title="Performance Tuning">Performance Tuning</A></LI><LI><A
href="protocols.html" title="Protocols">Protocols</A><UL><LI><A
href="configuring-transports.html" title="Configuring Transports">Configuring
Transports</A><UL><LI><A href="activemq-3-transport-configurations.html"
title="ActiveMQ 3 Transport Configurations">ActiveMQ 3 Transport
Configurations</A></LI></UL></LI><LI><A href="vm-protocol.html" title="VM
Protocol">VM Protocol</A></LI></UL></LI><LI><A href="run-broker.html"
title="Run
Broker">Run Broker</A><UL><LI><A href="running-a-3x-broker.html"
title="Running a 3.x Broker">Running a 3.x Broker</A></LI></UL></LI><LI><A
href="topologies.html" title="Topologies">Topologies</A></LI><LI><A
href="use-cases.html" title="Use Cases">Use Cases</A></LI><LI><A
href="web-samples.html" title="Web Samples">Web Samples</A></LI><LI><A
href="xml-configuration.html" title="Xml Configuration">Xml
Configuration</A></LI><LI><A href="xml-reference.html" title="Xml
Reference">Xml Reference</A></LI></UL> </DIV>
<DIV class="tabletitle">
Children
@@ -253,136 +250,55 @@
<A href="javascript:hideChildren()">Hide Children</A></SPAN>
</DIV>
<DIV class="greybox" id="children" style="display: none;">
- <A
href="how-do-i-embed-a-broker-inside-a-connection.html" title="How do I embed a
Broker inside a Connection">How do I embed a Broker inside a Connection</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-can-i-make-activemq-faster.html"
title="How can I make ActiveMQ faster">How can I make ActiveMQ faster</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="can-two-brokers-share-the-same-database.html" title="Can two brokers
share the same database">Can two brokers share the same database</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-i-purge-a-queue.html" title="How do
I purge a queue">How do I purge a queue</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-i-set-the-message-expiration.html"
title="How do I set the message expiration">How do I set the message
expiration</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="how-can-i-get-a-list-of-the-topics-and-queues-in-a-broker.html"
title="How can I get a list of the topics and queues in a broker">How can I get
a list of the topics and queues in a broker</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-i-find-the-size-of-a-queue.html"
title="How do I find the Size of a Queue">How do I find the Size of a Queue</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-can-i-monitor-activemq.html" title="How
can I monitor ActiveMQ">How can I monitor ActiveMQ</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="how-can-i-see-what-destinations-are-used.html" title="How can I see what
destinations are used">How can I see what destinations are used</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-i-change-the-logging.html"
title="How do I change the logging">How do I change the logging</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="are-destinations-case-sensitive.html"
title="Are destinations case sensitive">Are destinations case sensitive</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-distributed-queues-work.html"
title="How do distributed queues work">How do distributed queues work</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="activemq-command-line-tools-reference.html"
title="ActiveMQ Command Line Tools Reference">ActiveMQ Command Line Tools
Reference</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-i-access-activemq-from-c.html"
title="How do I access ActiveMQ from C">How do I access ActiveMQ from C</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-transactions-work.html" title="How
do transactions work">How do transactions work</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="how-do-i-connect-to-one-of-a-number-of-message-brokers.html" title="How
do I connect to one of a number of message brokers">How do I connect to one of
a number of message brokers</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="how-do-message-groups-compare-to-selectors.html" title="How do Message
Groups compare to Selectors">How do Message Groups compare to Selectors</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="should-i-deploy-the-broker-inside-my-jvm-or-appserver.html" title="Should
I deploy the broker inside my JVM or AppServer">Should I deploy the broker
inside my JVM or AppServer</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="while-posting-large-binary-file-to-activemq-is-there-a-way-to-measure-its-progress.html"
title="While posting large binary file to activeMQ, is there a way to measure
its progress">While posting large binary file to activeMQ, is there a way to
measure its progress</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="how-do-i-configure-automatic-reconnection.html" title="How do I configure
automatic reconnection">How do I configure automatic reconnection</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-i-use-ivy-with-activemq.html"
title="How do I use Ivy with ActiveMQ">How do I use Ivy with ActiveMQ</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="does-activemq-support-clustering.html"
title="Does ActiveMQ support clustering">Does ActiveMQ support clustering</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="can-i-send-really-large-files-over-activemq.html" title="Can I send
really large files over ActiveMQ">Can I send really large files over
ActiveMQ</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-i-create-new-destinations.html"
title="How do I create new destinations">How do I create new destinations</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="how-do-i-use-activemq-using-in-jvm-messaging.html" title="How do I use
ActiveMQ using in JVM messaging">How do I use ActiveMQ using in JVM
messaging</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="what-is-the-prefetch-limit-for.html"
title="What is the prefetch limit for">What is the prefetch limit for</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A
href="how-can-i-avoid-serialization-of-objects-in-objectmessage.html"
title="How can I avoid serialization of Objects in ObjectMessage">How can I
avoid serialization of Objects in ObjectMessage</A>
- <SPAN class="smalltext">(ActiveMQ)</SPAN>
- <BR>
- <A href="how-do-i-run-a-broker.html" title="How do I
run a broker">How do I run a broker</A>
+ <A href="xml-configuration.html"
title="Xml Configuration">Xml Configuration</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A
href="how-do-i-bridge-different-jms-providers.html" title="How do I bridge
different JMS providers">How do I bridge different JMS providers</A>
+ <A href="run-broker.html" title="Run Broker">Run
Broker</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-can-i-support-auto-reconnection.html"
title="How can I support auto reconnection">How can I support auto
reconnection</A>
+ <A href="performance-tuning.html" title="Performance
Tuning">Performance Tuning</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-do-i-preserve-order-of-messages.html"
title="How do I preserve order of messages">How do I preserve order of
messages</A>
+ <A href="activemq-4-connection-uris.html"
title="ActiveMQ 4 Connection URIs">ActiveMQ 4 Connection URIs</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-do-i-change-dispatch-policy.html"
title="How do I change dispatch policy">How do I change dispatch policy</A>
+ <A href="broker-configuration-uri.html"
title="Broker Configuration URI">Broker Configuration URI</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A
href="how-do-i-access-activemq-from-ruby-perl-python-php.html" title="How do I
access ActiveMQ from Ruby, Perl, Python, PHP">How do I access ActiveMQ from
Ruby, Perl, Python, PHP</A>
+ <A href="configuring-brokers.html"
title="Configuring Brokers">Configuring Brokers</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-lightweight-is-sending-a-message.html"
title="How lightweight is sending a message">How lightweight is sending a
message</A>
+ <A href="protocols.html"
title="Protocols">Protocols</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-should-i-use-the-vm-transport.html"
title="How should I use the VM transport">How should I use the VM transport</A>
+ <A href="topologies.html"
title="Topologies">Topologies</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-do-i-enable-asynchronous-sending.html"
title="How do I enable asynchronous sending">How do I enable asynchronous
sending</A>
+ <A href="xml-reference.html" title="Xml
Reference">Xml Reference</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-do-multiple-transports-work.html"
title="How do multiple transports work">How do multiple transports work</A>
+ <A href="known-bad-os-and-jvm-combinations.html"
title="Known Bad OS and JVM Combinations">Known Bad OS and JVM Combinations</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A
href="how-do-i-access-activemq-from-csharp-or-dotnet.html" title="How do I
access ActiveMQ from CSharp or dotNet">How do I access ActiveMQ from CSharp or
dotNet</A>
+ <A href="performance.html"
title="Performance">Performance</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A
href="what-happens-with-a-fast-producer-and-slow-consumer.html" title="What
happens with a fast producer and slow consumer">What happens with a fast
producer and slow consumer</A>
+ <A href="use-cases.html" title="Use Cases">Use
Cases</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A
href="how-can-i-use-different-network-protocols.html" title="How can I use
different network protocols">How can I use different network protocols</A>
+ <A href="web-samples.html" title="Web Samples">Web
Samples</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-can-i-enable-detailed-logging.html"
title="How can I enable detailed logging">How can I enable detailed logging</A>
+ <A href="examples.html" title="Examples">Examples</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A
href="i-am-having-problems-with-the-spring-jmstemplate.html" title="I am having
problems with the Spring JmsTemplate">I am having problems with the Spring
JmsTemplate</A>
+ <A href="hello-world.html" title="Hello World">Hello
World</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A
href="why-do-i-not-get-all-of-the-messages-i-sent.html" title="Why do I not get
all of the messages I sent">Why do I not get all of the messages I sent</A>
+ <A href="initial-configuration.html" title="Initial
Configuration">Initial Configuration</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
- <A href="how-do-i-use-ssl.html" title="How do I use
SSL">How do I use SSL</A>
+ <A href="installation.html"
title="Installation">Installation</A>
<SPAN class="smalltext">(ActiveMQ)</SPAN>
<BR>
</DIV>
@@ -394,10 +310,10 @@
</DIV>
<DIV id="site-footer">
Added by <A
href="http://goopen.org/confluence/users/viewuserprofile.action?username=jstrachan">James
Strachan</A>,
- last edited by <A
href="http://goopen.org/confluence/users/viewuserprofile.action?username=jstrachan">James
Strachan</A> on Jul 07, 2005
- (<A
href="http://goopen.org/confluence/pages/diffpages.action?pageId=118&originalId=315">view
change</A>)
+ last edited by <A
href="http://goopen.org/confluence/users/viewuserprofile.action?username=jstrachan">James
Strachan</A> on May 12, 2006
+ (<A
href="http://goopen.org/confluence/pages/diffpages.action?pageId=5405&originalId=5501">view
change</A>)
- (<A
href="http://goopen.org/confluence/pages/editpage.action?pageId=118">edit
page</A>)
+ (<A
href="http://goopen.org/confluence/pages/editpage.action?pageId=5405">edit
page</A>)
</DIV>
</BODY>