You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by js...@apache.org on 2006/06/20 10:34:50 UTC

svn commit: r415563 [1/3] - in /incubator/servicemix/site: ./ jms-binding.data/

Author: jstrachan
Date: Tue Jun 20 01:34:47 2006
New Revision: 415563

URL: http://svn.apache.org/viewvc?rev=415563&view=rev
Log:
Latest export from confluence

Modified:
    incubator/servicemix/site/banner.html
    incubator/servicemix/site/beanflow.html
    incubator/servicemix/site/becoming-a-committer.html
    incubator/servicemix/site/build.html
    incubator/servicemix/site/cache.html
    incubator/servicemix/site/component-matrix.html
    incubator/servicemix/site/configuration.html
    incubator/servicemix/site/creating-a-standard-jbi-component.html
    incubator/servicemix/site/download.html
    incubator/servicemix/site/drools.html
    incubator/servicemix/site/features-overview.html
    incubator/servicemix/site/getting-started-for-servicemix-1x.html
    incubator/servicemix/site/getting-started-for-servicemix-2x.html
    incubator/servicemix/site/getting-started-guide-old.html
    incubator/servicemix/site/getting-started-guide.html
    incubator/servicemix/site/how-do-i-build-but-disable-the-unit-tests.html
    incubator/servicemix/site/how-do-i-compile-from-the-source.html
    incubator/servicemix/site/how-do-i-edit-the-website.html
    incubator/servicemix/site/how-does-the-website-work.html
    incubator/servicemix/site/ideas.html
    incubator/servicemix/site/installcomponenttask.html
    incubator/servicemix/site/irc.html
    incubator/servicemix/site/javadocs.html
    incubator/servicemix/site/jms-binding.data/jmsflow.jpg
    incubator/servicemix/site/jms-binding.data/jmsflow.jpg.jpeg
    incubator/servicemix/site/jms-binding.html
    incubator/servicemix/site/leftheader.html
    incubator/servicemix/site/lightweight-components.html
    incubator/servicemix/site/logo.html
    incubator/servicemix/site/navigation-lisa.html
    incubator/servicemix/site/navigation-tree.html
    incubator/servicemix/site/quartz-example-ja.html
    incubator/servicemix/site/quicklinks.html
    incubator/servicemix/site/rightheader.html
    incubator/servicemix/site/rss-binding-ja.html
    incubator/servicemix/site/scripting.html
    incubator/servicemix/site/servicemix-lwcontainer.html
    incubator/servicemix/site/siteindex.html
    incubator/servicemix/site/sitemap.html
    incubator/servicemix/site/source.html
    incubator/servicemix/site/unrecognized-xbean-namespace-mapping.html
    incubator/servicemix/site/using-a-jmx-console.html
    incubator/servicemix/site/using-eclipse.html
    incubator/servicemix/site/ws-security-use-case.html

Modified: incubator/servicemix/site/banner.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/banner.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/banner.html (original)
+++ incubator/servicemix/site/banner.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/beanflow.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/beanflow.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/beanflow.html (original)
+++ incubator/servicemix/site/beanflow.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 
@@ -332,21 +332,7 @@
 
 <P>Here is an example of performing joins using collections of child workflows</P>
 
-<DIV class="code"><DIV class="codeContent">
-<PRE class="code-java"><SPAN class="code-comment">// lets create a join on a number of child flows completing
-</SPAN>JoinAll flow = <SPAN class="code-keyword">new</SPAN> JoinAll(child1, child2, child3);
-flow.startWithTimeout(timer, timeout);
-
-<SPAN class="code-comment">// now lets test the flow
-</SPAN>child1.stop();
-assertStarted(flow);
-
-child2.stop();
-assertStarted(flow);
 
-child3.stop();
-assertStopped(flow);</PRE>
-</DIV></DIV>
 
 <H3><A name="BeanFlow-Joinconditions"></A>Join conditions</H3>
 
@@ -370,36 +356,7 @@
 
 <P>Here is an example activity implemented in Java code for the above code.</P>
 
