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 2008/05/08 18:05:04 UTC

svn commit: r654571 - /synapse/branches/1.2/src/site/xdoc/Synapse_Samples_Setup.xml

Author: ruwan
Date: Thu May  8 09:05:03 2008
New Revision: 654571

URL: http://svn.apache.org/viewvc?rev=654571&view=rev
Log:
Formatting fixes of the document (please be carefull when using html editors to edit the docs, they add some unnecessary formattings on pressing the Enter key to break lines)

Modified:
    synapse/branches/1.2/src/site/xdoc/Synapse_Samples_Setup.xml

Modified: synapse/branches/1.2/src/site/xdoc/Synapse_Samples_Setup.xml
URL: http://svn.apache.org/viewvc/synapse/branches/1.2/src/site/xdoc/Synapse_Samples_Setup.xml?rev=654571&r1=654570&r2=654571&view=diff
==============================================================================
--- synapse/branches/1.2/src/site/xdoc/Synapse_Samples_Setup.xml (original)
+++ synapse/branches/1.2/src/site/xdoc/Synapse_Samples_Setup.xml Thu May  8 09:05:03 2008
@@ -227,8 +227,6 @@
     </p>
     <ul>
       <li>
-      </li>
-      <li>
         quote - send a quote request for a single stock as follows. The response
         contains the last sales price for the stock which will be displayed
 <pre xml:space="preserve">&lt;m:getQuote xmlns:m="http://services.samples/xsd"&gt;
@@ -238,8 +236,6 @@
 &lt;/m:getQuote&gt;</pre>
       </li>
       <li>
-      </li>
-      <li>
         customquote - send a quote request in a custom format. Synapse will
         transform this custom request to the standard stock quote request format
         and send it to the service. Upon receipt of the response, it will be
@@ -250,8 +246,6 @@
 &lt;/m0:checkPriceRequest&gt;</pre>
       </li>
       <li>
-      </li>
-      <li>
         fullquote - get quote reports for the stock over a number of days (i.e.
         last 100 days of the year).
 <pre xml:space="preserve">&lt;m:getFullQuote xmlns:m="http://services.samples/xsd"&gt;
@@ -261,8 +255,6 @@
 &lt;/m:getFullQuote&gt;</pre>
       </li>
       <li>
-      </li>
-      <li>
         placeorder - place an order for stocks using a one way request
 <pre xml:space="preserve">&lt;m:placeOrder xmlns:m="http://services.samples/xsd"&gt;
   &lt;m:order&gt;
@@ -273,8 +265,6 @@
 &lt;/m:placeOrder&gt;</pre>
       </li>
       <li>
-      </li>
-      <li>
         marketactivity - get a market activity report for the day (i.e. quotes
         for multiple symbols)
 <pre xml:space="preserve">&lt;m:getMarketActivity xmlns:m="http://services.samples/xsd"&gt;
@@ -285,8 +275,6 @@
   &lt;/m:request&gt;
 &lt;/m:getMarketActivity&gt;</pre>
       </li>
-      <li>
-      </li>
     </ul>
     <p>
       Note : See samples/axis2Client/src/samples/common/StockQuoteHandler.java
@@ -480,22 +468,14 @@
     </p>
     <ul>
       <li>
-      </li>
-      <li>
         activeio-core-3.0.0-incubator.jar
       </li>
       <li>
-      </li>
-      <li>
         activemq-core-4.1.0-incubator.jar
       </li>
       <li>
-      </li>
-      <li>
         geronimo-j2ee-management_1.0_spec-1.0.jar
       </li>
-      <li>
-      </li>
     </ul>
     <p>
       To enable the JMS transport, you need to uncomment the JMS transport
@@ -704,13 +684,9 @@
     </p>
     <ol>
       <li>
-      </li>
-      <li>
         Set up and start the Derby network server
       </li>
       <li>
-      </li>
-      <li>
         Create and open a connection to the database using the Derby client
         driver
         <p>
@@ -719,16 +695,12 @@
         </p>
       </li>
       <li>
-      </li>
-      <li>
         Create a table using the following statement
         <p>
           create table company(name varchar(10), id varchar(10), price double);
         </p>
       </li>
       <li>
-      </li>
-      <li>
         Inserts some data using following statements
         <p>
           insert into company values ('IBM','c1',0.0);
@@ -740,8 +712,6 @@
           insert into company values ('MSFT','c3',0.0);
         </p>
       </li>
-      <li>
-      </li>
     </ol>
     <p>
       When using Derby, you need to add derby.jar, derbyclient.jar and