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 sa...@apache.org on 2007/09/17 08:07:48 UTC

svn commit: r576263 - in /webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@: installationguide.xml quickstartguide.xml

Author: sanka
Date: Sun Sep 16 23:07:47 2007
New Revision: 576263

URL: http://svn.apache.org/viewvc?rev=576263&view=rev
Log:
Applied patch.
see: https://issues.apache.org/jira/browse/AXIS2-3198


Modified:
    webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/installationguide.xml
    webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/quickstartguide.xml

Modified: webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/installationguide.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/documentation/xdocs/%40axis2_version_dir%40/installationguide.xml?rev=576263&r1=576262&r2=576263&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/installationguide.xml (original)
+++ webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/installationguide.xml Sun Sep 16 23:07:47 2007
@@ -194,7 +194,7 @@
 <h3>2. Starting up Axis2 Standalone Server</h3>
 <p>The standalone Axis2 server can be started by executing the
 following commands:<br />
-$AXIS2_HOME\bin\axis2server.bat (Windows)<br />
+%AXIS2_HOME%\bin\axis2server.bat (Windows)<br />
 $AXIS2_HOME/bin/axis2server.sh (Unix)</p>
 <p>After startup, the default web services included with Axis2 will
 be available by visiting http://localhost:8080/axis2/services/</p>
@@ -207,17 +207,17 @@
 <p>Locate the Ant build file (build.xml) inside the webapp
 directory, which resides in your Axis2 home directory (i.e:-
 $AXIS_HOME/webapp)". Run the Ant build by executing "ant
-create.war" inside the $AXIS2_HOME/webapps folder. You can find the
-generated axis2.war inside the $AXIS2_HOME/dist directory. All the
+create.war" inside the AXIS2_HOME/webapps folder. You can find the
+generated axis2.war inside the AXIS2_HOME/dist directory. All the
 services and modules that are present in the AXIS2_HOME/repository
 will be packed into the created axis2.war together with the Axis2
-configuration found at $AXIS2_HOME/conf/axis2.xml.</p>
+configuration found at AXIS2_HOME/conf/axis2.xml.</p>
 <p>Read <a href="#servlet_container">Installing Axis2 in a Servlet
 Container</a> to find out how to deploy the Axis2 Web application
 in a servlet container.</p>
 <a name="standalone4" id="standalone4"></a>
 <h3>4. Getting Familiar with the Convenient Axis2 Scripts</h3>
-<p>It is advised to add the $AXIS2_HOME/bin to the PATH, so that
+<p>It is advised to add the AXIS2_HOME/bin to the PATH, so that
 you'll be able to run the following scripts from anywhere.</p>
 <table border="1">
 <tbody>

Modified: webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/quickstartguide.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/documentation/xdocs/%40axis2_version_dir%40/quickstartguide.xml?rev=576263&r1=576262&r2=576263&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/quickstartguide.xml (original)
+++ webservices/axis2/trunk/java/modules/documentation/xdocs/@axis2_version_dir@/quickstartguide.xml Sun Sep 16 23:07:47 2007
@@ -134,7 +134,11 @@
 <ol>
 <li>Create and compile the Java class.
 <pre>
-%AXIS2_HOME%/bin/java2wsdl -cp . -cn samples.quickstart.service.pojo.StockQuoteService -of StockQuoteService.wsdl
+(Windows)
+%AXIS2_HOME%\bin\java2wsdl -cp . -cn samples.quickstart.service.pojo.StockQuoteService -of StockQuoteService.wsdl
+
+(Linux)
+$AXIS2_HOME/bin/java2wsdl -cp . -cn samples.quickstart.service.pojo.StockQuoteService -of StockQuoteService.wsdl
 </pre></li>
 <li>Generate the WSDL using the command:</li>
 </ol>
@@ -142,7 +146,7 @@
 you need. For example, you might add custom faults or change the
 name of the generated elements. For example, this
 StockQuoteService.wsdl is in
-%AXIS2_HOME%/samples/quickstartadb/resources/META-INF folder, which
+AXIS2_HOME/samples/quickstartadb/resources/META-INF folder, which
 we'll be using throughout the rest of this guide, replaces the
 generic parameters created by the generation process.</p>
 <a name="services" id="services"></a>
