You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by st...@apache.org on 2004/03/26 18:56:55 UTC

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

stevel      2004/03/26 09:56:55

  Modified:    java/tools/org/apache/axis/tools/ant/wsdl
                        Java2WsdlAntTask.java
               java/tools build.xml
               java/docs/ant runaxisfunctionaltests.html foreach.html
                        axis-wsdl2java.html axis-java2wsdl.html
                        axis-admin.html
  Log:
  Autogenertion of docs is up again.
  I havent got velocity autogenerating the axis stuff in the axis build tree;
  I had to copy the XML Files to ant/proposal/ and then run DVSL there & drag back.
  The goal is fully automated manual creation, velocity config is the troublespot.
  
  Revision  Changes    Path
  1.20      +6 -3      ws-axis/java/tools/org/apache/axis/tools/ant/wsdl/Java2WsdlAntTask.java
  
  Index: Java2WsdlAntTask.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/tools/org/apache/axis/tools/ant/wsdl/Java2WsdlAntTask.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- Java2WsdlAntTask.java	25 Feb 2004 14:03:06 -0000	1.19
  +++ Java2WsdlAntTask.java	26 Mar 2004 17:56:54 -0000	1.20
  @@ -151,7 +151,6 @@
                       Project.MSG_VERBOSE);
               ClassUtils.setDefaultClassLoader(cl);
               //add extra classes to the classpath when the classpath attr is not null
  -            //??why do we do this? Why don't we do this when the classpath is unset?
               if(extraClasses!=null) {
                   StringTokenizer tokenizer = new StringTokenizer(extraClasses, " ,");
                   while (tokenizer.hasMoreTokens()) {
  @@ -257,9 +256,13 @@
           }
       }
   
  +    /**
  +     * add a classpath containing the java classes.
  +     * @return
  +     */
       public Path createClasspath() {
         if (classpath == null) {
  -        classpath = new Path(project);
  +        classpath = new Path(getProject());
         }
         return classpath.createPath();
       }
  @@ -478,7 +481,7 @@
       }
   
       /**
  -     * The setter for the "extraClasses" attribute
  +     * A comma separated list of classes to add to the classpath. 
        */
       public void setExtraClasses(String extraClasses) {
           this.extraClasses = extraClasses;
  
  
  
  1.17      +27 -3     ws-axis/java/tools/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/tools/build.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- build.xml	21 Feb 2004 19:21:58 -0000	1.16
  +++ build.xml	26 Mar 2004 17:56:54 -0000	1.17
  @@ -136,21 +136,45 @@
     <available property="xdocs.found" file="${xdocs.dir}/build.xml"/>
   </target>
   
  +<target name="want-xdocs" depends="probe-xdocs">
  +  <fail unless="xdocs.found">
  +    We need the proposal/xdocs source tree from Ant in ${env.ANT_HOME}/proposal/xdocs
  +   </fail>
  +</target>
   
  +  <property name="build.antdocs.dir" location="${build.dir}/xdocs"/>
  +  <property name="gen.dir" location="${build.antdocs.dir}/gen"/>
  +  <property name="gen.dir" location="${build.antdocs.dir}/gen"/>
  +  <property name="build.docs.dir" location="${build.antdocs.dir}/docs"/>
  +  <property name="build.xdocs.dir" location="${build.antdocs.dir}/xdocs"/>
   
  -<target name="xdocs" depends="probe-xdocs,compile"
  +<target name="xdocs" depends="want-xdocs,compile"
     description="Run xdoclet over the ant tasks to create doc pages"
     if="xdocs.found">
     <echo>
       running xdocs with classpath=${xdoclet.extra.classpath.asprop}
     </echo>  
  -  <ant inheritAll="${ant.inheritAll}" inheritRefs="${ant.inheritRefs}" dir="${xdocs.dir}">
  +
  +  <ant inheritAll="${ant.inheritAll}" inheritRefs="${ant.inheritRefs}" dir="${xdocs.dir}" 
  +      target="gen-and-prepare-for-docs">
       <property name="src.dir" location="org/apache/axis/tools/ant/"/>
       <property name="src.root" location="."/>
       <property name="xdoclet.extra.classpath" 
         value="${xdoclet.extra.classpath.asprop}"/>
  +    <property name="gen.dir" location="${gen.dir}"/>
  +    <property name="xdocs.dir" location="${build.xdocs.dir}"/>
  +    <property name="build.docs.dir" location="${build.docs.dir}"/>
     </ant>
   </target>
   
  -  
  +<target name="dvsl" depends="want-xdocs">
  +  <ant inheritAll="${ant.inheritAll}" inheritRefs="${ant.inheritRefs}" dir="${xdocs.dir}/dvsl">
  +    <property name="src.dir" location="org/apache/axis/tools/ant/"/>
  +    <property name="build.dir" location="${build.antdocs.dir}"/>
  +    <property name="taskdocs.src" location="${gen.dir}"/>
  +    <property name="xdocs.dir" location="${build.xdocs.dir}"/>
  +    <property name="docs.dest" location="${build.docs.dir}"/>
  +  </ant>  
  +</target>
  +
   </project>
  
  
  
  1.3       +27 -31    ws-axis/java/docs/ant/runaxisfunctionaltests.html
  
  Index: runaxisfunctionaltests.html
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/docs/ant/runaxisfunctionaltests.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- runaxisfunctionaltests.html	3 Mar 2003 15:50:40 -0000	1.2
  +++ runaxisfunctionaltests.html	26 Mar 2004 17:56:54 -0000	1.3
  @@ -22,7 +22,7 @@
             </td>
             <td>
               <!-- PROJECT LOGO -->
  -            <a href="http://jakarta.apache.org/ant/">
  +            <a href="http://ant.apache.org/">
                 <img src="../../images/ant_logo_large.gif" align="right" alt="Apache Ant" border="0"/>
               </a>
             </td>
  @@ -46,27 +46,24 @@
         </td></tr>
   
         <tr><td><blockquote>
  -        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>
  - <i>For Axis development; there is no support or stability associated 
  -  with this task</i>
  +        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> <i>For Axis development; there is no support or stability associated with this task</i>
         </blockquote></td></tr>
   
       </table>
       <!-- End Description -->
   
  + <!-- Ignore -->
  +
  +
  +
       <!-- Start Attributes -->
       <table border="0" cellspacing="0" cellpadding="2" width="100%">
         <tr><td>&nbsp;</td></tr>
  -
         <tr><td bgcolor="#525D76">
           <font color="#ffffff" face="arial,helvetica.sanserif">
             <a name="attributes">
             <strong>Parameters</strong></a></font>
         </td></tr>
  -
         <tr><td><blockquote>
           <table>
             <tr>
  @@ -79,19 +76,26 @@
           <td bgcolor="#cccccc" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Type</b></font>
           </td>
  +        <td bgcolor="#cccccc" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Requirement</b></font>
  +        </td>
             </tr>
  -    <!-- Attribute -->
  +    <!-- Attribute Group -->    
  +    
  +    <!-- Attribute Group -->    
  +        <!-- Attribute -->
       <tr>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">httpservertarget</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Sets the target to call to start server 2.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Sets the target to call to start server 2.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left" rowspan="5">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Optional</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -100,13 +104,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">httpstoptarget</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Sets the stop target.  This is the target which does
  - a HTTP admin shutdown on the simple server.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Sets the stop target.  This is the target which does a HTTP admin shutdown on the simple server.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -115,12 +116,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">tcpservertarget</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Sets the target to call to start server 1.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Sets the target to call to start server 1.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -129,12 +128,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">testtarget</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Sets the target to call to run the tests.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Sets the target to call to run the tests.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -143,14 +140,13 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">url</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Sets the target URL (just http://host:port)
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Sets the target URL (just http://host:port)</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
  +
   
           </table>
         </blockquote></td></tr>
  
  
  
  1.3       +25 -55    ws-axis/java/docs/ant/foreach.html
  
  Index: foreach.html
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/docs/ant/foreach.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- foreach.html	3 Mar 2003 15:50:40 -0000	1.2
  +++ foreach.html	26 Mar 2004 17:56:54 -0000	1.3
  @@ -22,7 +22,7 @@
             </td>
             <td>
               <!-- PROJECT LOGO -->
  -            <a href="http://jakarta.apache.org/ant/">
  +            <a href="http://ant.apache.org/">
                 <img src="../../images/ant_logo_large.gif" align="right" alt="Apache Ant" border="0"/>
               </a>
             </td>
  @@ -46,49 +46,24 @@
         </td></tr>
   
         <tr><td><blockquote>
  -        Call a target foreach entry in a set of parameters based on a fileset.
  - <p>
  - <i>For Axis development; there is no support or stability associated 
  -  with this task</i> 
  -  <pre>
  -    &lt;target name=&quot;target1&quot;&gt;
  -      &lt;foreach target=&quot;target2&quot;&gt;
  -        &lt;param name=&quot;param1&quot;&gt;
  -            &lt;fileset refid=&quot;fset1&quot;/&gt;
  -        &lt;/param&gt;
  -        &lt;param name=&quot;param2&quot;&gt;
  -          &lt;item value=&quot;jar&quot; /&gt;
  -          &lt;item value=&quot;zip&quot; /&gt;
  -        &lt;/param&gt;
  -       &lt;/foreach&gt;
  -    &lt;/target&gt;
  -
  -    &lt;target name=&quot;target2&quot;&gt;
  -      &lt;echo message=&quot;prop is ${param1}.${param2}&quot; /&gt;
  -    &lt;/target&gt;  
  - </pre>
  - <br>
  - 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.
  +        Call a target foreach entry in a set of parameters based on a fileset. <p> <i>For Axis development; there is no support or stability associated with this task</i> <pre> &lt;target name=&quot;target1&quot;&gt; &lt;foreach target=&quot;target2&quot;&gt; &lt;param name=&quot;param1&quot;&gt; &lt;fileset refid=&quot;fset1&quot;/&gt; &lt;/param&gt; &lt;param name=&quot;param2&quot;&gt; &lt;item value=&quot;jar&quot; /&gt; &lt;item value=&quot;zip&quot; /&gt; &lt;/param&gt; &lt;/foreach&gt; &lt;/target&gt; &lt;target name=&quot;target2&quot;&gt; &lt;echo message=&quot;prop is ${param1}.${param2}&quot; /&gt; &lt;/target&gt; </pre> <br> 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.
         </blockquote></td></tr>
   
       </table>
       <!-- End Description -->
   
  + <!-- Ignore -->
  +
  +
  +
       <!-- Start Attributes -->
       <table border="0" cellspacing="0" cellpadding="2" width="100%">
         <tr><td>&nbsp;</td></tr>
  -
         <tr><td bgcolor="#525D76">
           <font color="#ffffff" face="arial,helvetica.sanserif">
             <a name="attributes">
             <strong>Parameters</strong></a></font>
         </td></tr>
  -
         <tr><td><blockquote>
           <table>
             <tr>
  @@ -101,20 +76,27 @@
           <td bgcolor="#cccccc" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Type</b></font>
           </td>
  +        <td bgcolor="#cccccc" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Requirement</b></font>
  +        </td>
             </tr>
  -    <!-- Attribute -->
  +    <!-- Attribute Group -->    
  +    
  +    <!-- Attribute Group -->    
  +        <!-- Attribute -->
       <tr>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">fork</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          If true, forks the ant invocation.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, forks the ant invocation.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
           </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left" rowspan="5">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Optional</font>
  +        </td>
       </tr>
       <!-- Attribute -->
       <tr>
  @@ -122,10 +104,7 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">inheritall</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          If true, pass all properties to the new Ant project.
  - Defaults to true.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, pass all properties to the new Ant project. Defaults to true.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  @@ -137,10 +116,7 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">inheritrefs</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          If true, pass all references to the new Ant project.
  - Defaults to false
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, pass all references to the new Ant project. Defaults to false</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  @@ -152,12 +128,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">target</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Target to execute, required.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Target to execute, required.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -166,16 +140,14 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">verbose</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Enable verbose output when signing
  - ; optional: default false
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Enable verbose output when signing ; optional: default false</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
           </td>
       </tr>
   
  +
           </table>
         </blockquote></td></tr>
   
  @@ -202,10 +174,8 @@
         </td></tr>
         <tr><td><blockquote>
           
  -<short-description><![CDATA[No description.]]></short-description>
  -<description>
  -          
  -        </description>
  + <!-- Ignore -->
  + <!-- Ignore -->
   
         </blockquote></td></tr>
       </table>
  
  
  
  1.7       +469 -424  ws-axis/java/docs/ant/axis-wsdl2java.html
  
  Index: axis-wsdl2java.html
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/docs/ant/axis-wsdl2java.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- axis-wsdl2java.html	24 Feb 2004 23:22:07 -0000	1.6
  +++ axis-wsdl2java.html	26 Mar 2004 17:56:54 -0000	1.7
  @@ -1,435 +1,480 @@
  -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  +    
   <html>
   <head>
     <meta http-equiv="Content-Language" content="en-us">
  -  <title>Axis-wsdl2java Task</title>
  +  <title>Axis-wsdl2java
  + Task</title>
   </head>
  -<body style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0);"
  - link="#525d76" alink="#525d76" vlink="#525d76">
  +
  +<body bgcolor="#ffffff" text="#000000" link="#525D76"
  +      alink="#525D76" vlink="#525D76">
  +
   <table border="0" width="100%" cellspacing="4">
  -<!-- PAGE HEADER --> <tbody>
  -    <tr>
  -      <td>
  -      <table border="0" width="100%">
  -        <tbody>
  -          <tr>
  -            <td valign="bottom"> <font size="+3"
  - face="arial,helvetica,sanserif"><strong>Axis-wsdl2java Task</strong></font>
  -            <br>
  -            <font face="arial,helvetica,sanserif">Create Java classes
  -from local or remote WSDL.</font> </td>
  -            <td><!-- PROJECT LOGO --> <a
  - href="http://jakarta.apache.org/ant/"> <img
  - src="../images/ant_logo_large.gif" align="right" alt="Apache Ant"
  - border="0"> </a> </td>
  -          </tr>
  -        </tbody>
  -      </table>
  -      </td>
  -    </tr>
  -<!-- START RIGHT SIDE MAIN BODY --> <tr>
  -      <td valign="top" align="left"><!-- Applying task/long-description --><!-- Start Description -->
  -      <table border="0" cellspacing="0" cellpadding="2" width="100%">
  -        <tbody>
  -          <tr>
  -            <td>&nbsp;</td>
  -          </tr>
  -          <tr>
  -            <td bgcolor="#525d76"> <font color="#ffffff"
  - face="arial,helvetica.sanserif"> <a name="description"> <strong>Description</strong></a></font>
  -            </td>
  -          </tr>
  -          <tr>
  -            <td>
  -            <blockquote> Create Java classes from local or remote WSDL.
  -Mappings from namespaces to packages can be provided as nested
  -&lt;mapping&gt; elements.
  -              <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 <tt>NStoPkg.properties</tt> 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. The
  -nsinclude and nsexclude nested elements can provide you some extra
  -control over which Java classes get generated from the wsdl and can
  -help to cut down on the need for and/or intelligence required by the
  -copy command.<br>
  -              </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>
  -            </blockquote>
  -            </td>
  -          </tr>
  -        </tbody>
  -      </table>
  -<!-- End Description --><!-- Start Attributes -->
  -      <table border="0" cellspacing="0" cellpadding="2" width="100%">
  -        <tbody>
  -          <tr>
  -            <td>&nbsp;</td>
  -          </tr>
  -          <tr>
  -            <td bgcolor="#525d76"> <font color="#ffffff"
  - face="arial,helvetica.sanserif"> <a name="attributes"> <strong>Parameters</strong></a></font>
  -            </td>
  -          </tr>
  -          <tr>
  -            <td>
  -            <blockquote>
  -              <table>
  -                <tbody>
  -                  <tr>
  -                    <td bgcolor="#cccccc" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Attribute</b></font>
  -                    </td>
  -                    <td bgcolor="#cccccc" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Description</b></font>
  -                    </td>
  -                    <td bgcolor="#cccccc" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Type</b></font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">all</font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> flag to
  -generate code for all elements, even unreferenced ones default=false; </font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">debug</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> flag for
  -debug output; default=false </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">deployscope</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> add scope
  -to deploy.xml: "Application", "Request", "Session" optional; </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">factory</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> name of the
  -Java2WSDLFactory class for extending WSDL generation functions </font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">helpergen</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> Turn on/off
  -Helper class generation; default is false </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">namespacemappingfile</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> 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. </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">java.io.File</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">noimports</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> only
  -generate code for the immediate WSDL document, and not imports;
  -default=false; </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">output</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> output
  -directory for emitted files </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">java.io.File</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">serverside</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> emit
  -server-side bindings for web service; default=false </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">skeletondeploy</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> deploy
  -skeleton (true) or implementation (false) in deploy.wsdd. Default is
  -false. Assumes server-side="true". </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">testcase</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> flag for
  -automatic Junit testcase generation default is false </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">timeout</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> timeout in
  -milliseconds for URL retrieval; default is 45 seconds. Set this to -1
  -to disable timeouts altogether: other negative values are not allowed) </font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">long</font> </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">typemappingversion</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> the default
  -type mapping registry to use. Either 1.1 or 1.2. Default is 1.1 </font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">org.apache.axis.tools.ant.wsdl.TypeMappingVersionEnum</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">url</font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> URL to
  -fetch and generate WSDL for. Can be remote or a local file. </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  -                    </td>
  -                  </tr>
  -<!-- Attribute --> <tr>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">verbose</font>
  -                    </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif"> flag for
  -verbose output; default=false </font> </td>
  -                    <td bgcolor="#eeeeee" valign="top" align="left"> <font
  - color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  -                    </td>
  -                  </tr>
  -                </tbody>
  -              </table>
  -            </blockquote>
  -            </td>
  -          </tr>
  -        </tbody>
  -      </table>
  -<!-- End Attributes --><!-- Start Elements -->
  -      <table border="0" cellspacing="0" cellpadding="2" width="100%">
  -        <tbody>
  +
  +  <!-- PAGE HEADER -->
  +  <tr>
  +    <td>
  +      <table border="0" width="100%"><tr>
  +          <td valign="bottom">
  +            <font size="+3" face="arial,helvetica,sanserif"><strong>Axis-wsdl2java
  + Task</strong></font>
  +            <br><font face="arial,helvetica,sanserif">Create Java classes from local or remote WSDL.</font>
  +          </td>
  +          <td>
  +            <!-- PROJECT LOGO -->
  +            <a href="http://ant.apache.org/">
  +              <img src="../../images/ant_logo_large.gif" align="right" alt="Apache Ant" border="0"/>
  +            </a>
  +          </td>
  +      </tr></table>
  +    </td>
  +  </tr>
  +
  +  <!-- START RIGHT SIDE MAIN BODY -->
  +  <tr>
  +    <td  valign="top" align="left">
  +
  +          <!-- Applying task/long-description -->
  +    <!-- Start Description -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +
  +      <tr><td bgcolor="#525D76">
  +        <font color="#ffffff" face="arial,helvetica.sanserif">
  +          <a name="description">
  +          <strong>Description</strong></a></font>
  +      </td></tr>
  +
  +      <tr><td><blockquote>
  +        Create Java classes from local or remote WSDL. Mappings from namespaces to packages can be provided as nested &lt;mapping&gt; elements. <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 <tt>NStoPkg.properties</tt> in the project base directory for namespace mapping <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> 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> 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.
  +      </blockquote></td></tr>
  +
  +    </table>
  +    <!-- End Description -->
  +
  + <!-- Ignore -->
  +
  +
  +
  +    <!-- Start Attributes -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#525D76">
  +        <font color="#ffffff" face="arial,helvetica.sanserif">
  +          <a name="attributes">
  +          <strong>Parameters</strong></a></font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        <table>
             <tr>
  -            <td>&nbsp;</td>
  +        <td bgcolor="#cccccc" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Attribute</b></font>
  +        </td>
  +        <td bgcolor="#cccccc" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Description</b></font>
  +        </td>
  +        <td bgcolor="#cccccc" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Type</b></font>
  +        </td>
  +        <td bgcolor="#cccccc" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Requirement</b></font>
  +        </td>
             </tr>
  -          <tr>
  -            <td bgcolor="#525d76"> <font color="#ffffff"
  - face="arial,helvetica.sanserif"> <a name="elements"> <strong>Parameters
  -as nested elements</strong></a></font> </td>
  -          </tr>
  -          <tr>
  -            <td>
  -            <blockquote><!-- Start Element -->
  -              <table border="0" cellspacing="0" cellpadding="2"
  - width="100%">
  -                <tbody>
  -                  <tr>
  -                    <td>&nbsp;</td>
  -                  </tr>
  -                  <tr>
  -                    <td bgcolor="#828da6"> <font color="#ffffff"
  - face="arial,helvetica.sanserif" size="-1"> <strong>mapping</strong>
  -(org.apache.axis.tools.ant.wsdl.NamespaceMapping)</font> </td>
  -                  </tr>
  -                  <tr>
  -                    <td>
  -                    <blockquote> add a mapping of namespaces to
  -packages <short-description><!--[CDATA[Add a mapping of namespaces to packages.]]--></short-description><description>
  -<!--[CDATA[add a mapping of namespaces to packages]]--> </description>
  -                    </blockquote>
  -                    </td>
  -                  </tr>
  -                </tbody>
  -              </table>
  -<!-- End Element --><!-- Start Element -->
  -              <table border="0" cellspacing="0" cellpadding="2"
  - width="100%">
  -                <tbody>
  -                  <tr>
  -                    <td>&nbsp;</td>
  -                  </tr>
  -                  <tr>
  -                    <td bgcolor="#828da6"> <font color="#ffffff"
  - face="arial,helvetica.sanserif" size="-1"> <strong>mappingset</strong>
  -(org.apache.axis.tools.ant.wsdl.MappingSet)</font> </td>
  -                  </tr>
  -                  <tr>
  -                    <td>
  -                    <blockquote> add a mapping of namespaces to
  -packages <short-description><!--[CDATA[Add a mapping of namespaces to packages.]]--></short-description><description>
  -<!--[CDATA[add a mapping of namespaces to packages]]--> </description>
  -                    </blockquote>
  -                    </td>
  -                  </tr>
  -                </tbody>
  -              </table>
  -              <table border="0" cellspacing="0" cellpadding="2"
  - width="100%">
  -                <tbody>
  -                  <tr>
  -                    <td><br>
  -                    </td>
  -                  </tr>
  -                  <tr>
  -                    <td bgcolor="#828da6">&nbsp;<font color="#ffffff"
  - face="arial,helvetica.sanserif" size="-1"><strong>nsinclude </strong></font><font
  - color="#ffffff" face="arial,helvetica.sanserif" size="-1"><strong></strong>
  -(org.apache.axis.wsdl.toJava.NamespaceSelector)</font> </td>
  -                  </tr>
  -                  <tr>
  -                    <td>
  -                    <blockquote>define a namespace that should be
  -specifically added the the generated source code. This will default to
  -all namespaces until the first include has been defined <short-description><!--[CDATA[Add a mapping of namespaces to packages.]]--></short-description><description>
  -<!--[CDATA[add a mapping of namespaces to packages]]--> </description>
  -                    </blockquote>
  -                    </td>
  -                  </tr>
  -                </tbody>
  -              </table>
  -              <table border="0" cellspacing="0" cellpadding="2"
  - width="100%">
  -                <tbody>
  -                  <tr>
  -                    <td>&nbsp;</td>
  -                  </tr>
  -                  <tr>
  -                    <td bgcolor="#828da6"> <font color="#ffffff"
  - face="arial,helvetica.sanserif" size="-1"> <strong>nsexclude </strong></font><font
  - color="#ffffff" face="arial,helvetica.sanserif" size="-1">(org.apache.axis.wsdl.toJava.NamespaceSelector)</font>
  -                    </td>
  -                  </tr>
  -                  <tr>
  -                    <td>
  -                    <blockquote>define a namespace that should be
  -specifically excluded from the generated should code. This is helpful
  -when you wish to map a namespace to a set of externally
  -generated/custom beans and then prevent the code generation from
  -generating classes for those custom types. <short-description><!--[CDATA[Add a mapping of namespaces to packages.]]--></short-description><description>
  -<!--[CDATA[add a mapping of namespaces to packages]]--> </description>
  -                    </blockquote>
  -                    </td>
  -                  </tr>
  -                </tbody>
  -              </table>
  -              <table border="0" cellspacing="0" cellpadding="2"
  - width="100%">
  -                <tbody>
  -                  <tr>
  -                    <td>&nbsp;</td>
  -                  </tr>
  -                  <tr>
  -                    <td bgcolor="#828da6"> <font color="#ffffff"
  - face="arial,helvetica.sanserif" size="-1"> <strong>property </strong></font><font
  - color="#ffffff" face="arial,helvetica.sanserif" size="-1">(org.apache.axis.wsdl.toJava.FactoryProperty)</font></td>
  -                  </tr>
  -                  <tr>
  -                    <td>
  -                    <blockquote>defines the name and value of a
  -property that can ve used by a Java2WSDLFactory extension class
  -instance.<short-description><!--[CDATA[Add a mapping of namespaces to packages.]]--></short-description><description>
  -<!--[CDATA[add a mapping of namespaces to packages]]--> </description>
  -                    </blockquote>
  -                    </td>
  -                  </tr>
  -                </tbody>
  -              </table>
  -              <br>
  -<!-- End Element --> </blockquote>
  -            </td>
  -          </tr>
  -        </tbody>
  -      </table>
  -<!-- End Elements --> </td>
  -    </tr>
  -<!-- END RIGHT SIDE MAIN BODY --><!-- FOOTER SEPARATOR --> <tr>
  -      <td>
  -      <hr noshade="noshade" size="1"> </td>
  -    </tr>
  -<!-- PAGE FOOTER --> <tr>
  -      <td>
  -      <div align="center"><font color="#525d76" size="-1"><em>Copyright
  -&copy; 2000-2003, Apache Software Foundation </em></font></div>
  -      </td>
  +    <!-- Attribute Group -->    
  +    
  +    <!-- Attribute Group -->    
  +        <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">all</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">flag to generate code for all elements, even unreferenced ones default=false;</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left" rowspan="21">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Optional</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">debug</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">flag for debug output; default=false</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">deployscope</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">add scope to deploy.xml: "Application", "Request", "Session" optional;</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">factory</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">name of the Java2WSDLFactory class for extending WSDL generation functions</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">failonnetworkerrors</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">should the task fail the build if there is a network error? optional: defaults to false</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">helpergen</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Turn on/off Helper class generation; default is false</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">namespacemappingfile</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">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.</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">noimports</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">only generate code for the immediate WSDL document, and not imports; default=false;</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">nowrapped</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Set the noWrapped flag.</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">output</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">output directory for emitted files</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">password</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">set any password required for BASIC authenticated access to the WSDL; optional; only used if username is set</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">printstacktraceonfailure</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">should we print a stack trace on failure? Optional, default=true.</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">protocolhandlerpkgs</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">append any protocol handler pkgs specified with the task</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">serverside</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">emit server-side bindings for web service; default=false</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">skeletondeploy</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">deploy skeleton (true) or implementation (false) in deploy.wsdd. Default is false.  Assumes server-side="true".</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">testcase</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">flag for automatic Junit testcase generation default is false</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">timeout</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">timeout in milliseconds for URL retrieval; default is 45 seconds. Set this to -1 to disable timeouts altogether: other negative values are not allowed)</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">long</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">typemappingversion</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the default type mapping registry to use. Either 1.1 or 1.2. Default is 1.1</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">"1.1", "1.2"</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">url</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">URL to fetch and generate WSDL for. Can be remote or a local file.</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">username</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">set any username required for BASIC authenticated access to the WSDL; optional.</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">verbose</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">flag for verbose output; default=false</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  +        </td>
       </tr>
  -  </tbody>
  +
  +
  +        </table>
  +      </blockquote></td></tr>
  +
  +    </table>
  +    <!-- End Attributes -->
  +
  +    <!-- Start Elements -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +
  +      <tr><td bgcolor="#525D76">
  +        <font color="#ffffff" face="arial,helvetica.sanserif">
  +          <a name="elements">
  +          <strong>Parameters as nested elements</strong></a></font>
  +      </td></tr>
  +
  +      <tr><td><blockquote>
  +    <!-- Start Element -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#828DA6">
  +        <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
  +          <strong>mapping</strong> (org.apache.axis.tools.ant.wsdl.NamespaceMapping)</font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        add a mapping of namespaces to packages
  + <!-- Ignore -->
  + <!-- Ignore -->
  +
  +      </blockquote></td></tr>
  +    </table>
  +    <!-- End Element -->
  +    <!-- Start Element -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#828DA6">
  +        <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
  +          <strong>mappingset</strong> (org.apache.axis.tools.ant.wsdl.MappingSet)</font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        add a mapping of namespaces to packages
  + <!-- Ignore -->
  + <!-- Ignore -->
  +
  +      </blockquote></td></tr>
  +    </table>
  +    <!-- End Element -->
  +    <!-- Start Element -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#828DA6">
  +        <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
  +          <strong>classpath</strong> (org.apache.tools.ant.types.Path)</font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        set the classpath
  + <!-- Ignore -->
  + <!-- Ignore -->
  +
  +      </blockquote></td></tr>
  +    </table>
  +    <!-- End Element -->
  +    <!-- Start Element -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#828DA6">
  +        <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
  +          <strong>nsexclude</strong> (org.apache.axis.wsdl.toJava.NamespaceSelector)</font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        Adds an additional namespace to the list to be excluded from source code generation.
  + <!-- Ignore -->
  + <!-- Ignore -->
  +
  +      </blockquote></td></tr>
  +    </table>
  +    <!-- End Element -->
  +    <!-- Start Element -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#828DA6">
  +        <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
  +          <strong>nsinclude</strong> (org.apache.axis.wsdl.toJava.NamespaceSelector)</font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        Adds an additional namespace to the list to be included in source code generation.
  + <!-- Ignore -->
  + <!-- Ignore -->
  +
  +      </blockquote></td></tr>
  +    </table>
  +    <!-- End Element -->
  +    <!-- Start Element -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#828DA6">
  +        <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
  +          <strong>property</strong> (org.apache.axis.wsdl.toJava.FactoryProperty)</font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        Adds a property name/value pair for specialized JavaGeneratorFactories.
  + <!-- Ignore -->
  + <!-- Ignore -->
  +
  +      </blockquote></td></tr>
  +    </table>
  +    <!-- End Element -->
  +
  +      </blockquote></td></tr>
  +
  +    </table>
  +    <!-- End Elements -->
  +
  +
  +    </td>
  +  </tr>
  +  <!-- END RIGHT SIDE MAIN BODY -->
  +
  +  <!-- FOOTER SEPARATOR -->
  +  <tr>
  +    <td>
  +      <hr noshade="" size="1"/>
  +    </td>
  +  </tr>
  +
  +  <!-- PAGE FOOTER -->
  +  <tr>
  +    <td>
  +      <div align="center"><font color="#525D76" size="-1"><em>
  +        Copyright &#169; 2000-2003, Apache Software Foundation
  +      </em></font></div>
  +    </td>
  +  </tr>
  +
   </table>
  +
   </body>
   </html>
  
  
  
  1.7       +116 -122  ws-axis/java/docs/ant/axis-java2wsdl.html
  
  Index: axis-java2wsdl.html
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/docs/ant/axis-java2wsdl.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- axis-java2wsdl.html	11 Mar 2003 03:19:37 -0000	1.6
  +++ axis-java2wsdl.html	26 Mar 2004 17:56:55 -0000	1.7
  @@ -22,8 +22,8 @@
             </td>
             <td>
               <!-- PROJECT LOGO -->
  -            <a href="http://jakarta.apache.org/ant/">
  -              <img src="../images/ant_logo_large.gif" align="right" alt="Apache Ant" border="0"/>
  +            <a href="http://ant.apache.org/">
  +              <img src="../../images/ant_logo_large.gif" align="right" alt="Apache Ant" border="0"/>
               </a>
             </td>
         </tr></table>
  @@ -52,16 +52,18 @@
       </table>
       <!-- End Description -->
   
  + <!-- Ignore -->
  +
  +
  +
       <!-- Start Attributes -->
       <table border="0" cellspacing="0" cellpadding="2" width="100%">
         <tr><td>&nbsp;</td></tr>
  -
         <tr><td bgcolor="#525D76">
           <font color="#ffffff" face="arial,helvetica.sanserif">
             <a name="attributes">
             <strong>Parameters</strong></a></font>
         </td></tr>
  -
         <tr><td><blockquote>
           <table>
             <tr>
  @@ -74,21 +76,26 @@
           <td bgcolor="#cccccc" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Type</b></font>
           </td>
  +        <td bgcolor="#cccccc" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Requirement</b></font>
  +        </td>
             </tr>
  -    <!-- Attribute -->
  +    <!-- Attribute Group -->    
  +    
  +    <!-- Attribute Group -->    
  +        <!-- Attribute -->
       <tr>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">bindingname</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          The name to use use for the binding element.
  - If not specified, the value of the
  - <tt>servicePortName</tt> + "SoapBinding" is used.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">The name to use use for the binding element. If not specified, the value of the <tt>servicePortName</tt> + "SoapBinding" is used.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left" rowspan="23">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Optional</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -97,13 +104,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">classname</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the class name to import, eg. org.example.Foo. Required.
  - The class must be on the classpath.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the class name to import, eg. org.example.Foo. Required. The class must be on the classpath.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -112,12 +116,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">exclude</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Comma separated list of methods to exclude from the wsdl file.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Comma separated list of methods to exclude from the wsdl file.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -126,12 +128,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">extraclasses</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          The setter for the "extraClasses" attribute
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">A comma separated list of classes to add to the classpath.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -140,13 +140,22 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">implclass</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Sometimes extra information is available in the implementation class
  - file. Use this option to specify the implementation class.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Sometimes extra information is available in the implementation class file. Use this option to specify the implementation class.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">importschema</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Option attribute that indicates the name of an XML Schema file that should be physically imported into the generated WSDL.</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -155,16 +164,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">input</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          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.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">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.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.io.File</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -173,15 +176,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">location</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          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.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">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.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -190,13 +188,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">locationimport</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the location of the interface WSDL when generating an implementation WSDL
  - Required when <tt>outputImpl</tt> is set
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the location of the interface WSDL when generating an implementation WSDL Required when <tt>outputImpl</tt> is set</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -205,15 +200,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">methods</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          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
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">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</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -222,12 +212,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">namespace</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the target namespace. Required.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the target namespace. Required.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -236,12 +224,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">namespaceimpl</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Namespace of the implementation WSDL.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Namespace of the implementation WSDL.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -250,14 +236,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">output</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          The name of the output WSDL file.
  - If not specified, a suitable default WSDL file is written into
  - the current directory.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">The name of the output WSDL file. If not specified, a suitable default WSDL file is written into the current directory.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.io.File</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -266,14 +248,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">outputimpl</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          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
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">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</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.io.File</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -282,13 +260,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">porttypename</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Indicates the name to use use for the portType element.
  - If not specified, the class-of-portType name is used.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Indicates the name to use use for the portType element. If not specified, the class-of-portType name is used.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -297,13 +272,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">serviceelementname</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the name of the service element.
  - If not specified, the service element is the <tt>portTypeName</tt>Service.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the name of the service element. If not specified, the service element is the <tt>portTypeName</tt>Service.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -312,12 +284,22 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">serviceportname</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          service port name (obtained from location if not specified)
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">service port name (obtained from location if not specified)</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
  +        </td>
  +    </tr>
  +    <!-- Attribute -->
  +    <tr>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">soapaction</font>
  +        </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">The setter for the "soapAction" attribute</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -326,13 +308,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">stopclasses</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Comma separated list of classes which stop the Java2WSDL
  - inheritance search.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Comma separated list of classes which stop the Java2WSDL inheritance search.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -341,15 +320,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">style</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          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.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">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.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -358,13 +332,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">typemappingversion</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the default type mapping registry to use. Either 1.1 or 1.2.
  - Default is 1.1
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the default type mapping registry to use. Either 1.1 or 1.2. Default is 1.1</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">org.apache.axis.tools.ant.wsdl.TypeMappingVersionEnum</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">"1.1", "1.2"</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -373,12 +344,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">use</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Set the use option
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Set the use option</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -387,15 +356,14 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">useinheritedmethods</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          should inherited methods be exported too? Default=false
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">should inherited methods be exported too? Default=false</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
           </td>
       </tr>
   
  +
           </table>
         </blockquote></td></tr>
   
  @@ -418,14 +386,27 @@
         <tr><td>&nbsp;</td></tr>
         <tr><td bgcolor="#828DA6">
           <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
  +          <strong>complextype</strong> (org.apache.axis.tools.ant.wsdl.ComplexType)</font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        Nested element for Complex Types. Each Complex Type uses the following fields:
  + <!-- Ignore -->
  + <!-- Ignore -->
  +
  +      </blockquote></td></tr>
  +    </table>
  +    <!-- End Element -->
  +    <!-- Start Element -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#828DA6">
  +        <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
             <strong>mapping</strong> (org.apache.axis.tools.ant.wsdl.NamespaceMapping)</font>
         </td></tr>
         <tr><td><blockquote>
           add a mapping of namespaces to packages
  -<short-description><![CDATA[Add a mapping of namespaces to packages.]]></short-description>
  -<description>
  -          <![CDATA[add a mapping of namespaces to packages]]>
  -        </description>
  + <!-- Ignore -->
  + <!-- Ignore -->
   
         </blockquote></td></tr>
       </table>
  @@ -439,10 +420,23 @@
         </td></tr>
         <tr><td><blockquote>
           add a mapping of namespaces to packages
  -<short-description><![CDATA[Add a mapping of namespaces to packages.]]></short-description>
  -<description>
  -          <![CDATA[add a mapping of namespaces to packages]]>
  -        </description>
  + <!-- Ignore -->
  + <!-- Ignore -->
  +
  +      </blockquote></td></tr>
  +    </table>
  +    <!-- End Element -->
  +    <!-- Start Element -->
  +    <table border="0" cellspacing="0" cellpadding="2" width="100%">
  +      <tr><td>&nbsp;</td></tr>
  +      <tr><td bgcolor="#828DA6">
  +        <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
  +          <strong>classpath</strong> (org.apache.tools.ant.types.Path)</font>
  +      </td></tr>
  +      <tr><td><blockquote>
  +        add a classpath containing the java classes.
  + <!-- Ignore -->
  + <!-- Ignore -->
   
         </blockquote></td></tr>
       </table>
  
  
  
  1.5       +39 -53    ws-axis/java/docs/ant/axis-admin.html
  
  Index: axis-admin.html
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/docs/ant/axis-admin.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- axis-admin.html	11 Mar 2003 01:32:24 -0000	1.4
  +++ axis-admin.html	26 Mar 2004 17:56:55 -0000	1.5
  @@ -22,8 +22,8 @@
             </td>
             <td>
               <!-- PROJECT LOGO -->
  -            <a href="http://jakarta.apache.org/ant/">
  -              <img src="../images/ant_logo_large.gif" align="right" alt="Apache Ant" border="0"/>
  +            <a href="http://ant.apache.org/">
  +              <img src="../../images/ant_logo_large.gif" align="right" alt="Apache Ant" border="0"/>
               </a>
             </td>
         </tr></table>
  @@ -46,23 +46,24 @@
         </td></tr>
   
         <tr><td><blockquote>
  -        Task to administer a local or remote Axis server. Remember, for remote admin,
  - the server has to be accept remote management calls.
  +        Task to administer a local or remote Axis server. Remember, for remote admin, the server has to be accept remote management calls.
         </blockquote></td></tr>
   
       </table>
       <!-- End Description -->
   
  + <!-- Ignore -->
  +
  +
  +
       <!-- Start Attributes -->
       <table border="0" cellspacing="0" cellpadding="2" width="100%">
         <tr><td>&nbsp;</td></tr>
  -
         <tr><td bgcolor="#525D76">
           <font color="#ffffff" face="arial,helvetica.sanserif">
             <a name="attributes">
             <strong>Parameters</strong></a></font>
         </td></tr>
  -
         <tr><td><blockquote>
           <table>
             <tr>
  @@ -75,20 +76,27 @@
           <td bgcolor="#cccccc" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Type</b></font>
           </td>
  +        <td bgcolor="#cccccc" valign="top" align="left">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Requirement</b></font>
  +        </td>
             </tr>
  -    <!-- Attribute -->
  +    <!-- Attribute Group -->    
  +    
  +    <!-- Attribute Group -->    
  +        <!-- Attribute -->
       <tr>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">debug</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          set a debug flag
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">set a debug flag</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
           </td>
  +        <td bgcolor="#eeeeee" valign="top" align="left" rowspan="12">
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Optional</font>
  +        </td>
       </tr>
       <!-- Attribute -->
       <tr>
  @@ -96,10 +104,7 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">failonerror</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          Whether or not the build should halt if this task fails.
  - Defaults to <code>true</code>.
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">Whether or not the build should halt if this task fails. Defaults to <code>true</code>.</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
  @@ -111,12 +116,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">fileprotocol</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          specifies that a simple file protocol be used
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">specifies that a simple file protocol be used</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -125,12 +128,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">hostname</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          name the host to admin
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">name the host to admin</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -139,12 +140,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">newpassword</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          set a new password; only valid if action=passwd
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">set a new password; only valid if action=passwd</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -153,12 +152,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">password</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the admin password
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the admin password</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -167,9 +164,7 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">port</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the port to connect to
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the port to connect to</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">int</font>
  @@ -181,12 +176,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">servletpath</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the path to the AxisAdmin servlet
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the path to the AxisAdmin servlet</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -195,12 +188,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">transportchain</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          set the transport chain to use
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">set the transport chain to use</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -209,12 +200,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">url</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          full url to the admin endpoint
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">full url to the admin endpoint</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -223,12 +212,10 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">username</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          username to log in as
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">username to log in as</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.lang.String</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
           </td>
       </tr>
       <!-- Attribute -->
  @@ -237,14 +224,13 @@
             <font color="#000000" size="-1" face="arial,helvetica,sanserif">xmlfile</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  -          the name of the XML file containing deployment information
  -        </font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">the name of the XML file containing deployment information</font>
           </td>
           <td bgcolor="#eeeeee" valign="top" align="left">
  -          <font color="#000000" size="-1" face="arial,helvetica,sanserif">java.io.File</font>
  +          <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
           </td>
       </tr>
  +
   
           </table>
         </blockquote></td></tr>