You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by to...@apache.org on 2005/01/27 11:13:25 UTC

cvs commit: ws-site/targets/axis/java/ant ant.html ant.pdf axis-admin.html axis-admin.pdf axis-java2wsdl.html axis-java2wsdl.pdf axis-wsdl2java.html axis-wsdl2java.pdf foreach.html foreach.pdf runaxisfunctionaltests.html runaxisfunctionaltests.pdf

toshi       2005/01/27 02:13:25

  Modified:    targets/axis/java/ant ant.html ant.pdf axis-admin.html
                        axis-admin.pdf axis-java2wsdl.html
                        axis-java2wsdl.pdf axis-wsdl2java.html
                        axis-wsdl2java.pdf foreach.html foreach.pdf
                        runaxisfunctionaltests.html
                        runaxisfunctionaltests.pdf
  Log:
  Migration for Forrest 0.6
  
  Revision  Changes    Path
  1.16      +92 -27    ws-site/targets/axis/java/ant/ant.html
  
  Index: ant.html
  ===================================================================
  RCS file: /home/cvs/ws-site/targets/axis/java/ant/ant.html,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- ant.html	30 Dec 2004 03:04:37 -0000	1.15
  +++ ant.html	27 Jan 2005 10:13:25 -0000	1.16
  @@ -7,7 +7,7 @@
   <link rel="stylesheet" href="../../skin/mysite.css" type="text/css">
   <link rel="stylesheet" href="../../skin/site.css" type="text/css">
   <link media="print" rel="stylesheet" href="../../skin/print.css" type="text/css">
  -<title>Axis Ant Tasks</title>
  +<title>WebServices - Axis</title>
   </head>
   <body bgcolor="white" class="composite">
   <!--================= start Banner ==================-->
  @@ -38,7 +38,7 @@
   <td colspan="3"><img height="8" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
   <tr>
  -<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="GO" type="submit">
  +<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="Go" type="submit">
   <br>
                             Search WS</td><td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
  @@ -172,15 +172,15 @@
   <span class="menuLabel">Axis (C++)</span>
     
   <div class="menuItem">
  -<a href="../../cpp/index.html">Latest Axis C++ Release!</a>
  +<a href="http://ws.apache.org/axis/cpp/index.html">Latest Axis C++ Release!</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/documentation.html">Documentation</a>
  +<a href="http://ws.apache.org/axis/cpp/documentation.html">Documentation</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/download.html">Download</a>
  +<a href="http://ws.apache.org/axis/cpp/download.html">Download</a>
   </div>
     
   <div class="menuItem">
  @@ -188,7 +188,7 @@
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/who.html">Who we are</a>
  +<a href="http://ws.apache.org/axis/cpp/who.html">Who we are</a>
   </div>
     
   </div>
  @@ -214,7 +214,7 @@
   <span class="menuLabel">Translation</span>
     
   <div class="menuItem">
  -<a href="http://ws.apache.org/axis/jp/">Japanese</a>
  +<a href="http://ws.apache.org/axis/ja/index.html">Japanese</a>
   </div>
   
   </div>
  @@ -244,10 +244,6 @@
   <span class="menuLabel">Misc</span>
     
   <div class="menuItem">
  -<a href="../../site.html">Whole Site</a>
  -</div>
  -  
  -<div class="menuItem">
   <a href="../../who.html">Who We Are</a>
   </div>
     
  @@ -275,39 +271,70 @@
   <div id="bodycol">
   <div class="app">
   <div align="center">
  -<h1>Axis Ant Tasks</h1>
  +<h1>WebServices - Axis</h1>
   </div>
   <div class="h3">
  +  
  +  
  +
  +
  +<a name="AxisAntTasks"></a>
  +
   <div class="h3">
   <h3>Axis Ant Tasks</h3>
   </div>
  +
  +
  +
   <p>Axis comes with Ant tasks to automate aspects of the build process inside ant. To use these tasks, you need</p>
  +
  +
   <ol>
  +  
   <li>
   <a href="http://jakarta.apache.org/ant">Apache Ant 1.5.1 or later</a>
   </li>
  -<li>The library <tt>axis-ant.jar</tt> which contains the tasks</li>
  +  
  +<li>The library <span class="codefrag">axis-ant.jar</span> which contains the tasks</li>
  +  
   <li>All the main Axis libraries</li>
  +
   </ol>
  +
  +
   <div class="h4">
   <h4>Declaring the Tasks</h4>
   </div>
  +
  +
  +
   <p>To declare the tasks, set up a classpath to include the axis task JAR and all the dependent libraries. Including everything in the axis lib directory should suffice</p>
  -<pre>&lt;path id="axis.classpath"&gt;
  +
  +
  +<pre class="code">&lt;path id="axis.classpath"&gt;
     &lt;fileset dir="${axis.home}/build/lib"&gt;
       &lt;include name="**/*.jar" /&gt;
     &lt;/fileset&gt;
  -&lt;/path&gt;
  -</pre>
  -<p>Then use the <tt>&lt;taskdef&gt;</tt> declaration to declare all the tasks listed in a properties file inside the <tt>axis-ant.jar</tt> file:</p>
  -<pre>&lt;taskdef resource="axis-tasks.properties"
  -  classpathref="axis.classpath" /&gt;
  -</pre>
  +&lt;/path&gt;</pre>
  +
  +
  +<p>Then use the <span class="codefrag">&lt;taskdef&gt;</span> declaration to declare all the tasks listed in a properties file inside the <span class="codefrag">axis-ant.jar</span> file:</p>
  +
  +<pre class="code">&lt;taskdef resource="axis-tasks.properties"
  +  classpathref="axis.classpath" /&gt;</pre>
  +
  +
  +
  +
   <div class="h4">
   <h4>Creating Java files from WSDL</h4>
   </div>
  +
  +
  +
   <p>This uses the <a href="axis-wsdl2java.html">&lt;axis-wsdl2java&gt;</a> task.</p>
  -<pre>&lt;axis-wsdl2java
  +
  +<pre class="code">&lt;axis-wsdl2java
     output="${generated.dir}"
     testcase="true"
     verbose="true"
  @@ -315,39 +342,77 @@
       &lt;mapping
         namespace="http://axis.apache.org/ns/interop"
         package="interop" /&gt;
  -  &lt;/axis-wsdl2java&gt;
  -</pre>
  +  &lt;/axis-wsdl2java&gt;</pre>
  +
  +
   <p>The mapping elements are used to list the mappings from XML namespaces to Java packages; you can include as many as you need.</p>
  +
  +
  +
  +
   <div class="h4">
   <h4>Creating WSDL files from Java</h4>
   </div>
  +
  +
  +
   <p>This uses the <a href="axis-java2wsdl.html">&lt;axis-java2wsdl&gt;</a> task.</p>
  +
  +
  +
  +
   <div class="h4">
   <h4>Talking to the admin service</h4>
   </div>
  +
  +
  +
   <p>This can be done with the <a href="axis-admin.html">&lt;axis-admin&gt;</a> task.</p>
  -<pre>&lt;axis-admin
  +
  +<pre class="code">&lt;axis-admin
       port="${target.port}"
       hostname="${target.server}"
       failonerror="true"
       servletpath="${target.appname}/services/AdminService"
       debug="true"
       xmlfile="${endpoint-stub.wsdd}"
  -    /&gt;
  -</pre>
  +    /&gt;</pre>
  +
  +
   <p>Here the target.* properties are pulled from a properties file for the system being deployed to, so a single build file can deploy to different systems with ease.</p>
  +
  +
  +
  +
   <div class="h4">
   <h4>Foreach Task</h4>
   </div>
  +
  +
  +
   <p>
   <a href="foreach.html">&lt;axis-admin&gt;</a>
   </p>
  +
  +
  +
  +
   <div class="h4">
   <h4>Runaxisfunctionaltests Task</h4>
   </div>
  +
  +
  +
   <p>
   <a href="runaxisfunctionaltests.html">&lt;axis-admin&gt;</a>
   </p>
  +
  +
  +
  +
  +
  +  
  +
   <div id="pdf" align="right">
   <a href="ant.pdf"><img alt="PDF" src="../../skin/images/pdfdoc.gif" class="skin"><br>
             PDF</a>
  @@ -370,7 +435,7 @@
   <td colspan="2">
   <div align="center">
   <div class="copyright">
  -              Copyright &copy; 2000-2004&nbsp;The Apache Software Foundation. All rights reserved.
  +              Copyright &copy; 2000-2005&nbsp;The Apache Software Foundation. All rights reserved.
               </div>
   </div>
   </td>
  
  
  
  1.9       +98 -251   ws-site/targets/axis/java/ant/ant.pdf
  
  	<<Binary file>>
  
  
  1.16      +134 -63   ws-site/targets/axis/java/ant/axis-admin.html
  
  Index: axis-admin.html
  ===================================================================
  RCS file: /home/cvs/ws-site/targets/axis/java/ant/axis-admin.html,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- axis-admin.html	30 Dec 2004 03:04:37 -0000	1.15
  +++ axis-admin.html	27 Jan 2005 10:13:25 -0000	1.16
  @@ -7,7 +7,7 @@
   <link rel="stylesheet" href="../../skin/mysite.css" type="text/css">
   <link rel="stylesheet" href="../../skin/site.css" type="text/css">
   <link media="print" rel="stylesheet" href="../../skin/print.css" type="text/css">
  -<title>Axis-admin Task</title>
  +<title>WebServices - Axis</title>
   </head>
   <body bgcolor="white" class="composite">
   <!--================= start Banner ==================-->
  @@ -38,7 +38,7 @@
   <td colspan="3"><img height="8" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
   <tr>
  -<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="GO" type="submit">
  +<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="Go" type="submit">
   <br>
                             Search WS</td><td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
  @@ -172,15 +172,15 @@
   <span class="menuLabel">Axis (C++)</span>
     
   <div class="menuItem">
  -<a href="../../cpp/index.html">Latest Axis C++ Release!</a>
  +<a href="http://ws.apache.org/axis/cpp/index.html">Latest Axis C++ Release!</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/documentation.html">Documentation</a>
  +<a href="http://ws.apache.org/axis/cpp/documentation.html">Documentation</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/download.html">Download</a>
  +<a href="http://ws.apache.org/axis/cpp/download.html">Download</a>
   </div>
     
   <div class="menuItem">
  @@ -188,7 +188,7 @@
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/who.html">Who we are</a>
  +<a href="http://ws.apache.org/axis/cpp/who.html">Who we are</a>
   </div>
     
   </div>
  @@ -214,7 +214,7 @@
   <span class="menuLabel">Translation</span>
     
   <div class="menuItem">
  -<a href="http://ws.apache.org/axis/jp/">Japanese</a>
  +<a href="http://ws.apache.org/axis/ja/index.html">Japanese</a>
   </div>
   
   </div>
  @@ -244,10 +244,6 @@
   <span class="menuLabel">Misc</span>
     
   <div class="menuItem">
  -<a href="../../site.html">Whole Site</a>
  -</div>
  -  
  -<div class="menuItem">
   <a href="../../who.html">Who We Are</a>
   </div>
     
  @@ -275,86 +271,161 @@
   <div id="bodycol">
   <div class="app">
   <div align="center">
  -<h1>Axis-admin Task</h1>
  +<h1>WebServices - Axis</h1>
   </div>
   <div class="h3">
  +  
  +  
  +
  +
   <div class="h3">
   <h3>Axis-admin Task</h3>
   </div>
  +
  +
  +
  +<p>Task to administer a local or remote Axis server.</p>
  +
  +
  +<div class="h4">
  +<h4>Description</h4>
  +</div>
  +
  +
  +
  +<p>Task to administer a local or remote Axis server. Remember, for remote admin, the server has to be accept remote management calls.</p>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters</h4>
  +</div>
  +
  +
  +
   <table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<!-- PAGE HEADER -->
  -<tr class="b">
  -<td>
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
   <tr class="b">
  -<td><strong>Axis-admin Task</strong>
  -<br> Task to administer a local or remote Axis server.</td><td>
  -<!-- PROJECT LOGO --><a href="http://jakarta.apache.org/ant/"><img alt="Apache Ant" src="../images/ant_logo_large.gif"></a></td>
  -</tr>
  -</table>
  -</td>
  +    
  +<th colspan="1" rowspan="1">Attribute</th>
  +    <th colspan="1" rowspan="1">Description</th>
  +    <th colspan="1" rowspan="1">Type</th>
  +  
   </tr>
  -<!-- START RIGHT SIDE MAIN BODY -->
  +  
   <tr class="a">
  -<td>
  -<!-- Applying task/long-description -->
  -<!-- Start Description -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +    
  +<td colspan="1" rowspan="1">debug</td>
  +    <td colspan="1" rowspan="1">set a debug flag</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
  +</tr>
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">failonerror</td>
  +    <td colspan="1" rowspan="1">Whether or not the build should halt if this task fails. Defaults to <span class="codefrag">true</span>.</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="description"></a><strong>Description</strong></td>
  -</tr>
  -<tr class="b">
  -<td>
  -<pre class="code">Task to administer a local or remote Axis server. Remember, for remote admin, the server has to be accept remote management calls.</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">fileprotocol</td>
  +    <td colspan="1" rowspan="1">specifies that a simple file protocol be used</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -</table>
  -<!-- End Description -->
  -<!-- Start Attributes -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">hostname</td>
  +    <td colspan="1" rowspan="1">name the host to admin</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="attributes"></a><strong>Parameters</strong></td>
  -</tr>
  -<tr class="b">
  -<td>
  -<pre class="code">AttributeDescriptionTypedebugset a debug flagbooleanfailonerrorWhether or not the build should halt if this task fails. Defaults to true.booleanfileprotocolspecifies that a simple file protocol be usedjava.lang.Stringhostnamename the host to adminjava.lang.Stringnewpasswordset a new password; only valid if action=passwdjava.lang.Stringpasswordthe admin passwordjava.lang.Stringportthe port to connect tointservletpaththe path to the AxisAdmin servletjava.lang.Stringtransportchainset the transport chain to usejava.lang.Stringurlfull url to the admin endpointjava.lang.Stringusernameusername to log in asjava.lang.Stringxmlfilethe name of the XML file containing deployment informationjava.io.File</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">newpassword</td>
  +    <td colspan="1" rowspan="1">set a new password; only valid if action=passwd</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -</table>
  -<!-- End Attributes -->
  -<!-- Start Elements -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">password</td>
  +    <td colspan="1" rowspan="1">the admin password</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="elements"></a><strong>Parameters as nested elements</strong></td>
  +    
  +<td colspan="1" rowspan="1">port</td>
  +    <td colspan="1" rowspan="1">the port to connect to</td>
  +    <td colspan="1" rowspan="1">int</td>
  +  
   </tr>
  +  
   <tr class="b">
  -<td></td>
  +    
  +<td colspan="1" rowspan="1">servletpath</td>
  +    <td colspan="1" rowspan="1">the path to the AxisAdmin servlet</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -</table>
  -<!-- End Elements -->
  -</td>
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">transportchain</td>
  +    <td colspan="1" rowspan="1">set the transport chain to use</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -<!-- END RIGHT SIDE MAIN BODY -->
  -<!-- FOOTER SEPARATOR -->
  +  
   <tr class="b">
  -<td>
  -<hr noshade="noshade" size="1">
  -</td>
  +    
  +<td colspan="1" rowspan="1">url</td>
  +    <td colspan="1" rowspan="1">full url to the admin endpoint</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -<!-- PAGE FOOTER -->
  +  
   <tr class="a">
  -<td><em>Copyright &copy; 2000-2003, Apache Software Foundation</em></td>
  +    
  +<td colspan="1" rowspan="1">username</td>
  +    <td colspan="1" rowspan="1">username to log in as</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
  +</tr>
  +  
  +<tr class="b">
  +    
  +<td colspan="1" rowspan="1">xmlfile</td>
  +    <td colspan="1" rowspan="1">the name of the XML file containing deployment information</td>
  +    <td colspan="1" rowspan="1">java.io.File</td>
  +  
   </tr>
  +
   </table>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters as nested elements</h4>
  +</div>
  +
  +
  +
  +
  +
  +
  +  
  +
   <div id="pdf" align="right">
   <a href="axis-admin.pdf"><img alt="PDF" src="../../skin/images/pdfdoc.gif" class="skin"><br>
             PDF</a>
  @@ -377,7 +448,7 @@
   <td colspan="2">
   <div align="center">
   <div class="copyright">
  -              Copyright &copy; 2000-2004&nbsp;The Apache Software Foundation. All rights reserved.
  +              Copyright &copy; 2000-2005&nbsp;The Apache Software Foundation. All rights reserved.
               </div>
   </div>
   </td>
  
  
  
  1.9       +105 -105  ws-site/targets/axis/java/ant/axis-admin.pdf
  
  	<<Binary file>>
  
  
  1.17      +205 -59   ws-site/targets/axis/java/ant/axis-java2wsdl.html
  
  Index: axis-java2wsdl.html
  ===================================================================
  RCS file: /home/cvs/ws-site/targets/axis/java/ant/axis-java2wsdl.html,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- axis-java2wsdl.html	30 Dec 2004 03:04:37 -0000	1.16
  +++ axis-java2wsdl.html	27 Jan 2005 10:13:25 -0000	1.17
  @@ -7,7 +7,7 @@
   <link rel="stylesheet" href="../../skin/mysite.css" type="text/css">
   <link rel="stylesheet" href="../../skin/site.css" type="text/css">
   <link media="print" rel="stylesheet" href="../../skin/print.css" type="text/css">
  -<title>Axis-java2wsdl Task</title>
  +<title>WebServices - Axis</title>
   </head>
   <body bgcolor="white" class="composite">
   <!--================= start Banner ==================-->
  @@ -38,7 +38,7 @@
   <td colspan="3"><img height="8" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
   <tr>
  -<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="GO" type="submit">
  +<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="Go" type="submit">
   <br>
                             Search WS</td><td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
  @@ -172,15 +172,15 @@
   <span class="menuLabel">Axis (C++)</span>
     
   <div class="menuItem">
  -<a href="../../cpp/index.html">Latest Axis C++ Release!</a>
  +<a href="http://ws.apache.org/axis/cpp/index.html">Latest Axis C++ Release!</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/documentation.html">Documentation</a>
  +<a href="http://ws.apache.org/axis/cpp/documentation.html">Documentation</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/download.html">Download</a>
  +<a href="http://ws.apache.org/axis/cpp/download.html">Download</a>
   </div>
     
   <div class="menuItem">
  @@ -188,7 +188,7 @@
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/who.html">Who we are</a>
  +<a href="http://ws.apache.org/axis/cpp/who.html">Who we are</a>
   </div>
     
   </div>
  @@ -214,7 +214,7 @@
   <span class="menuLabel">Translation</span>
     
   <div class="menuItem">
  -<a href="http://ws.apache.org/axis/jp/">Japanese</a>
  +<a href="http://ws.apache.org/axis/ja/index.html">Japanese</a>
   </div>
   
   </div>
  @@ -244,10 +244,6 @@
   <span class="menuLabel">Misc</span>
     
   <div class="menuItem">
  -<a href="../../site.html">Whole Site</a>
  -</div>
  -  
  -<div class="menuItem">
   <a href="../../who.html">Who We Are</a>
   </div>
     
  @@ -275,88 +271,238 @@
   <div id="bodycol">
   <div class="app">
   <div align="center">
  -<h1>Axis-java2wsdl Task</h1>
  +<h1>WebServices - Axis</h1>
   </div>
   <div class="h3">
  +  
  +  
  +
  +
   <div class="h3">
   <h3>Axis-java2wsdl Task</h3>
   </div>
  +
  +
  +
  +<p>Generates a WSDL description from a Java class.</p>
  +
  +
  +<div class="h4">
  +<h4>Description</h4>
  +</div>
  +
  +
  +
  +<p>Generates a WSDL description from a Java class.</p>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters</h4>
  +</div>
  +
  +
  +
   <table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<!-- PAGE HEADER -->
  +  
   <tr class="b">
  -<td>
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +    
  +<th colspan="1" rowspan="1">Attribute</th>
  +    <th colspan="1" rowspan="1">Description</th>
  +    <th colspan="1" rowspan="1">Type</th>
  +  
  +</tr>
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">bindingname</td>
  +    <td colspan="1" rowspan="1">The name to use use for the binding element. If not specified, the value of the <span class="codefrag">servicePortName</span> + "SoapBinding" is used.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
  +</tr>
  +  
   <tr class="b">
  -<td><strong>Axis-java2wsdl Task</strong>
  -<br> Generates a WSDL description from a Java class.</td><td>
  -<!-- PROJECT LOGO --><a href="http://jakarta.apache.org/ant/"><img alt="Apache Ant" src="../images/ant_logo_large.gif"></a></td>
  +    
  +<td colspan="1" rowspan="1">classname</td>
  +    <td colspan="1" rowspan="1">the class name to import, eg. org.example.Foo. Required. The class must be on the classpath.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -</table>
  -</td>
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">exclude</td>
  +    <td colspan="1" rowspan="1">Comma separated list of methods to exclude from the wsdl file.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -<!-- START RIGHT SIDE MAIN BODY -->
  +  
  +<tr class="b">
  +    
  +<td colspan="1" rowspan="1">extraclasses</td>
  +    <td colspan="1" rowspan="1">The setter for the "extraClasses" attribute</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
  +</tr>
  +  
   <tr class="a">
  -<td>
  -<!-- Applying task/long-description -->
  -<!-- Start Description -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +    
  +<td colspan="1" rowspan="1">implclass</td>
  +    <td colspan="1" rowspan="1">Sometimes extra information is available in the implementation class file. Use this option to specify the implementation class.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
  +</tr>
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">input</td>
  +    <td colspan="1" rowspan="1">Optional attribute that indicates the name of the input wsdl file. The output wsdl file will contain everything from the input wsdl file plus the new constructs. If a new construct is already present in the input wsdl file, it is not added. This option is useful for constructing a wsdl file with multiple ports, bindings, or portTypes.</td>
  +    <td colspan="1" rowspan="1">java.io.File</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="description"></a><strong>Description</strong></td>
  +    
  +<td colspan="1" rowspan="1">location</td>
  +    <td colspan="1" rowspan="1">The url of the location of the service. The name after the last slash or backslash is the name of the service port (unless overridden by the -s option). The service port address location attribute is assigned the specified value.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="b">
  -<td>
  -<pre class="code">Generates a WSDL description from a Java class.</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">locationimport</td>
  +    <td colspan="1" rowspan="1">the location of the interface WSDL when generating an implementation WSDL Required when <span class="codefrag">outputImpl</span> is set</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -</table>
  -<!-- End Description -->
  -<!-- Start Attributes -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">methods</td>
  +    <td colspan="1" rowspan="1">If this option is specified, only the indicated methods in your interface class will be exported into the WSDL file. The methods list must be comma separated. If not specified, all methods declared in the interface class will be exported into the WSDL file</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
  +</tr>
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">namespace</td>
  +    <td colspan="1" rowspan="1">the target namespace. Required.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="attributes"></a><strong>Parameters</strong></td>
  +    
  +<td colspan="1" rowspan="1">namespaceimpl</td>
  +    <td colspan="1" rowspan="1">Namespace of the implementation WSDL.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="b">
  -<td>
  -<pre class="code">AttributeDescriptionTypebindingnameThe name to use use for the binding element. If not specified, the value of the servicePortName + "SoapBinding" is used.java.lang.Stringclassnamethe class name to import, eg. org.example.Foo. Required. The class must be on the classpath.java.lang.StringexcludeComma separated list of methods to exclude from the wsdl file.java.lang.StringextraclassesThe setter for the "extraClasses" attributejava.lang.StringimplclassSometimes extra information is available in the implementation class file. Use this option to specify the implementation class.java.lang.StringinputOptional attribute that indicates the name of the input wsdl file. The output wsdl file will contain everything from the input wsdl file plus the new constructs. If a new construct is already present in the input wsdl file, it is not added. This option is useful for constructing a wsdl file with multiple ports, bindings, or portTypes.java.io.FilelocationThe url of the location of the service. The name after the last slash or backslash is the name of the service port (unless overridden by the -s option). The service port address location attribute is assigned the specified value.java.lang.Stringlocationimportthe location of the interface WSDL when generating an implementation WSDL Required when outputImpl is setjava.lang.StringmethodsIf this option is specified, only the indicated methods in your interface class will be exported into the WSDL file. The methods list must be comma separated. If not specified, all methods declared in the interface class will be exported into the WSDL filejava.lang.Stringnamespacethe target namespace. Required.java.lang.StringnamespaceimplNamespace of the implementation WSDL.java.lang.StringoutputThe name of the output WSDL file. If not specified, a suitable default WSDL file is written into the current directory.java.io.FileoutputimplUse this option to indicate the name of the output implementation WSDL file. If specified, Java2WSDL will produce separate interface and implementation WSDL files. If not, a single WSDL file is generatedjava.io.FileporttypenameIndicates the name to use use for the portType element. If not specified, the class-of-portType name is used.java.lang.Stringserviceelementnamethe name of the service element. If not specified, the service element is the portTypeNameService.java.lang.Stringserviceportnameservice port name (obtained from location if not specified)java.lang.StringstopclassesComma separated list of classes which stop the Java2WSDL inheritance search.java.lang.StringstyleThe style of the WSDL document: RPC, DOCUMENT or WRAPPED. If RPC, a rpc/encoded wsdl is generated. If DOCUMENT, a document/literal wsdl is generated. If WRAPPED, a document/literal wsdl is generated using the wrapped approach.java.lang.Stringtypemappingversionthe default type mapping registry to use. Either 1.1 or 1.2. Default is 1.1org.apache.axis.tools.ant.wsdl.TypeMappingVersionEnumuseSet the use optionjava.lang.Stringuseinheritedmethodsshould inherited methods be exported too? Default=falseboolean</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">output</td>
  +    <td colspan="1" rowspan="1">The name of the output WSDL file. If not specified, a suitable default WSDL file is written into the current directory.</td>
  +    <td colspan="1" rowspan="1">java.io.File</td>
  +  
   </tr>
  -</table>
  -<!-- End Attributes -->
  -<!-- Start Elements -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">outputimpl</td>
  +    <td colspan="1" rowspan="1">Use this option to indicate the name of the output implementation WSDL file. If specified, Java2WSDL will produce separate interface and implementation WSDL files. If not, a single WSDL file is generated</td>
  +    <td colspan="1" rowspan="1">java.io.File</td>
  +  
  +</tr>
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">porttypename</td>
  +    <td colspan="1" rowspan="1">Indicates the name to use use for the portType element. If not specified, the class-of-portType name is used.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="elements"></a><strong>Parameters as nested elements</strong></td>
  +    
  +<td colspan="1" rowspan="1">serviceelementname</td>
  +    <td colspan="1" rowspan="1">the name of the service element. If not specified, the service element is the <span class="codefrag">portTypeName</span>Service.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="b">
  -<td>
  -<pre class="code">&nbsp;mapping (org.apache.axis.tools.ant.wsdl.NamespaceMapping)add a mapping of namespaces to packages&nbsp;mappingset (org.apache.axis.tools.ant.wsdl.MappingSet)add a mapping of namespaces to packages</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">serviceportname</td>
  +    <td colspan="1" rowspan="1">service port name (obtained from location if not specified)</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -</table>
  -<!-- End Elements -->
  -</td>
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">stopclasses</td>
  +    <td colspan="1" rowspan="1">Comma separated list of classes which stop the Java2WSDL inheritance search.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
  +</tr>
  +  
  +<tr class="b">
  +    
  +<td colspan="1" rowspan="1">style</td>
  +    <td colspan="1" rowspan="1">The style of the WSDL document: RPC, DOCUMENT or WRAPPED. If RPC, a rpc/encoded wsdl is generated. If DOCUMENT, a document/literal wsdl is generated. If WRAPPED, a document/literal wsdl is generated using the wrapped approach.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
  +</tr>
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">typemappingversion</td>
  +    <td colspan="1" rowspan="1">the default type mapping registry to use. Either 1.1 or 1.2. Default is 1.1</td>
  +    <td colspan="1" rowspan="1">org.apache.axis.tools.ant.wsdl.TypeMappingVersionEnum</td>
  +  
   </tr>
  -<!-- END RIGHT SIDE MAIN BODY -->
  -<!-- FOOTER SEPARATOR -->
  +  
   <tr class="b">
  -<td>
  -<hr noshade="noshade" size="1">
  -</td>
  +    
  +<td colspan="1" rowspan="1">use</td>
  +    <td colspan="1" rowspan="1">Set the use option</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -<!-- PAGE FOOTER -->
  +  
   <tr class="a">
  -<td><em>Copyright &copy; 2000-2003, Apache Software Foundation</em></td>
  +    
  +<td colspan="1" rowspan="1">useinheritedmethods</td>
  +    <td colspan="1" rowspan="1">should inherited methods be exported too? Default=false</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +
   </table>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters as nested elements</h4>
  +</div>
  +
  +
  +
  +<p>mapping (org.apache.axis.tools.ant.wsdl.NamespaceMapping)<br>add a mapping of namespaces to packages</p>
  +
  +<p>mappingset (org.apache.axis.tools.ant.wsdl.MappingSet)<br>add a mapping of namespaces to packages</p>
  +
  +
  +
  +
  +
  +  
  +
   <div id="pdf" align="right">
   <a href="axis-java2wsdl.pdf"><img alt="PDF" src="../../skin/images/pdfdoc.gif" class="skin"><br>
             PDF</a>
  @@ -379,7 +525,7 @@
   <td colspan="2">
   <div align="center">
   <div class="copyright">
  -              Copyright &copy; 2000-2004&nbsp;The Apache Software Foundation. All rights reserved.
  +              Copyright &copy; 2000-2005&nbsp;The Apache Software Foundation. All rights reserved.
               </div>
   </div>
   </td>
  
  
  
  1.9       +135 -101  ws-site/targets/axis/java/ant/axis-java2wsdl.pdf
  
  	<<Binary file>>
  
  
  1.17      +172 -61   ws-site/targets/axis/java/ant/axis-wsdl2java.html
  
  Index: axis-wsdl2java.html
  ===================================================================
  RCS file: /home/cvs/ws-site/targets/axis/java/ant/axis-wsdl2java.html,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- axis-wsdl2java.html	30 Dec 2004 03:04:37 -0000	1.16
  +++ axis-wsdl2java.html	27 Jan 2005 10:13:25 -0000	1.17
  @@ -7,7 +7,7 @@
   <link rel="stylesheet" href="../../skin/mysite.css" type="text/css">
   <link rel="stylesheet" href="../../skin/site.css" type="text/css">
   <link media="print" rel="stylesheet" href="../../skin/print.css" type="text/css">
  -<title>Axis-wsdl2java Task</title>
  +<title>WebServices - Axis</title>
   </head>
   <body bgcolor="white" class="composite">
   <!--================= start Banner ==================-->
  @@ -38,7 +38,7 @@
   <td colspan="3"><img height="8" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
   <tr>
  -<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="GO" type="submit">
  +<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="Go" type="submit">
   <br>
                             Search WS</td><td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
  @@ -172,15 +172,15 @@
   <span class="menuLabel">Axis (C++)</span>
     
   <div class="menuItem">
  -<a href="../../cpp/index.html">Latest Axis C++ Release!</a>
  +<a href="http://ws.apache.org/axis/cpp/index.html">Latest Axis C++ Release!</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/documentation.html">Documentation</a>
  +<a href="http://ws.apache.org/axis/cpp/documentation.html">Documentation</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/download.html">Download</a>
  +<a href="http://ws.apache.org/axis/cpp/download.html">Download</a>
   </div>
     
   <div class="menuItem">
  @@ -188,7 +188,7 @@
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/who.html">Who we are</a>
  +<a href="http://ws.apache.org/axis/cpp/who.html">Who we are</a>
   </div>
     
   </div>
  @@ -214,7 +214,7 @@
   <span class="menuLabel">Translation</span>
     
   <div class="menuItem">
  -<a href="http://ws.apache.org/axis/jp/">Japanese</a>
  +<a href="http://ws.apache.org/axis/ja/index.html">Japanese</a>
   </div>
   
   </div>
  @@ -244,10 +244,6 @@
   <span class="menuLabel">Misc</span>
     
   <div class="menuItem">
  -<a href="../../site.html">Whole Site</a>
  -</div>
  -  
  -<div class="menuItem">
   <a href="../../who.html">Who We Are</a>
   </div>
     
  @@ -275,88 +271,203 @@
   <div id="bodycol">
   <div class="app">
   <div align="center">
  -<h1>Axis-wsdl2java Task</h1>
  +<h1>WebServices - Axis</h1>
   </div>
   <div class="h3">
  +  
  +  
  +
  +
   <div class="h3">
   <h3>Axis-wsdl2java Task</h3>
   </div>
  +
  +
  +
  +<p>Create Java classes from local or remote WSDL.</p>
  +
  +
  +<div class="h4">
  +<h4>Description</h4>
  +</div>
  +
  +
  +
  +<p>Create Java classes from local or remote WSDL. Mappings from namespaces to packages can be provided as nested &lt;mapping&gt; elements.</p>
  +
  +
  +<p>Proxy settings are taken from the java runtime settings of http.ProxyHost, http.ProxyPort, etc. The Ant task &lt;setProxy&gt; can set these. As well as the nested mapping elements, this task uses the file <span class="codefrag">NStoPkg.properties</span> in the project base directory for namespace mapping</p>
  +
  +
  +<p>This task does no dependency checking; files are generated whether they need to be or not. The exception to this is the Impl class, which is not
  +overwritten if it exists. This is a safety measure. However, all other classes are generated overwriting anything that exists.</p>
  +
  +
  +<p>The safe way to use this task is to have it generate the java source in a build directory, then have a &lt;copy&gt; task selectively copy the files you need into a safe location. Again, copying into the source tree is dangerous, but a separate build/src tree is safe. Then include this separate tree in the &lt;javac&gt; task's src attribute to include it in the build. Implement your own implementation classes of the server stub and the test cases using the generated templates. If you want to add methods to autogenerated data types, consider subclassing them, or write helper classes.</p>
  +
  +
  +<p>Tip: if you &lt;get&gt; the wsdl, and use the &lt;filesmatch&gt; condition to compare the fetched wsdl with a catched copy, you can make the target that calls the axis-wsd2ljava task conditional on the WSDL having changed. This stops spurious code regeneration and follow-on rebuilds across the java source tree.</p>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters</h4>
  +</div>
  +
  +
  +
   <table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<!-- PAGE HEADER -->
  -<tr class="b">
  -<td>
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
   <tr class="b">
  -<td><strong>Axis-wsdl2java Task</strong>
  -<br> Create Java classes from local or remote WSDL.</td><td>
  -<!-- PROJECT LOGO --><a href="http://jakarta.apache.org/ant/"><img alt="Apache Ant" src="../images/ant_logo_large.gif"></a></td>
  -</tr>
  -</table>
  -</td>
  +    
  +<th colspan="1" rowspan="1">Attribute</th>
  +    <th colspan="1" rowspan="1">Description</th>
  +    <th colspan="1" rowspan="1">Type</th>
  +  
   </tr>
  -<!-- START RIGHT SIDE MAIN BODY -->
  +  
   <tr class="a">
  -<td>
  -<!-- Applying task/long-description -->
  -<!-- Start Description -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +    
  +<td colspan="1" rowspan="1">all</td>
  +    <td colspan="1" rowspan="1">flag to generate code for all elements, even unreferenced ones default=false;</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
  +</tr>
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">debug</td>
  +    <td colspan="1" rowspan="1">flag for debug output; default=false</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="description"></a><strong>Description</strong></td>
  +    
  +<td colspan="1" rowspan="1">deployscope</td>
  +    <td colspan="1" rowspan="1">add scope to deploy.xml: "Application", "Request", "Session" optional;</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="b">
  -<td>
  -<pre class="code">Create Java classes from local or remote WSDL. Mappings from namespaces to packages can be provided as nested &lt;mapping&gt; elements. Proxy settings are taken from the java runtime settings of http.ProxyHost, http.ProxyPort, etc. The Ant task &lt;setProxy&gt; can set these. As well as the nested mapping elements, this task uses the file NStoPkg.properties in the project base directory for namespace mappingThis task does no dependency checking; files are generated whether they need to be or not. The exception to this is the Impl class, which is not overwritten if it exists. This is a safety measure. However, all other classes are generated overwriting anything that exists.The safe way to use this task is to have it generate the java source in a build directory, then have a &lt;copy&gt; task selectively copy the files you need into a safe location. Again, copying into the source tree is dangerous, but a separate build/src tree is safe. Then include this separate tree in the &lt;javac&gt; task's src attribute to include it in the build. Implement your own implementation classes of the server stub and the test cases using the generated templates. If you want to add methods to autogenerated data types, consider subclassing them, or write helper classes.Tip: if you &lt;get&gt; the wsdl, and use the &lt;filesmatch&gt; condition to compare the fetched wsdl with a catched copy, you can make the target that calls the axis-wsd2ljava task conditional on the WSDL having changed. This stops spurious code regeneration and follow-on rebuilds across the java source tree.</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">factory</td>
  +    <td colspan="1" rowspan="1">name of the Java2WSDLFactory class for extending WSDL generation functions</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -</table>
  -<!-- End Description -->
  -<!-- Start Attributes -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">helpergen</td>
  +    <td colspan="1" rowspan="1">Turn on/off Helper class generation; default is false</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
  +</tr>
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">namespacemappingfile</td>
  +    <td colspan="1" rowspan="1">set the mapping file. This is a properties file of package=namespace order. Optional, default is to look for a file called NStoPkg.properties in the project directory.</td>
  +    <td colspan="1" rowspan="1">java.io.File</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="attributes"></a><strong>Parameters</strong></td>
  +    
  +<td colspan="1" rowspan="1">noimports</td>
  +    <td colspan="1" rowspan="1">only generate code for the immediate WSDL document, and not imports; default=false;</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +  
   <tr class="b">
  -<td>
  -<pre class="code">AttributeDescriptionTypeallflag to generate code for all elements, even unreferenced ones default=false;booleandebugflag for debug output; default=falsebooleandeployscopeadd scope to deploy.xml: "Application", "Request", "Session" optional;java.lang.Stringfactoryname of the Java2WSDLFactory class for extending WSDL generation functionsjava.lang.StringhelpergenTurn on/off Helper class generation; default is falsebooleannamespacemappingfileset the mapping file. This is a properties file of package=namespace order. Optional, default is to look for a file called NStoPkg.properties in the project directory.java.io.Filenoimportsonly generate code for the immediate WSDL document, and not imports; default=false;booleanoutputoutput directory for emitted filesjava.io.Fileserversideemit server-side bindings for web service; default=falsebooleanskeletondeploydeploy skeleton (true) or implementation (false) in deploy.wsdd. Default is false. Assumes server-side="true".booleantestcaseflag for automatic Junit testcase generation default is falsebooleantimeouttimeout in milliseconds for URL retrieval; default is 45 seconds. Set this to -1 to disable timeouts altogether: other negative values are not allowed)longtypemappingversionthe default type mapping registry to use. Either 1.1 or 1.2. Default is 1.1org.apache.axis.tools.ant.wsdl.TypeMappingVersionEnumurlURL to fetch and generate WSDL for. Can be remote or a local file.java.lang.Stringverboseflag for verbose output; default=falseboolean</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">output</td>
  +    <td colspan="1" rowspan="1">output directory for emitted files</td>
  +    <td colspan="1" rowspan="1">java.io.File</td>
  +  
   </tr>
  -</table>
  -<!-- End Attributes -->
  -<!-- Start Elements -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">serverside</td>
  +    <td colspan="1" rowspan="1">emit server-side bindings for web service; default=false</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
  +</tr>
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">skeletondeploy</td>
  +    <td colspan="1" rowspan="1">deploy skeleton (true) or implementation (false) in deploy.wsdd. Default is false. Assumes server-side="true".</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="elements"></a><strong>Parameters as nested elements</strong></td>
  +    
  +<td colspan="1" rowspan="1">testcase</td>
  +    <td colspan="1" rowspan="1">flag for automatic Junit testcase generation default is false</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +  
   <tr class="b">
  -<td>
  -<pre class="code">&nbsp;mapping (org.apache.axis.tools.ant.wsdl.NamespaceMapping)add a mapping of namespaces to packages&nbsp;mappingset (org.apache.axis.tools.ant.wsdl.MappingSet)add a mapping of namespaces to packages</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">timeout</td>
  +    <td colspan="1" rowspan="1">timeout in milliseconds for URL retrieval; default is 45 seconds. Set this to -1 to disable timeouts altogether: other negative values are not allowed)</td>
  +    <td colspan="1" rowspan="1">long</td>
  +  
   </tr>
  -</table>
  -<!-- End Elements -->
  -</td>
  +  
  +<tr class="a">
  +    
  +<td colspan="1" rowspan="1">typemappingversion</td>
  +    <td colspan="1" rowspan="1">the default type mapping registry to use. Either 1.1 or 1.2. Default is 1.1</td>
  +    <td colspan="1" rowspan="1">org.apache.axis.tools.ant.wsdl.TypeMappingVersionEnum</td>
  +  
   </tr>
  -<!-- END RIGHT SIDE MAIN BODY -->
  -<!-- FOOTER SEPARATOR -->
  +  
   <tr class="b">
  -<td>
  -<hr noshade="noshade" size="1">
  -</td>
  +    
  +<td colspan="1" rowspan="1">url</td>
  +    <td colspan="1" rowspan="1">URL to fetch and generate WSDL for. Can be remote or a local file.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -<!-- PAGE FOOTER -->
  +  
   <tr class="a">
  -<td><em>Copyright &copy; 2000-2003, Apache Software Foundation</em></td>
  +    
  +<td colspan="1" rowspan="1">verbose</td>
  +    <td colspan="1" rowspan="1">flag for verbose output; default=false</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +
   </table>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters as nested elements</h4>
  +</div>
  +
  +
  +
  +<p>mapping (org.apache.axis.tools.ant.wsdl.NamespaceMapping)<br>add a mapping of namespaces to packages</p>
  +
  +<p>mappingset (org.apache.axis.tools.ant.wsdl.MappingSet)<br>add a mapping of namespaces to packages</p>
  +
  +
  +
  +
  +
  +  
  +
   <div id="pdf" align="right">
   <a href="axis-wsdl2java.pdf"><img alt="PDF" src="../../skin/images/pdfdoc.gif" class="skin"><br>
             PDF</a>
  @@ -379,7 +490,7 @@
   <td colspan="2">
   <div align="center">
   <div class="copyright">
  -              Copyright &copy; 2000-2004&nbsp;The Apache Software Foundation. All rights reserved.
  +              Copyright &copy; 2000-2005&nbsp;The Apache Software Foundation. All rights reserved.
               </div>
   </div>
   </td>
  
  
  
  1.9       +119 -102  ws-site/targets/axis/java/ant/axis-wsdl2java.pdf
  
  	<<Binary file>>
  
  
  1.15      +106 -78   ws-site/targets/axis/java/ant/foreach.html
  
  Index: foreach.html
  ===================================================================
  RCS file: /home/cvs/ws-site/targets/axis/java/ant/foreach.html,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- foreach.html	30 Dec 2004 03:04:37 -0000	1.14
  +++ foreach.html	27 Jan 2005 10:13:25 -0000	1.15
  @@ -7,7 +7,7 @@
   <link rel="stylesheet" href="../../skin/mysite.css" type="text/css">
   <link rel="stylesheet" href="../../skin/site.css" type="text/css">
   <link media="print" rel="stylesheet" href="../../skin/print.css" type="text/css">
  -<title>Foreach Task</title>
  +<title>WebServices - Axis</title>
   </head>
   <body bgcolor="white" class="composite">
   <!--================= start Banner ==================-->
  @@ -38,7 +38,7 @@
   <td colspan="3"><img height="8" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
   <tr>
  -<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="GO" type="submit">
  +<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="Go" type="submit">
   <br>
                             Search WS</td><td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
  @@ -172,15 +172,15 @@
   <span class="menuLabel">Axis (C++)</span>
     
   <div class="menuItem">
  -<a href="../../cpp/index.html">Latest Axis C++ Release!</a>
  +<a href="http://ws.apache.org/axis/cpp/index.html">Latest Axis C++ Release!</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/documentation.html">Documentation</a>
  +<a href="http://ws.apache.org/axis/cpp/documentation.html">Documentation</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/download.html">Download</a>
  +<a href="http://ws.apache.org/axis/cpp/download.html">Download</a>
   </div>
     
   <div class="menuItem">
  @@ -188,7 +188,7 @@
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/who.html">Who we are</a>
  +<a href="http://ws.apache.org/axis/cpp/who.html">Who we are</a>
   </div>
     
   </div>
  @@ -214,7 +214,7 @@
   <span class="menuLabel">Translation</span>
     
   <div class="menuItem">
  -<a href="http://ws.apache.org/axis/jp/">Japanese</a>
  +<a href="http://ws.apache.org/axis/ja/index.html">Japanese</a>
   </div>
   
   </div>
  @@ -244,10 +244,6 @@
   <span class="menuLabel">Misc</span>
     
   <div class="menuItem">
  -<a href="../../site.html">Whole Site</a>
  -</div>
  -  
  -<div class="menuItem">
   <a href="../../who.html">Who We Are</a>
   </div>
     
  @@ -275,40 +271,35 @@
   <div id="bodycol">
   <div class="app">
   <div align="center">
  -<h1>Foreach Task</h1>
  +<h1>WebServices - Axis</h1>
   </div>
   <div class="h3">
  +  
  +  
  +
  +
   <div class="h3">
   <h3>Foreach Task</h3>
   </div>
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<!-- PAGE HEADER -->
  -<tr class="b">
  -<td>
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<tr class="b">
  -<td><strong>Foreach Task</strong>
  -<br> Call a target foreach entry in a set of parameters based on a fileset.</td><td>
  -<!-- PROJECT LOGO --><a href="http://jakarta.apache.org/ant/"><img alt="Apache Ant" src="../../images/ant_logo_large.gif"></a></td>
  -</tr>
  -</table>
  -</td>
  -</tr>
  -<!-- START RIGHT SIDE MAIN BODY -->
  -<tr class="a">
  -<td>
  -<!-- Applying task/long-description -->
  -<!-- Start Description -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<tr class="b">
  -<td>&nbsp;</td>
  -</tr>
  -<tr class="a">
  -<td bgcolor="#525D76"><a name="description"></a><strong>Description</strong></td>
  -</tr>
  -<tr class="b">
  -<td>
  -<pre class="code">Call a target foreach entry in a set of parameters based on a fileset. For Axis development; there is no support or stability associated with this task    &lt;target name="target1"&gt;
  +
  +
  +
  +<p>Call a target foreach entry in a set of parameters based on a fileset.</p>
  +
  +
  +<div class="h4">
  +<h4>Description</h4>
  +</div>
  +
  +
  +
  +<p>Call a target foreach entry in a set of parameters based on a fileset.</p>
  +
  +<p>
  +<i>For Axis development; there is no support or stability associated with this task</i>
  +</p>
  +
  +<pre class="code">&lt;target name="target1"&gt;
         &lt;foreach target="target2"&gt;
           &lt;param name="param1"&gt;
               &lt;fileset refid="fset1"/&gt;
  @@ -322,57 +313,94 @@
   
       &lt;target name="target2"&gt;
         &lt;echo message="prop is ${param1}.${param2}" /&gt;
  -    &lt;/target&gt;  
  - 
  - Really this just a wrapper around "AntCall" Added a "type" attribute that works precisely like its equivalent in ExecuteOn. It allows the user to specify whether directories, files, or both directories and files from the filesets are included as entries in the parameter set.</pre>
  -</td>
  -</tr>
  -</table>
  -<!-- End Description -->
  -<!-- Start Attributes -->
  +    &lt;/target&gt;</pre>
  +
  +<p>Really this just a wrapper around "AntCall"<br>
  +                Added a "type" attribute that works precisely like
  +                its equivalent in <CODE>ExecuteOn</CODE>. It allows
  +                the user to specify whether directories, files, or
  +                both directories and files from the filesets are
  +                included as entries in the parameter set.</p>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters</h4>
  +</div>
  +
  +
  +
   <table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<th colspan="1" rowspan="1">Attribute</th>
  +    <th colspan="1" rowspan="1">Description</th>
  +    <th colspan="1" rowspan="1">Type</th>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="attributes"></a><strong>Parameters</strong></td>
  -</tr>
  -<tr class="b">
  -<td>
  -<pre class="code">AttributeDescriptionTypeforkIf true, forks the ant invocation.booleaninheritallIf true, pass all properties to the new Ant project. Defaults to true.booleaninheritrefsIf true, pass all references to the new Ant project. Defaults to falsebooleantargetTarget to execute, required.java.lang.StringverboseEnable verbose output when signing ; optional: default falseboolean</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">fork</td>
  +    <td colspan="1" rowspan="1">If true, forks the ant invocation.</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  -</table>
  -<!-- End Attributes -->
  -<!-- Start Elements -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">inheritall</td>
  +    <td colspan="1" rowspan="1">If true, pass all properties to the new Ant project. Defaults to true.</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="elements"></a><strong>Parameters as nested elements</strong></td>
  -</tr>
  -<tr class="b">
  -<td>
  -<pre class="code">&nbsp;param (org.apache.axis.tools.ant.foreach.ParamSet)</pre>
  -</td>
  -</tr>
  -</table>
  -<!-- End Elements -->
  -</td>
  +    
  +<td colspan="1" rowspan="1">inheritrefs</td>
  +    <td colspan="1" rowspan="1">If true, pass all references to the new Ant project. Defaults to false</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  -<!-- END RIGHT SIDE MAIN BODY -->
  -<!-- FOOTER SEPARATOR -->
  +  
   <tr class="b">
  -<td>
  -<hr noshade="noshade" size="1">
  -</td>
  +    
  +<td colspan="1" rowspan="1">target</td>
  +    <td colspan="1" rowspan="1">Target to execute, required.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -<!-- PAGE FOOTER -->
  +  
   <tr class="a">
  -<td><em>Copyright &copy; 2000-2003, Apache Software Foundation</em></td>
  +    
  +<td colspan="1" rowspan="1">verbose</td>
  +    <td colspan="1" rowspan="1">Enable verbose output when signing ; optional: default false</td>
  +    <td colspan="1" rowspan="1">boolean</td>
  +  
   </tr>
  +
   </table>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters as nested elements</h4>
  +</div>
  +
  +
  +
  +<p>param (org.apache.axis.tools.ant.foreach.ParamSet)<br>
  +</p>
  +
  +
  +
  +
  +
  +  
  +
   <div id="pdf" align="right">
   <a href="foreach.pdf"><img alt="PDF" src="../../skin/images/pdfdoc.gif" class="skin"><br>
             PDF</a>
  @@ -395,7 +423,7 @@
   <td colspan="2">
   <div align="center">
   <div class="copyright">
  -              Copyright &copy; 2000-2004&nbsp;The Apache Software Foundation. All rights reserved.
  +              Copyright &copy; 2000-2005&nbsp;The Apache Software Foundation. All rights reserved.
               </div>
   </div>
   </td>
  
  
  
  1.8       +101 -118  ws-site/targets/axis/java/ant/foreach.pdf
  
  	<<Binary file>>
  
  
  1.15      +92 -73    ws-site/targets/axis/java/ant/runaxisfunctionaltests.html
  
  Index: runaxisfunctionaltests.html
  ===================================================================
  RCS file: /home/cvs/ws-site/targets/axis/java/ant/runaxisfunctionaltests.html,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- runaxisfunctionaltests.html	30 Dec 2004 03:04:37 -0000	1.14
  +++ runaxisfunctionaltests.html	27 Jan 2005 10:13:25 -0000	1.15
  @@ -7,7 +7,7 @@
   <link rel="stylesheet" href="../../skin/mysite.css" type="text/css">
   <link rel="stylesheet" href="../../skin/site.css" type="text/css">
   <link media="print" rel="stylesheet" href="../../skin/print.css" type="text/css">
  -<title>Runaxisfunctionaltests Task</title>
  +<title>WebServices - Axis</title>
   </head>
   <body bgcolor="white" class="composite">
   <!--================= start Banner ==================-->
  @@ -38,7 +38,7 @@
   <td colspan="3"><img height="8" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
   <tr>
  -<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="GO" type="submit">
  +<td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"><input value="ws.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../../skin/images/spacer.gif" class="spacer"><input name="Search" value="Go" type="submit">
   <br>
                             Search WS</td><td><img height="1" width="1" alt="" src="../../skin/images/spacer.gif" class="spacer"></td>
   </tr>
  @@ -172,15 +172,15 @@
   <span class="menuLabel">Axis (C++)</span>
     
   <div class="menuItem">
  -<a href="../../cpp/index.html">Latest Axis C++ Release!</a>
  +<a href="http://ws.apache.org/axis/cpp/index.html">Latest Axis C++ Release!</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/documentation.html">Documentation</a>
  +<a href="http://ws.apache.org/axis/cpp/documentation.html">Documentation</a>
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/download.html">Download</a>
  +<a href="http://ws.apache.org/axis/cpp/download.html">Download</a>
   </div>
     
   <div class="menuItem">
  @@ -188,7 +188,7 @@
   </div>
     
   <div class="menuItem">
  -<a href="../../cpp/who.html">Who we are</a>
  +<a href="http://ws.apache.org/axis/cpp/who.html">Who we are</a>
   </div>
     
   </div>
  @@ -214,7 +214,7 @@
   <span class="menuLabel">Translation</span>
     
   <div class="menuItem">
  -<a href="http://ws.apache.org/axis/jp/">Japanese</a>
  +<a href="http://ws.apache.org/axis/ja/index.html">Japanese</a>
   </div>
   
   </div>
  @@ -244,10 +244,6 @@
   <span class="menuLabel">Misc</span>
     
   <div class="menuItem">
  -<a href="../../site.html">Whole Site</a>
  -</div>
  -  
  -<div class="menuItem">
   <a href="../../who.html">Who We Are</a>
   </div>
     
  @@ -275,86 +271,109 @@
   <div id="bodycol">
   <div class="app">
   <div align="center">
  -<h1>Runaxisfunctionaltests Task</h1>
  +<h1>WebServices - Axis</h1>
   </div>
   <div class="h3">
  +  
  +  
  +
  +
   <div class="h3">
   <h3>Runaxisfunctionaltests Task</h3>
   </div>
  +
  +
  +
  +<p>Ant task for starting / stopping servers and running junit in the middle.</p>
  +
  +
  +<div class="h4">
  +<h4>Description</h4>
  +</div>
  +
  +
  +
  +<p>Ant task for starting / stopping servers and running junit in the middle. Based on the Cactus org.apache.commons.cactus.ant package, heavily munged and cruftily dumped into one file.</p>
  +
  +<p>
  +<i>For Axis development; there is no support or stability associated with this task</i>
  +</p>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters</h4>
  +</div>
  +
  +
  +
   <table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<!-- PAGE HEADER -->
  -<tr class="b">
  -<td>
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<tr class="b">
  -<td><strong>Runaxisfunctionaltests Task</strong>
  -<br> Ant task for starting / stopping servers and running junit in the middle.</td><td>
  -<!-- PROJECT LOGO --><a href="http://jakarta.apache.org/ant/"><img alt="Apache Ant" src="../../images/ant_logo_large.gif"></a></td>
  -</tr>
  -</table>
  -</td>
  -</tr>
  -<!-- START RIGHT SIDE MAIN BODY -->
  -<tr class="a">
  -<td>
  -<!-- Applying task/long-description -->
  -<!-- Start Description -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  -<tr class="b">
  -<td>&nbsp;</td>
  -</tr>
  -<tr class="a">
  -<td bgcolor="#525D76"><a name="description"></a><strong>Description</strong></td>
  -</tr>
  -<tr class="b">
  -<td>
  -<pre class="code">Ant task for starting / stopping servers and running junit in the middle. Based on the Cactus org.apache.commons.cactus.ant package, heavily munged and cruftily dumped into one file. For Axis development; there is no support or stability associated with this task</pre>
  -</td>
  -</tr>
  -</table>
  -<!-- End Description -->
  -<!-- Start Attributes -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<th colspan="1" rowspan="1">Attribute</th>
  +    <th colspan="1" rowspan="1">Description</th>
  +    <th colspan="1" rowspan="1">Type</th>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="attributes"></a><strong>Parameters</strong></td>
  -</tr>
  -<tr class="b">
  -<td>
  -<pre class="code">AttributeDescriptionTypehttpservertargetSets the target to call to start server 2.java.lang.StringhttpstoptargetSets the stop target. This is the target which does a HTTP admin shutdown on the simple server.java.lang.StringtcpservertargetSets the target to call to start server 1.java.lang.StringtesttargetSets the target to call to run the tests.java.lang.StringurlSets the target URL (just http://host:port)java.lang.String</pre>
  -</td>
  +    
  +<td colspan="1" rowspan="1">httpservertarget</td>
  +    <td colspan="1" rowspan="1">Sets the target to call to start server 2.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -</table>
  -<!-- End Attributes -->
  -<!-- Start Elements -->
  -<table class="ForrestTable" cellspacing="1" cellpadding="4">
  +  
   <tr class="b">
  -<td>&nbsp;</td>
  +    
  +<td colspan="1" rowspan="1">httpstoptarget</td>
  +    <td colspan="1" rowspan="1">Sets the stop target. This is the target which does a HTTP admin shutdown on the simple server.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +  
   <tr class="a">
  -<td bgcolor="#525D76"><a name="elements"></a><strong>Parameters as nested elements</strong></td>
  -</tr>
  -<tr class="b">
  -<td></td>
  -</tr>
  -</table>
  -<!-- End Elements -->
  -</td>
  +    
  +<td colspan="1" rowspan="1">tcpservertarget</td>
  +    <td colspan="1" rowspan="1">Sets the target to call to start server 1.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -<!-- END RIGHT SIDE MAIN BODY -->
  -<!-- FOOTER SEPARATOR -->
  +  
   <tr class="b">
  -<td>
  -<hr noshade="noshade" size="1">
  -</td>
  +    
  +<td colspan="1" rowspan="1">testtarget</td>
  +    <td colspan="1" rowspan="1">Sets the target to call to run the tests.</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  -<!-- PAGE FOOTER -->
  +  
   <tr class="a">
  -<td><em>Copyright &copy; 2000-2003, Apache Software Foundation</em></td>
  +    
  +<td colspan="1" rowspan="1">url</td>
  +    <td colspan="1" rowspan="1">Sets the target URL (just http://host:port)</td>
  +    <td colspan="1" rowspan="1">java.lang.String</td>
  +  
   </tr>
  +
   </table>
  +
  +
  +
  +
  +<div class="h4">
  +<h4>Parameters as nested elements</h4>
  +</div>
  +
  +
  +
  +
  +
  +
  +  
  +
   <div id="pdf" align="right">
   <a href="runaxisfunctionaltests.pdf"><img alt="PDF" src="../../skin/images/pdfdoc.gif" class="skin"><br>
             PDF</a>
  @@ -377,7 +396,7 @@
   <td colspan="2">
   <div align="center">
   <div class="copyright">
  -              Copyright &copy; 2000-2004&nbsp;The Apache Software Foundation. All rights reserved.
  +              Copyright &copy; 2000-2005&nbsp;The Apache Software Foundation. All rights reserved.
               </div>
   </div>
   </td>
  
  
  
  1.8       +87 -112   ws-site/targets/axis/java/ant/runaxisfunctionaltests.pdf
  
  	<<Binary file>>