-<DIV class="code"><DIV class="codeContent">
-<PRE class="code-java"><SPAN class="code-comment">// lets create some child workflows
-</SPAN><SPAN class="code-keyword">final</SPAN> Activity a = <SPAN class="code-keyword">new</SPAN> TimeoutActivity();
-<SPAN class="code-keyword">final</SPAN> Activity b = <SPAN class="code-keyword">new</SPAN> TimeoutActivity();
-<SPAN class="code-keyword">final</SPAN> Activity c = <SPAN class="code-keyword">new</SPAN> TimeoutActivity();
-
-<SPAN class="code-comment">// lets create the activity with a custom join condition
-</SPAN>Activity activity = <SPAN class="code-keyword">new</SPAN> JoinSupport(a, b, c) {
-    @Override
-    <SPAN class="code-keyword">protected</SPAN> void onChildStateChange(<SPAN class="code-object">int</SPAN> childCount, <SPAN class="code-object">int</SPAN> stoppedCount, <SPAN class="code-object">int</SPAN> failedCount) {
-
-        <SPAN class="code-keyword">if</SPAN> (a.isStopped() &amp;&amp; (b.isStopped() || c.isStopped())) {
-            <SPAN class="code-comment">// lets stop the activity we&apos;re done
-</SPAN>            stop();
-        }
-    }
-};
-
-<SPAN class="code-comment">// lets start the activities
-</SPAN>activity.startWithTimeout(timer, timeout);
 
-<SPAN class="code-comment">// now lets test things behave properly
-</SPAN>assertStarted(activity);
-
-a.stop();
-assertStarted(activity);
-
-b.stop();
-assertStopped(activity);</PRE>
-</DIV></DIV>
 
 <H2><A name="BeanFlow-Buildingworkflows"></A>Building workflows</H2>
 

Modified: incubator/servicemix/site/becoming-a-committer.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/becoming-a-committer.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/becoming-a-committer.html (original)
+++ incubator/servicemix/site/becoming-a-committer.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/build.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/build.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/build.html (original)
+++ incubator/servicemix/site/build.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/cache.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/cache.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/cache.html (original)
+++ incubator/servicemix/site/cache.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 
@@ -229,7 +229,24 @@
 <P>To use the cache component you need to specify an expression to decide which key to use in the cache. This could be a simple property on the message or message exchange or it could be an XPath expression to extract some primary key from inside the XML document.</P>
 
 <P>The following example shows how to configure the cache component. In this case we&apos;re using a <SPAN class="nobr"><A href="http://jaxen.org/" title="Visit page outside Confluence" rel="nofollow">Jaxen<SUP><IMG class="rendericon" src="http://goopen.org/confluence/images/icons/linkext7.gif" height="0" width="0" align="absmiddle" alt="" border="0"></SUP></A></SPAN> based XPath evaluation; though there are other XPath expression implementations such as JAXP 1.3 (for Java 5 or later) and XMLBeans.</P>
