You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2006/11/13 09:17:33 UTC

svn commit: r474186 - /webservices/axis2/branches/java/1_1/xdocs/1_1/quickstartguide.html

Author: chatra
Date: Mon Nov 13 00:17:32 2006
New Revision: 474186

URL: http://svn.apache.org/viewvc?view=rev&rev=474186
Log:
made a few layout improvements

Modified:
    webservices/axis2/branches/java/1_1/xdocs/1_1/quickstartguide.html

Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/quickstartguide.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/xdocs/1_1/quickstartguide.html?view=diff&rev=474186&r1=474185&r2=474186
==============================================================================
--- webservices/axis2/branches/java/1_1/xdocs/1_1/quickstartguide.html (original)
+++ webservices/axis2/branches/java/1_1/xdocs/1_1/quickstartguide.html Mon Nov 13 00:17:32 2006
@@ -70,7 +70,7 @@
 <p>First, let's look at how this simple Java class corresponds to a service.</p>
 
 
-<a name="ready"></a><h2>Getting ready</h2>
+<a name="ready"></a><h2>Getting Ready</h2>
 
 <p>Before we build anything using Axis2, we're going to need to take care of a little housekeeping. First off, you'll need to ready your environment for working with Axis2. Fortunately, it involves just a few simple steps:</p>
 
@@ -180,7 +180,7 @@
 
 <a name="deploy"></a><h3>Deploying POJOs</h3>
 
-<p>To deploy the service using POJOs, execute the following steps.</p>
+<p>To deploy the service using POJOs (Plain Old Java Objects), execute the following steps.</p>
 
 <p>Note the directory structure contained at &lt;AXIS2_HOME>/samples/quickstart (the services.xml file is from the first section of this guide):</p>
 <pre>
@@ -268,7 +268,7 @@
 </pre>
 
 <p>Since AXIOM is a little different, you’re going to need a different services.xml file from the one used for POJO. Define it, as shown in Code Listing 4.</p>
-<p><b>Code Listing 4: The service definition file.</b></p>
+<p><b>Code Listing 4: The Service Definition File.</b></p>
 <pre>&lt;service name="StockQuoteService" scope="application"&gt;
     &lt;description&gt;
         Stock Quote Service
@@ -355,7 +355,7 @@
 http://localhost:8080/axis2/services/StockQuoteService?xsd
 </pre>
 
-<a name="adb"></a><h3>Generating the service using ADB</h3>
+<a name="adb"></a><h3>Generating the Service using ADB</h3>
 
 <p>To generate and deploy the service using the Axis2 Databinding Framework (ADB) execute the following steps.</p>
 
@@ -368,7 +368,7 @@
 
 <p>Open the build/service/src/samples/quickstart/adb/service/StockQuoteServiceSkeleton.java file and modify it to add the functionality of your service to the generated methods, shown in Code Listing 6.</p>
 
-<p><b>Code Listing 6: Defining the service skeleton file</b></p>
+<p><b>Code Listing 6: Defining the Service Skeleton File</b></p>
 <pre>package samples.quickstart.service.adb;
 
 import samples.quickstart.service.adb.xsd.GetPriceResponse;
@@ -437,7 +437,7 @@
 
 <p>Next open the build/service/src/samples/quickstart/service/xmlbeans/StockQuoteServiceSkeleton.java file and modify it to add the functionality of your service to the generated methods (see Code Listing 7).</p>
 
-<p><b>Code Listing 7: Defining the service skeleton</b></p>
+<p><b>Code Listing 7: Defining the Service Skeleton</b></p>
 <pre>package samples.quickstart.service.xmlbeans;
 
 import samples.quickstart.service.xmlbeans.xsd.GetPriceDocument;
@@ -495,7 +495,7 @@
 http://localhost:8080/axis2/services/StockQuoteService?xsd
 </pre>
 
-<a name="jibx"></a><h3>Generating the service using JiBX</h3>
+<a name="jibx"></a><h3>Generating the Service using JiBX</h3>
 
 <p>To generate and deploy the service using <a href="http://www.jibx.org">JiBX data binding</a>, execute the following steps.</p>
 
@@ -564,11 +564,11 @@
 http://localhost:8080/axis2/services/StockQuoteService?xsd
 </pre>
 
-<a name="clients"></a><h2>Creating clients</h2>
+<a name="clients"></a><h2>Creating Clients</h2>
 
 <p>In this section, we'll look at three ways to create clients based on the StockQuoteService class:  Building an AXIOM based client, generating a client using Axis2 Databinding Framework (ADB), and generating a client using XMLBeans.</p>
 
-<a name="clientaxiom"></a><h3>Creating a client with AXIOM</h3>
+<a name="clientaxiom"></a><h3>Creating a Client with AXIOM</h3>
 
 <p>To build a client using AXIOM, execute the following steps.</p>
 
@@ -674,7 +674,7 @@
 Current price of WSO: 123.42
 </pre>
 
-<a name="clientadb"></a><h3>Generating a client using ADB</h3>
+<a name="clientadb"></a><h3>Generating a Client using ADB</h3>
 
 <p>To build a client using Axis Data Binding (ADB), execute the following steps.</p>
 
@@ -839,7 +839,7 @@
 done
 </pre>
 
-<a name="clientjibx"></a><h3>Generating a client using JiBX</h3>
+<a name="clientjibx"></a><h3>Generating a Client using JiBX</h3>
 
 <p>To build a client using JiBX, execute the following steps.</p>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org