butek 02/04/04 19:36:00
Modified: java/docs user-guide.html
Log:
A few documentation bugs found by Mark Volkmann ([EMAIL PROTECTED]).
Revision Changes Path
1.52 +9 -6 xml-axis/java/docs/user-guide.html
Index: user-guide.html
===================================================================
RCS file: /home/cvs/xml-axis/java/docs/user-guide.html,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- user-guide.html 27 Mar 2002 16:46:55 -0000 1.51
+++ user-guide.html 5 Apr 2002 03:36:00 -0000 1.52
@@ -859,15 +859,15 @@
</tr>
<tr>
-<td>For each service</td>
+<td>For all services</td>
-<td>deploy.wsdd</td>
+<td>One deploy.wsdd file</td>
</tr>
<tr>
<td></td>
-<td>undeploy.wsdd</td>
+<td>One undeploy.wsdd file</td>
</tr>
</table>
@@ -1035,7 +1035,7 @@
if there is a namespace in the WSDL document called "urn:AddressFetcher2",
and you want files generated from the objects within this namespace to
reside in the package samples.addr, you would provide the following option
-to Wsdl2java:
+to WSDL2Java:
<pre>--NStoPkg urn:AddressFetcher2=samples.addr</pre>
(Note that if you use the short option tag, "-N", then there must not be
a space between "-N" and the namespace.)
@@ -1320,7 +1320,7 @@
Step 3: Create Bindings using WSDL2Java</h4>
Use the generated WSDL file to build the appropriate client/server bindings
for the web service (see <a href="#WSDL2Java: Building stubs, skeletons, and
data">WSDL2Java</a>):
-<div class="example"><br><font face="Courier New,Courier">% java
org.apache.axis.wsdl.Wsdl2java -o . -d session -s -Nurn:Example6
samples.userguide.example6 ws.wsdl</font></div>
+<div class="example"><br><font face="Courier New,Courier">% java
org.apache.axis.wsdl.WSDL2Java -o . -d session -s -Nurn:Example6
samples.userguide.example6 ws.wsdl</font></div>
<p>This will generate the following files:
<ul>
<li>
@@ -1336,7 +1336,10 @@
<li>
<b><tt>WidgetPriceService.java</tt></b>: Java file containing the client
-side service class.</li>
+side service interface.</li>
+
+<li>
+<b><tt>WidgetPriceServiceLocator.java</tt></b>: Java file containing the client
side service implementation class.</li>
<li>
<b><tt>WidgetPriceSoapBindingSkeleton.java</tt></b>: Server side skeleton.</li>