You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by ru...@apache.org on 2010/11/22 07:29:24 UTC

svn commit: r1037611 - /synapse/branches/2.0/src/site/xdoc/Synapse_Samples.xml

Author: ruwan
Date: Mon Nov 22 06:29:24 2010
New Revision: 1037611

URL: http://svn.apache.org/viewvc?rev=1037611&view=rev
Log:
Fixing the sample0 samples guide configuration

Modified:
    synapse/branches/2.0/src/site/xdoc/Synapse_Samples.xml

Modified: synapse/branches/2.0/src/site/xdoc/Synapse_Samples.xml
URL: http://svn.apache.org/viewvc/synapse/branches/2.0/src/site/xdoc/Synapse_Samples.xml?rev=1037611&r1=1037610&r2=1037611&view=diff
==============================================================================
--- synapse/branches/2.0/src/site/xdoc/Synapse_Samples.xml (original)
+++ synapse/branches/2.0/src/site/xdoc/Synapse_Samples.xml Mon Nov 22 06:29:24 2010
@@ -359,11 +359,15 @@
 <h2>
 <a name="Sample0" id="Sample0">Sample 0: Introduction to Synapse</a></h2>
 <pre xml:space="preserve">&lt;definitions xmlns=&quot;http://synapse.apache.org/ns/2010/04/configuraiton&quot;&gt;
-    &lt;!-- log all attributes of messages passing through --&gt;
-    &lt;log level=&quot;full&quot;/&gt;
 
-    &lt;!-- Send the messageto implicit destination --&gt;
-    &lt;send/&gt;
+    &lt;sequence name="main"&gt;
+        &lt;!-- log all attributes of messages passing through --&gt;
+        &lt;log level=&quot;full&quot;/&gt;
+
+        &lt;!-- Send the message to implicit destination --&gt;
+        &lt;send/&gt;
+    &lt;sequence/&gt;
+    
 &lt;/definitions&gt;</pre>
 <p>
 <strong>Objective: Introduction to Synapse. Shows how a message could be made to pass through Synapse </strong>