You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-commits@ws.apache.org by da...@apache.org on 2007/03/19 15:00:18 UTC

svn commit: r519947 - /webservices/muse/site/docs/2.2.0/tutorial/03-wsdl2java.html

Author: danj
Date: Mon Mar 19 07:00:17 2007
New Revision: 519947

URL: http://svn.apache.org/viewvc?view=rev&rev=519947
Log:
Added clarification on axis2 vs. mini.

Modified:
    webservices/muse/site/docs/2.2.0/tutorial/03-wsdl2java.html

Modified: webservices/muse/site/docs/2.2.0/tutorial/03-wsdl2java.html
URL: http://svn.apache.org/viewvc/webservices/muse/site/docs/2.2.0/tutorial/03-wsdl2java.html?view=diff&rev=519947&r1=519946&r2=519947
==============================================================================
--- webservices/muse/site/docs/2.2.0/tutorial/03-wsdl2java.html (original)
+++ webservices/muse/site/docs/2.2.0/tutorial/03-wsdl2java.html Mon Mar 19 07:00:17 2007
@@ -127,22 +127,24 @@
 <h2 class="boxed">Code Generation from WSDL</h2>
 <div class="section">
     <p>Once the WSDL that describes your endpoint is complete, you can use the command-line <a href="../manual/tools/wsdl2java.html">wsdl2java</a> tool
-    to generate all of the code needed to either implement and deploy and endpoint or create a proxy to an endpoint.
-    </p>
-    <p>Below are examples for generating endpoints for OSGi and Axis2 J2EE environments. For much more information, including options on customizing the deployment descriptors and creating endpoints with multiple resource-types see <a href="../manual/tools/wsdl2java.html">the wsdl2java reference</a> documentation.</p>
+    to generate all of the code needed to either implement and deploy and endpoint or create a proxy to an endpoint. Below are examples 
+    for generating endpoints for OSGi and J2EE environments; each example also describes how to leverage 
+    both the Apache Axis2 and Mini SOAP engines in those environments. For more information on 
+    wsdl2java, including options on customizing the deployment descriptors and creating endpoints with multiple resource-types, 
+    see <a href="../manual/tools/wsdl2java.html">the wsdl2java reference documentation</a>.</p>
 </div>
 
 <a name="N1000C"></a><a name="Section2"></a>
-<h2 class="boxed">Axis2 J2EE Code Generation</h2>
+<h2 class="boxed">J2EE Code Generation</h2>
 <div class="section">
-    To generate a project that can be built to create a WAR file that is deployable run <em>wsdl2java</em> as follows:
+    To generate an Axis2-based project that can be built into a deployable WAR file, run <em>wsdl2java</em> as follows:
     <blockquote>
         <code>
             wsdl2java -j2ee axis2 -wsdl pathToWSDLFile
         </code>
     </blockquote>
     <p>Above, <em>pathToWSDLFile</em> should be replaced with the absolute or relative filesystem path to the location of the WSDL document
-    you created.</p>
+    you created. You can switch from Axis2 to the Mini SOAP Engine by replacing <em>axis2</em> with <em>mini</em>.</p>
     
     <p>After the tool has completed successfully run, the following structure will be created <em>in the current directory (which 
     may not be the directory where the wsdl file resides)</em>:</p>
@@ -260,14 +262,14 @@
 <a name="N1000C"></a><a name="Section3"></a>
 <h2 class="boxed">OSGi Code Generation</h2>
 <div class="section">
-    To generate a project that can be built to create an OSGi bundle that is deployable, run <em>wsdl2java</em> as follows:
+    To generate an Axis2-based project that can be built into a deployable OSGi bundle, run <em>wsdl2java</em> as follows:
     <blockquote>
         <code>
             wsdl2java -osgi axis2 -wsdl pathToWSDLFile 
         </code>
     </blockquote>
 <p>Above, <em>pathToWSDLFile</em> should be replaced with the absolute or relative filesystem path to the location of the WSDL document
-    you created.</p>
+    you created. You can switch from Axis2 to the Mini SOAP Engine by replacing <em>axis2</em> with <em>mini</em>.</p>
     <p>After the tool has completed successfully run, the following structure will be created <em>in the current directory (which 
     may not be the directory where the wsdl file resides)</em>:</p>
 



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