-</DIV>
+<DIV class="code"><DIV class="codeContent">
+<PRE class="code-xml"><SPAN class="code-tag">&lt;activationSpec componentName=<SPAN class="code-quote">&quot;myService&quot;</SPAN> service=<SPAN class="code-quote">&quot;foo:myService&quot;</SPAN> destinationService=<SPAN class="code-quote">&quot;foo:myServiceImpl&quot;</SPAN>&gt;</SPAN>
+	<SPAN class="code-tag">&lt;component&gt;</SPAN><SPAN class="code-tag">&lt;bean xmlns=<SPAN class="code-quote">&quot;&quot; class=&quot;</SPAN>org.apache.servicemix.components.cache.CacheComponent&quot;&gt;</SPAN>
+  <SPAN class="code-tag"><SPAN class="code-comment">&lt;!-- we could use a JCache here if we want --&gt;</SPAN></SPAN>
+  <SPAN class="code-tag">&lt;property name=<SPAN class="code-quote">&quot;cache&quot;</SPAN>&gt;</SPAN>
+    <SPAN class="code-tag">&lt;bean class=<SPAN class="code-quote">&quot;org.apache.servicemix.components.cache.LRUCache&quot;</SPAN>&gt;</SPAN>
+      <SPAN class="code-tag">&lt;constructor-arg value=<SPAN class="code-quote">&quot;100&quot;</SPAN>/&gt;</SPAN>
+    <SPAN class="code-tag">&lt;/bean&gt;</SPAN>
+  <SPAN class="code-tag">&lt;/property&gt;</SPAN>
+
+  <SPAN class="code-tag"><SPAN class="code-comment">&lt;!-- lets define the cache key expression --&gt;</SPAN></SPAN>
+  <SPAN class="code-tag">&lt;property name=<SPAN class="code-quote">&quot;keyExpression&quot;</SPAN>&gt;</SPAN>
+    <SPAN class="code-tag">&lt;bean class=<SPAN class="code-quote">&quot;org.apache.servicemix.expression.JaxenStringXPathExpression&quot;</SPAN>&gt;</SPAN>
+      <SPAN class="code-tag">&lt;constructor-arg value=<SPAN class="code-quote">&quot;/*/@id&quot;</SPAN>/&gt;</SPAN>
+    <SPAN class="code-tag">&lt;/bean&gt;</SPAN>
+  <SPAN class="code-tag">&lt;/property&gt;</SPAN><SPAN class="code-tag">&lt;/bean&gt;</SPAN>
+<SPAN class="code-tag">&lt;/component&gt;</SPAN><SPAN class="code-tag">&lt;/activationSpec&gt;</SPAN></PRE>
+</DIV></DIV></DIV>
           
                   </DIV>
         </TD>

Modified: incubator/servicemix/site/component-matrix.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/component-matrix.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/component-matrix.html (original)
+++ incubator/servicemix/site/component-matrix.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/configuration.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/configuration.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/configuration.html (original)
+++ incubator/servicemix/site/configuration.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/creating-a-standard-jbi-component.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/creating-a-standard-jbi-component.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/creating-a-standard-jbi-component.html (original)
+++ incubator/servicemix/site/creating-a-standard-jbi-component.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/download.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/download.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/download.html (original)
+++ incubator/servicemix/site/download.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/drools.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/drools.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/drools.html (original)
+++ incubator/servicemix/site/drools.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 
@@ -228,7 +228,14 @@
 <P>We support Rules based routing using the <SPAN class="nobr"><A href="http://drools.codehaus.org/" title="Visit page outside Confluence" rel="nofollow">Drools<SUP><IMG class="rendericon" src="http://goopen.org/confluence/images/icons/linkext7.gif" height="0" width="0" align="absmiddle" alt="" border="0"></SUP></A></SPAN> rule engine. The basic idea is you expose a DroolsComponent at some service/interface/operation endpoint in ServiceMix then let it perform rules based routing, or other actions as required.</P>
 
 <P>You can deploy a DroolsComponent with a rule base which will be fired when it is invoked. The rule base is then in complete control over messge dispatching.</P>
-
+<DIV class="code"><DIV class="codeContent">
+<PRE class="code-xml">&lt;sm:activationSpec componentName=<SPAN class="code-quote">&quot;droolsRouter&quot;</SPAN> 
+					 service=<SPAN class="code-quote">&quot;foo:droolsRouter&quot;</SPAN>&gt;
+	<SPAN class="code-tag">&lt;sm:component&gt;</SPAN><SPAN class="code-tag">&lt;bean class=<SPAN class="code-quote">&quot;org.apache.servicemix.components.drools.DroolsComponent&quot;</SPAN>&gt;</SPAN>
+  	<SPAN class="code-tag">&lt;property name=<SPAN class="code-quote">&quot;ruleBaseResource&quot;</SPAN> value=<SPAN class="code-quote">&quot;classpath:org/apache/servicemix/components/drools/rulebase.xml&quot;</SPAN> /&gt;</SPAN>
+  <SPAN class="code-tag">&lt;/bean&gt;</SPAN><SPAN class="code-tag">&lt;/sm:component&gt;</SPAN>
+<SPAN class="code-tag">&lt;/sm:activationSpec&gt;</SPAN></PRE>
+</DIV></DIV>
 <P>Then you can create your Drools rule base using whatever Drools mechanism you wish. For example here&apos;s the default Java semantic module to perform custom routing</P>
 <DIV class="code"><DIV class="codeContent">
 <PRE class="code-xml">&lt;rule-set name=<SPAN class="code-quote">&quot;cheese rules&quot;</SPAN>

Modified: incubator/servicemix/site/features-overview.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/features-overview.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/features-overview.html (original)
+++ incubator/servicemix/site/features-overview.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/getting-started-for-servicemix-1x.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/getting-started-for-servicemix-1x.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/getting-started-for-servicemix-1x.html (original)
+++ incubator/servicemix/site/getting-started-for-servicemix-1x.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/getting-started-for-servicemix-2x.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/getting-started-for-servicemix-2x.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/getting-started-for-servicemix-2x.html (original)
+++ incubator/servicemix/site/getting-started-for-servicemix-2x.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/getting-started-guide-old.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/getting-started-guide-old.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/getting-started-guide-old.html (original)
+++ incubator/servicemix/site/getting-started-guide-old.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/getting-started-guide.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/getting-started-guide.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/getting-started-guide.html (original)
+++ incubator/servicemix/site/getting-started-guide.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/how-do-i-build-but-disable-the-unit-tests.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/how-do-i-build-but-disable-the-unit-tests.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/how-do-i-build-but-disable-the-unit-tests.html (original)
+++ incubator/servicemix/site/how-do-i-build-but-disable-the-unit-tests.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/how-do-i-compile-from-the-source.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/how-do-i-compile-from-the-source.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/how-do-i-compile-from-the-source.html (original)
+++ incubator/servicemix/site/how-do-i-compile-from-the-source.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/how-do-i-edit-the-website.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/how-do-i-edit-the-website.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/how-do-i-edit-the-website.html (original)
+++ incubator/servicemix/site/how-do-i-edit-the-website.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/how-does-the-website-work.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/how-does-the-website-work.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/how-does-the-website-work.html (original)
+++ incubator/servicemix/site/how-does-the-website-work.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/ideas.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/ideas.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/ideas.html (original)
+++ incubator/servicemix/site/ideas.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/installcomponenttask.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/installcomponenttask.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/installcomponenttask.html (original)
+++ incubator/servicemix/site/installcomponenttask.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/irc.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/irc.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/irc.html (original)
+++ incubator/servicemix/site/irc.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/javadocs.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/javadocs.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/javadocs.html (original)
+++ incubator/servicemix/site/javadocs.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/jms-binding.data/jmsflow.jpg
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/jms-binding.data/jmsflow.jpg?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/servicemix/site/jms-binding.data/jmsflow.jpg.jpeg
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/jms-binding.data/jmsflow.jpg.jpeg?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/servicemix/site/jms-binding.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/jms-binding.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/jms-binding.html (original)
+++ incubator/servicemix/site/jms-binding.html Tue Jun 20 01:34:47 2006
@@ -9,7 +9,7 @@
     <LINK type="text/css" rel="stylesheet" href="resources/site.css">
     <SCRIPT src="resources/space.js" type="text/javascript"></SCRIPT>
     <TITLE>
-jms-binding
+JMS Binding
     </TITLE>
   <META http-equiv="Content-Type" content="text/html;charset=UTF-8"></HEAD>
   <BODY onload="init()">
@@ -36,7 +36,7 @@
         <TR>
           <TD align="left" valign="middle" nowrap="">
             <DIV id="site-breadcrumbs">
-<A href="home.html" title="ServiceMix">ServiceMix</A>&nbsp;&gt;&nbsp;<A href="home.html" title="Home">Home</A>&nbsp;&gt;&nbsp;<A href="documentation.html" title="Documentation">Documentation</A>&nbsp;&gt;&nbsp;<A href="example-use-cases.html" title="Example & Use Cases">Example &amp; Use Cases</A>&nbsp;&gt;&nbsp;<A href="examples.html" title="Examples">Examples</A>&nbsp;&gt;&nbsp;<A href="" title="jms-binding">jms-binding</A>
+<A href="home.html" title="ServiceMix">ServiceMix</A>&nbsp;&gt;&nbsp;<A href="sandbox.html" title="Sandbox">Sandbox</A>&nbsp;&gt;&nbsp;<A href="" title="JMS Binding">JMS Binding</A>
             </DIV>
           </TD>
           <TD align="right" valign="middle" nowrap="">
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 
@@ -222,10 +222,10 @@
           <DIV id="site-page">
 
 <!--          
-            <div class="pagetitle">jms- binding</div>
+            <div class="pagetitle">JMS Binding</div>
 -->
             <DIV class="wiki-content">
-<H3><A name="jms-binding-OverviewoftheServiceMix2.xJMSBindingExample"></A>Overview of the ServiceMix 2.x <EM>JMS Binding</EM> Example</H3>
+<H3><A name="JMSBinding-OverviewoftheServiceMix2.xJMSBindingExample"></A>Overview of the ServiceMix 2.x <EM>JMS Binding</EM> Example</H3>
 
 <P>The following procedure describes how to run the <EM>JMS Binding</EM> example and provides details regarding what it does. For information on the business use case, please refer to: <SPAN class="nobr"><A href="http://www.servicemix.org/Use%20Cases" title="Visit page outside Confluence" rel="nofollow">Use Case for JMS Binding<SUP><IMG class="rendericon" src="http://goopen.org/confluence/images/icons/linkext7.gif" height="0" width="0" align="absmiddle" alt="" border="0"></SUP></A></SPAN>.
 <BR clear="all">
@@ -246,7 +246,7 @@
 <BR clear="all">
 This example shows how to connect the JMS bindings to a simple service component.  One component listens for a JMS message on topic &apos;demo.org.servicemix.source&apos; while another publishes processed messages to topic &apos;demo.org.servicemix.result&apos;.  A simple JMS client is provided so that messages can be sent and received to and from the ServiceMix Container.</P>
 
-<H3><A name="jms-binding-RunningtheJMSBindingExample"></A>Running the <EM>JMS Binding</EM> Example</H3>
+<H3><A name="JMSBinding-RunningtheJMSBindingExample"></A>Running the <EM>JMS Binding</EM> Example</H3>
 
 <OL>
 	<LI>From a command shell, go to the JMS Binding example directory:
@@ -265,18 +265,15 @@
 </DIV></DIV>
 <P><BR clear="all">
 Ant will compile and run the simple JMS client, <EM>JMSClient</EM>, which performs a JMS based request-response into the ServiceMix container before returning the results to the console.
-<BR clear="all">
-<BR clear="all"></P>
-<TABLE cellpadding="5" width="85%" cellspacing="8px" class="tipMacro" border="0" align="center"><COLGROUP><COL width="24"><COL></COLGROUP><TR><TD valign="top"><IMG src="http://goopen.org/confluence/images/icons/emoticons/check.gif" width="16" height="16" align="absmiddle" alt="" border="0"></TD><TD><B class="strong">Handy Hint</B><BR>
-<P>Add <EM>$SERVICEMIX_HOME\bin</EM> directory to <EM>$PATH</EM> variable to simplify execution of the example.</P></TD></TR></TABLE></LI>
+<BR clear="all"></P></LI>
 </OL>
 
 
-<H3><A name="jms-binding-StoppingtheJMSBindingExample"></A>Stopping the <EM>JMS Binding</EM> Example</H3>
+<H3><A name="JMSBinding-StoppingtheJMSBindingExample"></A>Stopping the <EM>JMS Binding</EM> Example</H3>
 <P>To terminate the <EM>JMS Binding</EM> example, type &quot;CTRL-C&quot; in the command shell in which it is running and answer &quot;y&quot; to the &quot;Terminate batch job (y/n)?&quot; question.
 <BR clear="all"></P>
 
-<H3><A name="jms-binding-HowitWorks"></A>How it Works</H3>
+<H3><A name="JMSBinding-HowitWorks"></A>How it Works</H3>
 <P>The diagram below illustrates the flow of messages through the <EM>JMS Binding</EM> components:
 <BR clear="all">
 <BR clear="all"></P>
@@ -362,7 +359,7 @@
  Socket[addr=/127.0.0.1,port=1863,localport=61616]</PRE>
 </DIV></DIV>
 
-<H3><A name="jms-binding-Details"></A>Details</H3>
+<H3><A name="JMSBinding-Details"></A>Details</H3>
 
 <P>The following table provides more details about the function of each component and bean in the servicemix.xml file.
 <BR clear="all">
@@ -404,7 +401,7 @@
 
 <P>1. <EM>jmsTemplate:</EM> JmsTemplate is a Spring component which hides the low level details when sending JMS messages. For additional information see: <SPAN class="nobr"><A href="http://docs.codehaus.org/display/ACTIVEMQ/Spring%20Support" title="Visit page outside Confluence" rel="nofollow">JmsTemplate<SUP><IMG class="rendericon" src="http://goopen.org/confluence/images/icons/linkext7.gif" height="0" width="0" align="absmiddle" alt="" border="0"></SUP></A></SPAN>. jmsTemplate is not a component in the <EM>jbi</EM> container. It is used by <EM>inputSender</EM> and <EM>outputSender</EM>.</P>
 
-<H3><A name="jms-binding-RelatedDocumentation"></A>Related Documentation</H3>
+<H3><A name="JMSBinding-RelatedDocumentation"></A>Related Documentation</H3>
 <P>For more information on the following topics please see:</P>
 
 <UL>
@@ -422,17 +419,9 @@
 </UL>
 
 
-<P><BR clear="all">
-For a brief explanation of the XML tags in the <TT>servicemi.xml</TT> file, please see:</P>
-
-<UL>
-	<LI><SPAN class="nobr"><A href="http://servicemix.codehaus.org/maven/servicemix.xsd.html" title="Visit page outside Confluence" rel="nofollow">XSD<SUP><IMG class="rendericon" src="http://goopen.org/confluence/images/icons/linkext7.gif" height="0" width="0" align="absmiddle" alt="" border="0"></SUP></A></SPAN></LI>
-</UL>
-
-
-
+<P><BR clear="all"></P>
 
-<P>.</P></DIV>
+</DIV>
           
                   </DIV>
         </TD>
@@ -441,11 +430,11 @@
       </DIV>
     </DIV>
     <DIV id="site-footer">
-          Added by     <A href="http://goopen.org/confluence/users/viewuserprofile.action?username=rajdavies">Rob Davies</A>,
-    last edited by     <A href="http://goopen.org/confluence/users/viewuserprofile.action?username=lmalgeri">Lisa Malgeri</A> on Dec 18, 2005
-                  &nbsp;(<A href="http://goopen.org/confluence/pages/diffpages.action?pageId=2073&originalId=3622">view change</A>)
+          Added by     <A href="http://goopen.org/confluence/users/viewuserprofile.action?username=mjarillas">mjarillas</A>,
+    last edited by     <A href="http://goopen.org/confluence/users/viewuserprofile.action?username=gnodet">Guillaume Nodet</A> on May 11, 2006
+                  &nbsp;(<A href="http://goopen.org/confluence/pages/diffpages.action?pageId=2094&originalId=5202">view change</A>)
               
-      (<A href="http://goopen.org/confluence/pages/editpage.action?pageId=2073">edit page</A>)
+      (<A href="http://goopen.org/confluence/pages/editpage.action?pageId=2094">edit page</A>)
     </DIV>
 
   </BODY>

Modified: incubator/servicemix/site/leftheader.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/leftheader.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/leftheader.html (original)
+++ incubator/servicemix/site/leftheader.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/lightweight-components.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/lightweight-components.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/lightweight-components.html (original)
+++ incubator/servicemix/site/lightweight-components.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/logo.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/logo.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/logo.html (original)
+++ incubator/servicemix/site/logo.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>
 

Modified: incubator/servicemix/site/navigation-lisa.html
URL: http://svn.apache.org/viewvc/incubator/servicemix/site/navigation-lisa.html?rev=415563&r1=415562&r2=415563&view=diff
==============================================================================
--- incubator/servicemix/site/navigation-lisa.html (original)
+++ incubator/servicemix/site/navigation-lisa.html Tue Jun 20 01:34:47 2006
@@ -72,7 +72,7 @@
 	<LI><A href="background-to-servicemix.html" title="Background to ServiceMix">Background to ServiceMix</A></LI>
 	<LI><A href="news.html" title="News">News</A></LI>
 	<LI><A href="faq.html" title="FAQ">FAQ</A></LI>
-	<LI><A href="site.html" title="Site">Site</A></LI>
+	<LI><A href="sitemap.html" title="SiteMap">Site</A></LI>
 	<LI><A href="download.html" title="Download">Download</A></LI>
 </UL>