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 ro...@apache.org on 2004/06/15 08:25:55 UTC

cvs commit: ws-axis/site/src/documentation/content/xdocs/cpp windev-guide.ihtml

roshan      2004/06/14 23:25:55

  Modified:    site/src/documentation/content/xdocs/cpp windev-guide.ihtml
  Log:
  Made some chages to Building and Running WSDL2Ws on Command line section in Windows Developers Guide. Changes done by Sevwandi
  
  Revision  Changes    Path
  1.10      +4 -7      ws-axis/site/src/documentation/content/xdocs/cpp/windev-guide.ihtml
  
  Index: windev-guide.ihtml
  ===================================================================
  RCS file: /home/cvs/ws-axis/site/src/documentation/content/xdocs/cpp/windev-guide.ihtml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- windev-guide.ihtml	14 Jun 2004 13:59:11 -0000	1.9
  +++ windev-guide.ihtml	15 Jun 2004 06:25:55 -0000	1.10
  @@ -500,10 +500,6 @@
   <br>
   wsdl4j.jar<br>
   xml-apis.jar
  -
  -<br><br>In adition to above jars You have to create the wsdl2ws.jar which is the jar file for the tool.
  -<br>
  -The CLASSPATH Environment Variable should have the absolute paths of the jars (including the jar file name) given as a semicolon separated list.
   <br><br>
   Open a command window.<br>
   Change directory to [CHECKOUT_HOME]\c\src\wsdl.<br>
  @@ -511,7 +507,7 @@
   <br>
   Run the following command to build the java tool.
   <br><b>
  -javac -sourcepath . org\apache\axis\wsdl\wsdl2ws\WSDL2Ws.java</b>
  +javac -sourcepath . org\apache\axis\wsdl\wsdl2ws\WSDL2Ws*.java</b>
   <br>
   NOTE: Notice the spaces between the "dot" after the -sourcepath switch
   
  @@ -525,9 +521,10 @@
   Now run the following command to generate the server side skeletons and
   wrappers in the same [SKELSTUB_HOME].<br>
   <br>
  -Java -classpath %classpath%;. org.apache.axis.wsdl.wsdl2ws.WSDL2Ws
  -Calculator.wsdl -o./ServerOut -lc++ -sserver<br>
  +Java -classpath .;%classpath% org.apache.axis.wsdl.wsdl2ws.WSDL2Ws Calculator.wsdl -o./ServerOut -lc++ -sserver<br>
   <br>
  +You must give the class path exactly as above in that order.
  +<br><br>
   If the tool is successful the tool will display the files it has
   generated. The skeletons and stubs will be generated in
   [SKELSTUB_HOME]\ServerOut.<br>