Author: chatra
Date: Thu Oct 12 04:20:32 2006
New Revision: 463201

URL: http://svn.apache.org/viewvc?view=rev&rev=463201
Log:
reviewed and applied jira AXIS2-1355. Thanks Isuru

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

Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/reference.html
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/xdocs/1_1/reference.html?view=diff&rev=463201&r1=463200&r2=463201
==============================================================================
--- webservices/axis2/branches/java/1_1/xdocs/1_1/reference.html (original)
+++ webservices/axis2/branches/java/1_1/xdocs/1_1/reference.html Thu Oct 12 
04:20:32 2006
@@ -6,55 +6,50 @@
 </head>
 
 <body lang="en-US" dir="ltr">
-<h1 align="center"><a name="_Toc96697849" id="_Toc96697849">Axis2 Reference 
Guide</h1>
+<h1 align="center"><a name="_Toc96697849" id="_Toc96697849">Axis2 Reference
+Guide</a></h1>
 
 <h2 name="wsdl2code">WSDL2Code Reference</h2>
-
-<pre>
-NAME
-       WSDL2Java.sh or WSDL2Java.bat - Given a WSDL file generate java code to 
handle Web Service invocation.
-       Shell script can be found from bin directory in the Axis2 distribution.
-
+<pre>NAME
+       WSDL2Java.sh or WSDL2Java.bat - Generates java code according to a 
given WSDL file to handle Web service ivocation.
+       These scripts can be found under the bin directory of the Axis2 
distribution.
 
 SYNOPSIS
        WSDL2Java.sh [OPTION]... -uri &lt;Location of WSDL&gt;
 
 DESCRIPTION
-       Given a WSDL file generate java code to handle Web Service invocation.
+       Given a WSDL file, generates java code to handle Web service invocation.
 
-       -o &lt;output Location&gt; : output file location
-       -a : Generate async style code only. Default is off
-       -s : Generate sync style code only. Default is off. takes precedence 
over -a
-       -p &lt;package name&gt; : set custom package name
-       -l &lt;language&gt; : valid languages are java and csharp. Default is 
java
-       -t : Generate TestCase to test the generated code
-       -ss : Generate server side code (i.e. skeletons). Default is off
-       -sd : Generate service descriptor (i.e. services.xml). Default is off. 
Valid with -ss
-       -d &lt;databinding&gt; : valid databinding(s) are adb, xmlbeans and 
jaxme. Default is adb
-       -g Generates all the classes. valid only with the -ss (This will 
generate client and server codes)
-       -pn &lt;port_name&gt; : name of port in the presence of multiple ports
-       -sn &lt;service_name&gt; : name of service in the presence of multiple 
services
-       -u : unpacks the databinding classes
-       -r &lt;repository_path&gt; : path of the repository against which code 
is generated
+        -o &lt;output Location&gt; : output file location
+        -a : Generate async style code only. Default is off
+        -s : Generate sync style code only. Default is off. takes precedence 
over -a
+        -p &lt;package name&gt; : set custom package name
+        -l &lt;language&gt; : valid languages are java and csharp. Default is 
java
+        -t : Generate TestCase to test the generated code
+        -ss : Generate server side code (i.e. skeletons). Default is off
+        -sd : Generate service descriptor (i.e. services.xml). Default is off. 
Valid with -ss
+        -d &lt;databinding&gt; : valid databinding(s) are adb, xmlbeans and 
jaxme. Default is adb
+        -g Generates all the classes. valid only with the -ss (This will 
generate client and server codes)
+        -pn &lt;port_name&gt; : name of port in the presence of multiple ports
+        -sn &lt;service_name&gt; : name of service in the presence of multiple 
services
+        -u : unpacks the databinding classes
+        -r &lt;repository_path&gt; : path of the repository against which code 
is generated
 EXAMPLES
-       WSDL2Java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl
-       WSDL2Java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd 
-       WSDL2Java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd -d 
xmlbeans -o ../samples -p org.apache.axis2.userguide
-
+       WSDL2Java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl
+       WSDL2Java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd 
+       WSDL2Java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd -d 
xmlbeans -o ../samples -p org.apache.axis2.userguide
 </pre>
 
 <h2 name="wsdl2java">Java2WSDL Reference</h2>
-<pre>
-NAME
-       Java2WSDL.sh or Java2WSDL.bat - Given a java class generate a WSDL file 
for the given java class. 
-       Can be found from bin directory in the Axis2 distribution.
-
+<pre>NAME
+       Java2WSDL.sh or Java2WSDL.bat - Generates the appropriate WSDL file for 
a given java class.
+       These scripts can be found under the bin directory of the Axis2 
distribution.
 
 SYNOPSIS
        Java2WSDL.sh [OPTION]... -cn &lt;fully qualified class name&gt;
 
 DESCRIPTION
-       Given a java class generate a WSDL file for the given java class. 
+       Given a java class generates a WSDL file for the given java class. 
 
        -o &lt;output Location&gt; : output file location
        -cp &lt;class path uri&gt; : list of classpath entries - (urls)
@@ -70,7 +65,11 @@
        -efd &lt;qualified/unqualified&gt; : Setting for elementFormDefault 
(defaults to qualified)
        -afd &lt;qualified/unqualified&gt; : Setting for attributeFormDefault 
(defaults to qualified)
        -xc &lt;extra class&gt; : Extra class for which schematype must be 
generated.  Use as : -xc class1 -xc class2 ...
-EXAMPLE
-       
-
+EXAMPLES
+       Java2WSDL.sh -cn ../samples/test/searchTool.Search
+       Java2WSDL.sh -cn ../samples/test/searchTool.Search -sn search
+       Java2WSDL.sh -cn ../samples/test/searchTool.Search -u -sn search
+       Java2WSDL.sh -cn ../samples/test/searchTool.Search -sn search -o 
../samples/test/wsdl        
+</pre>
+</body>
 </html>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to