@@ -266,7 +270,7 @@
 <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&gt;/samples/quickstart (the services.xml file is
+AXIS2_HOME/samples/quickstart (the services.xml file is
 from the first section of this guide):</p>
 <pre>
 - quickstart
@@ -470,7 +474,12 @@
 <p>Generate the skeleton using the WSDL2Java utility by typing the
 following in the Axis2_HOME/samples/quickstartadb directory:</p>
 <pre>
-%AXIS2_HOME%/bin/WSDL2Java -uri resources/META-INF/StockQuoteService.wsdl -p samples.quickstart.service.adb -d adb -s -ss -sd -ssi -o build/service
+(Windows)
+%AXIS2_HOME%\bin\WSDL2Java -uri resources\META-INF\StockQuoteService.wsdl -p samples.quickstart.service.adb -d adb -s -ss -sd -ssi -o build\service
+
+(Linux)
+$AXIS2_HOME/bin/WSDL2Java -uri resources/META-INF/StockQuoteService.wsdl -p samples.quickstart.service.adb -d adb -s -ss -sd -ssi -o build/service
+
 </pre>
 <p>Else, simply type ant generate.service in the
 Axis2_HOME/samples/quickstartadb directory.</p>
@@ -551,7 +560,7 @@
 following in the Axis2_HOME/samples/quickstartxmlbeans
 directory.</p>
 <pre>
-%AXIS2_HOME%/bin/WSDL2Java -uri resources/META-INF/StockQuoteService.wsdl -p samples.quickstart.service.xmlbeans -d xmlbeans -s -ss -sd -ssi -o build/service
+%AXIS2_HOME%\bin\WSDL2Java -uri resources\META-INF\StockQuoteService.wsdl -p samples.quickstart.service.xmlbeans -d xmlbeans -s -ss -sd -ssi -o build\service
 </pre>
 <p>Else simply type ant generate.service in the
 Axis2_HOME/samples/quickstartxmlbeans directory.</p>
@@ -636,7 +645,7 @@
 following at a console in the Axis2_HOME/samples/quickstartjibx
 directory:</p>
 <pre>
-%AXIS2_HOME%/bin/wsdl2java -uri resources/META-INF/StockQuoteService.wsdl -p samples.quickstart.service.jibx -d jibx -s -ss -sd -ssi -uw -o build/service
+%AXIS2_HOME%\bin\wsdl2java -uri resources\META-INF\StockQuoteService.wsdl -p samples.quickstart.service.jibx -d jibx -s -ss -sd -ssi -uw -o build\service
 </pre>
 <p>Else, simply type "ant generate.service" in the
 Axis2_HOME/samples/quickstartjibx directory.</p>
@@ -833,7 +842,7 @@
 <p>Generate the client databings by typing the following in the
 Axis2_HOME/samples/quickstartadb directory:</p>
 <pre>
-%AXIS2_HOME%/bin/WSDL2Java -uri resources/META-INF/StockQuoteService.wsdl -p samples.quickstart.clients -d adb -s -o build/client
+%AXIS2_HOME%\bin\WSDL2Java -uri resources\META-INF\StockQuoteService.wsdl -p samples.quickstart.clients -d adb -s -o build\client
 </pre>
 <p>Else, simply type ant generate.client in the
 Axis2_HOME/samples/quickstartadb directory.</p>
@@ -918,7 +927,7 @@
 <p>Generate the databings by typing the following in the
 xmlbeansClient directory.</p>
 <pre>
-%AXIS2_HOME%/bin/WSDL2Java -uri resources/META-INF/StockQuoteService.wsdl -p samples.quickstart.service.xmlbeans -d xmlbeans -s -o build/client
+%AXIS2_HOME%\bin\WSDL2Java -uri resources\META-INF\StockQuoteService.wsdl -p samples.quickstart.service.xmlbeans -d xmlbeans -s -o build\client
 </pre>
 <p>Else, simply type ant generate.client in the
 Axis2_HOME/samples/quickstartxmlbeans directory.</p>
@@ -1010,7 +1019,7 @@
 <p>Generate the client stub by typing the following at a console in
 the Axis2_HOME/samples/quickstartjibx directory.</p>
 <pre>
-%AXIS2_HOME%/bin/wsdl2java -uri resources/META-INF/StockQuoteService.wsdl -p samples.quickstart.clients -d jibx -s -uw -o build/client
+%AXIS2_HOME%\bin\wsdl2java -uri resources\META-INF\StockQuoteService.wsdl -p samples.quickstart.clients -d jibx -s -uw -o build\client
 </pre>
 <p>Else, simply type "ant generate.client".</p>
 <p>Next take a look at



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