You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2010/11/11 00:31:08 UTC

svn commit: r1033776 [2/2] - in /axis/axis2/java/core/branches/1_5: ./ modules/distribution/ modules/kernel/src/org/apache/axis2/transport/http/util/ modules/kernel/test/org/apache/axis2/transport/http/util/ modules/parent/ modules/saaj/test/org/apache...

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/rest-ws.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/rest-ws.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/rest-ws.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/rest-ws.xml Wed Nov 10 23:31:06 2010
@@ -93,7 +93,7 @@ usage of the above. It uses the "echo" o
 <code>userguide.example1.MyService </code>of the
 AXIS2_HOME/samples/userguide/src/userguide/example1.</p>
 
-<p>The class source will be as follows:</p><source>
+<p>The class source will be as follows:</p>
 <pre>public class RESTClient {
 
     private static String toEpr = "http://localhost:8080/axis2/services/MyService";
@@ -133,7 +133,7 @@ AXIS2_HOME/samples/userguide/src/usergui
         return method;
     }
 }</pre>
-</source><a name="rest_with_get"></a>
+<a name="rest_with_get"></a>
 
 <h2>Access a REST Web Service via HTTP GET</h2>
 
@@ -141,15 +141,14 @@ AXIS2_HOME/samples/userguide/src/usergui
 via HTTP GET. For example, the following URL requests the Version Service via
 HTTP GET. However, the Web service arriving via GET assumes REST. Other
 parameters are converted into XML and put into the SOAP body.</p>
-<source><pre>http://127.0.0.1:8080/axis2/services/Version/getVersion</pre>
-</source>
+<pre>http://127.0.0.1:8080/axis2/services/Version/getVersion</pre>
 <p>The result can be shown in the browser as follows:</p>
 <img src="images/userguide/http-get-ws.jpg"/>
 
 <p>For example, the following request,</p>
-<source><pre>http://127.0.0.1:8080/axis2/services/Version/getVersion</pre>
-</source>will be converted into the following SOAP message for processing by
-Axis2.<source>
+<pre>http://127.0.0.1:8080/axis2/services/Version/getVersion</pre>
+will be converted into the following SOAP message for processing by
+Axis2.
 <pre> 
    &lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt;
       &lt;soapenv:Body&gt;   
@@ -157,7 +156,7 @@ Axis2.<source>
       &lt;/soapenv:Body&gt;
    &lt;/soapenv:Envelope&gt;
     </pre>
-</source>
+
 <h2>Resources</h2>
 
 <p>How I Explained REST to My Wife, By Ryan Tomayko- <a

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/servlet-transport.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/servlet-transport.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/servlet-transport.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/servlet-transport.xml Wed Nov 10 23:31:06 2010
@@ -24,6 +24,7 @@
         <title>HTTP servlet transport</title>
     </properties>
     <body>
+        <h1>HTTP servlet transport</h1>
         <section name="Introduction">
             <p>
                 The servlet transport processes HTTP requests received through the servlet

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/soapmonitor-module.xml.vm
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/soapmonitor-module.xml.vm?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/soapmonitor-module.xml.vm (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/soapmonitor-module.xml.vm Wed Nov 10 23:31:06 2010
@@ -53,8 +53,7 @@ for security reasons.</p>
 
 <p>The SOAP Monitor can be engaged by inserting the following in the
 axis2.xml file.</p>
-<source><pre>   &lt;module ref="soapmonitor"/&gt;</pre>
-</source>
+<pre>   &lt;module ref="soapmonitor"/&gt;</pre>
 <p>In the axis2.xml file, define your phase orders for the 'soapmonitorPhase'
 referenced in the module.xml of soapmonitor.mars. Below is an example which
 should NOT be copied exactly, since the default phases change occasionally.

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/spring.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/spring.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/spring.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/spring.xml Wed Nov 10 23:31:06 2010
@@ -330,21 +330,19 @@ public class TestClient {
 axis2-spring-*.jar are under WEB-INF/lib. In such a case, the classes shown
 in this tutorial need to be placed in a JAR under WEB-INF/lib. In this
 example the JAR layout is:</p>
-<source><pre>./mySpring.jar
+<pre>./mySpring.jar
 ./META-INF
 ./META-INF/MANIFEST.MF
 ./spring
 ./spring/MyBean.class
 ./spring/MyBeanImpl.class
 ./spring/SpringAwareService.class</pre>
-</source>
 <p>Since all the user classes are in mySpring.jar in this example, the AAR
 merely contains the services.xml file:</p>
-<source><pre>./springExample.aar
+<pre>./springExample.aar
 ./META-INF
 ./META-INF/MANIFEST.MF
 ./META-INF/services.xml</pre>
-</source>
 <p>To run this example, make sure you have the axis2-spring*.jar that comes
 from the axis2-std-*-bin distro in the server side WEB-INF/lib, as well as
 the appropriate Spring jar - most will use the full spring.jar, but the
@@ -374,7 +372,7 @@ will <strong>not</strong> work otherwise
 <ul>
   <li><strong><a name="261"></a>The Spring inside an AAR layout</strong></li>
 </ul>
-<source><pre>./springExample.aar
+<pre>./springExample.aar
 ./META-INF
 ./META-INF/MANIFEST.MF
 ./META-INF/services.xml
@@ -387,7 +385,6 @@ will <strong>not</strong> work otherwise
 ./spring/MyBeanImpl.class
 ./spring/SpringAwareService.class
 ./spring/SpringInit.class </pre>
-</source>
 <p>As explained in the <a href="#24">Without a ServletContext</a> section,
 the 'Spring inside an AAR' config needs to hook Axis2 and Spring together via
 a Spring bean. Place the following in your Spring config file:</p>
@@ -402,7 +399,7 @@ a Spring bean. Place the following in yo
 <p>One way to initialize Spring inside the AAR is to use the
 org.apache.axis2.engine.ServiceLifeCycle interface. Here we give an
 example:</p>
-<source><pre>package spring;
+<pre>package spring;
 
 import org.apache.axis2.engine.ServiceLifeCycle;
 import org.apache.axis2.context.ConfigurationContext;
@@ -439,12 +436,11 @@ public class SpringInit implements Servi
     public void shutDown(ConfigurationContext ctxIgnore, AxisService ignore) {
     }
 }</pre>
-</source>
 <p>Here's the services.xml that now includes SpringInit and the
 SpringAwareService shown above. There is also the composite parameter which
 is needed when loading Spring in the AAR - see the <a href="#263">Known
 issues running Spring inside the AAR</a> area.</p>
-<source><pre>&lt;serviceGroup&gt;
+<pre>&lt;serviceGroup&gt;
   &lt;!-- Invoke SpringInit on server startup and shutdown --&gt;
   &lt;service name="SpringAwareService" class="spring.SpringInit"&gt;
     &lt;description&gt;
@@ -459,7 +455,7 @@ issues running Spring inside the AAR</a>
     &lt;/operation&gt;
   &lt;/service&gt;
 &lt;/serviceGroup&gt;</pre>
-</source><ul>
+<ul>
   <li><strong><a name="263"></a>Known issues running Spring inside the
     AAR</strong></li>
 </ul>
@@ -491,11 +487,11 @@ files in a specific directory under WEB-
 for your jar / class locations. Use the wildcards in the following example to list your mapping 
 locations as shown:  </p>
 
-<source><pre>&lt;bean id="mySessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"&gt;
+<pre>&lt;bean id="mySessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"&gt;
                 &lt;property name="mappingLocations"&gt;
                    &lt;value&gt;classpath*:**/MyEntity.hbm.xml&lt;/value&gt;
                 &lt;/property&gt;
                 ...
 &lt;/bean&gt; </pre>
-</source></body>
+</body>
 </html>

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/transport_howto.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/transport_howto.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/transport_howto.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/transport_howto.xml Wed Nov 10 23:31:06 2010
@@ -85,7 +85,7 @@ need a configuration context. The follow
 should ideally be only done once for the lifetime of the Transport
 receiver.</p>
 
-<p></p><source>
+<p></p>
 <pre>try {
         //Create a factory 
         ConfigurationContextFactory factory = new ConfigurationContextFactory();
@@ -95,14 +95,13 @@ axis2xmllocation);
 } catch (Exception e) {
         log.info(e.getMessage());
 }</pre>
-</source>
 <p>Now we need some kind of a Listener to listen to the requests that come
 in. You need to implement this according to the transport that you are trying
 to build. After a message is received at the Receiver, you can use the
 following code to process the request and then forward the message context to
 the engine using the engine.receive(msgContext) method. (The following code
 is extracted from the MailListener as an example)</p>
-<source><pre>AxisEngine engine = new AxisEngine(configurationContext);
+<pre>AxisEngine engine = new AxisEngine(configurationContext);
 MessageContext msgContext = null;
 
 // create and initialize a message context
@@ -159,17 +158,15 @@ try {
                 log.error(e);
         }
 }</pre>
-</source>
 <p>Now that we have the coding in place, we need to let Axis2 know about our
 new transport receiver. We do this by adding an entry into the axis2.xml
 file. If you need to pass any properties for the transport to operate, it can
 also be done through the axis2.xml file.</p>
-<source><pre>   &lt;transportReceiver name="TRANSPORT_NAME" class="org.apache.Axis2.transport.TRANSPORT_NAME.TRANSPORT_LISTNER_CLASS"&gt;
+<pre>   &lt;transportReceiver name="TRANSPORT_NAME" class="org.apache.Axis2.transport.TRANSPORT_NAME.TRANSPORT_LISTNER_CLASS"&gt;
         &lt;parameter name="PROPERTY_NAME"&gt;PROPERTY_VALUE&lt;/parameter&gt;
         &lt;parameter name="PROPERTY_NAME_2"&gt;PROPERTY_VALUE_2&lt;/parameter&gt;
   &lt;/transportReceiver&gt;
   </pre>
-</source>
 <p>By using a code fragment like
 <code>Utils.getParameterValue(transportOut.getParameter(MailSrvConstants.SMTP_USER))</code>
 we can extract the parameters that we inserted into the axis2.xml file.</p>
@@ -185,7 +182,7 @@ org.apache.Axis2.transport.AbstractTrans
 
 <p>The following bit of code from the abstract transport sender will call the
 Transport Sender that you wrote.</p>
-<source><pre>// If an EPR is present then the message is going on a different channel.
+<pre>// If an EPR is present then the message is going on a different channel.
 if (epr != null) {
         out = openTheConnection(epr, msgContext);
         OutputStream newOut = startSendWithToAddress(msgContext, out);
@@ -205,7 +202,6 @@ if (epr != null) {
                         "Both the TO and Property MessageContext.TRANSPORT_WRITER is Null, No way to send response.");
         }
 }</pre>
-</source>
 <p>Therefore, depending on whether your transport is using the same channel
 to send the response or using a different channel, you will need to implement
 a sub-set of the methods from the abstract class.</p>
@@ -213,12 +209,11 @@ a sub-set of the methods from the abstra
 <p>After implementing the necessary methods, you can let Axis2 know about
 your new transport sender by adding an entry to the axis2.xml file, like you
 did for the TransportReceiver.</p>
-<source><pre>  &lt;transportSender name="TRANSPORT_NAME" class="org.apache.Axis2.transport.TRANSPORT_NAME.TRANSPORT_SENDER_CLASS"&gt;
+<pre>  &lt;transportSender name="TRANSPORT_NAME" class="org.apache.Axis2.transport.TRANSPORT_NAME.TRANSPORT_SENDER_CLASS"&gt;
         &lt;parameter name="PROPERTY_NAME"&gt;PROPERTY_VALUE&lt;/parameter&gt;
         &lt;parameter name="PROPERTY_NAME_2"&gt;PROPERTY_VALUE_2&lt;/parameter&gt;
   &lt;/transportSender&gt;
   </pre>
-</source>
 <p>Have a look at
 org.apache.Axis2.transport.http.CommonsHTTPTransportSender which is used to
 send HTTP responses.</p>

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/userguide-forfurtherstudy.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/userguide-forfurtherstudy.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/userguide-forfurtherstudy.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/userguide-forfurtherstudy.xml Wed Nov 10 23:31:06 2010
@@ -97,11 +97,11 @@ Study</strong></a></li>
 </ul>-->
 <h2>Resources</h2>
 <p><a href="Axis2ArchitectureGuide.html">Axis2 Architecture</a></p>
-<p><a href="http://ws.apache.org/commons/axiom/OMTutorial.html">XML processing with AXIOM</a></p>
+<p><a href="http://ws.apache.org/axiom/userguide/userguide.html">Axiom User Guide</a></p>
 <p><a href="rest-ws.html">RESTful Web Services</a></p>
 <p><a href="http-transport.html">HTTP Transports</a></p>
 <p><a href="mtom-guide.html">MTOM with Axis2</a></p>
-<p><a href="../modules/rampart/security-module.html">Securing SOAP Messages with Apache Rampart</a></p>
+<p><a href="http://axis.apache.org/axis2/java/rampart/">Securing SOAP Messages with Apache Rampart</a></p>
 <p><a href="soapmonitor-module.html">SOAPMonitor</a></p>
 <p><a href="adv-userguide.html">Apache Axis2 Advance User's Guide</a></p>
 </body>

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/xmlbased-server.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/xmlbased-server.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/xmlbased-server.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/docs/xmlbased-server.xml Wed Nov 10 23:31:06 2010
@@ -67,8 +67,8 @@ XML model by its external behavior, but 
 implementation OM is very much different to others. OMElement is
 the basic representation of the XML infoset element in OM.For more
 details on OMElement see the <a href=
-"http://ws.apache.org/commons/axiom/OMTutorial.html">OM
-Tutorial</a>.</i></p>
+"http://ws.apache.org/axiom/userguide/userguide.html">Axiom
+User Guide</a>.</i></p>
 <pre>
 public class MyService{
     public void ping(OMElement element){

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/download.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/download.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/download.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/download.xml Wed Nov 10 23:31:06 2010
@@ -73,32 +73,29 @@
                         <th>Version</th>
                         <th>Date</th>
                         <th>Description</th>
-                        <th>Binary Distribution</th>
-                        <th>Source Distribution</th>
-                        <th>WAR Distribution</th>
-                        <th>Documents Distribution</th>
+                        <th>Distribution</th>
                     </tr>
                     <tr>
                         <td><a name="1_5_2"/><strong>1.5.2</strong></td>
                         <td>06 - Sep - 2010</td>
                         <td>1.5.2 Release (Mirrored)</td>
                         <td>
-                            <a href="[preferred]/axis/axis2/java/core/1.5.2/axis2-1.5.2-bin.zip">zip</a>
-                            <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="[preferred]/axis/axis2/java/core/1.5.2/axis2-1.5.2-bin.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-bin.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/axis/axis2/java/core/1.5.2/axis2-1.5.2-src.zip">zip</a>
-                            <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="[preferred]/axis/axis2/java/core/1.5.2/axis2-1.5.2-src.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-src.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/axis/axis2/java/core/1.5.2/axis2-1.5.2-war.zip">zip</a>
-                            <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-war.zip.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="[preferred]/axis/axis2/java/core/1.5.2/axis2-1.5.2-war.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-war.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/axis/axis2/java/core/1.5.2/axis2-1.5.2-war.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            Not available.
+                            <br/>
+                            (The Documents Distribution is not available for this release)
                         </td>
                     </tr>
                     <tr>
@@ -106,23 +103,24 @@
                         <td>23 - Oct - 2009</td>
                         <td>1.5.1 Release (Mirrored)</td>
                         <td>
-                            <a href="[preferred]/ws/axis2/1_5_1/axis2-1.5.1-bin.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="[preferred]/ws/axis2/1_5_1/axis2-1.5.1-bin.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-bin.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_5_1/axis2-1.5.1-src.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="[preferred]/ws/axis2/1_5_1/axis2-1.5.1-src.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-src.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_5_1/axis2-1.5.1-war.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-war.zip.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="[preferred]/ws/axis2/1_5_1/axis2-1.5.1-war.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-war.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-war.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_5_1/axis2-1.5.1-docs.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="[preferred]/ws/axis2/1_5_1/axis2-1.5.1-docs.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-docs.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_5_1/axis2-1.5.1-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -131,23 +129,24 @@
                         <td>09 - Jun - 2009</td>
                         <td>1.5 Release (Mirrored)</td>
                         <td>
-                            <a href="[preferred]/ws/axis2/1_5/axis2-1.5-bin.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="[preferred]/ws/axis2/1_5/axis2-1.5-bin.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-bin.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_5/axis2-1.5-src.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="[preferred]/ws/axis2/1_5/axis2-1.5-src.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-src.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_5/axis2-1.5-war.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-war.zip.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="[preferred]/ws/axis2/1_5/axis2-1.5-war.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-war.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-war.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_5/axis2-1.5-docs.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="[preferred]/ws/axis2/1_5/axis2-1.5-docs.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-docs.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_5/axis2-1.5-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -156,23 +155,24 @@
                         <td>24 - Aug - 2008</td>
                         <td>1.4.1 Release (Mirrored)</td>
                         <td>
-                            <a href="[preferred]/ws/axis2/1_4_1/axis2-1.4.1-bin.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="[preferred]/ws/axis2/1_4_1/axis2-1.4.1-bin.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-bin.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_4_1/axis2-1.4.1-src.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="[preferred]/ws/axis2/1_4_1/axis2-1.4.1-src.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-src.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_4_1/axis2-1.4.1-war.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-war.zip.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="[preferred]/ws/axis2/1_4_1/axis2-1.4.1-war.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-war.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-war.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="[preferred]/ws/axis2/1_4_1/axis2-1.4.1-docs.zip">zip</a>
-                            <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="[preferred]/ws/axis2/1_4_1/axis2-1.4.1-docs.zip">zip</a> |
+                            <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-docs.zip.md5">MD5</a> |
                             <a href="http://www.apache.org/dist/ws/axis2/1_4_1/axis2-1.4.1-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -181,23 +181,24 @@
                         <td>05 - Feb - 2008</td>
                         <td>1.4 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2.war.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-docs.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-docs.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-docs.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_4/axis2-1.4-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -206,23 +207,24 @@
                         <td>06 - Jul - 2007</td>
                         <td>1.3 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2.war.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-docs.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-docs.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-docs.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_3/axis2-1.3-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -231,23 +233,24 @@
                         <td>27 - Apr - 2007</td>
                         <td>1.2 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2.war.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -256,23 +259,24 @@
                         <td>09 - Jan - 2007</td>
                         <td>1.1.1 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2.war.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-docs.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-docs.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-docs.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_1_1/axis2-1.1.1-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -281,23 +285,24 @@
                         <td>13 - Nov - 2006</td>
                         <td>1.1 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2.war.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-docs.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-docs.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-docs.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_1/axis2-1.1-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -306,23 +311,24 @@
                         <td>04 - May - 2006</td>
                         <td>1.0 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-bin.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-bin.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-bin.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-std-1.0-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2.war.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-1.0-docs.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-1.0-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-1.0-docs.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-1.0-docs.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/1_0/axis2-1.0-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -331,23 +337,24 @@
                         <td>23 - Mar - 2006</td>
                         <td>0.95 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-bin.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-bin.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-bin.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-std-0.95-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2.war.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-0.95-docs.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-0.95-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-0.95-docs.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-0.95-docs.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_95/axis2-0.95-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -356,23 +363,24 @@
                         <td>11 - Jan - 2006</td>
                         <td>0.94 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-bin.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-bin.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-bin.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-std-0.94-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2.war.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-0.94-docs.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-0.94-docs.zip.md5">MD5</a>
+                            <br/>
+                            Documents Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-0.94-docs.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-0.94-docs.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_94/axis2-0.94-docs.zip.asc">PGP</a>
                         </td>
                     </tr>
@@ -381,86 +389,69 @@
                         <td>12 - Feb - 2005</td>
                         <td>0.93 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-bin.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-bin.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-bin.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2-0.93-src.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2.war">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2.war.md5">MD5</a>
+                            <br/>
+                            WAR Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2.war">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2.war.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_93/axis2.war.asc">PGP</a>
                         </td>
-                        <td>
-                            N/A
-                        </td>
                     </tr>
                     <tr>
                         <td><a name="0_92"/><strong>0.92</strong></td>
                         <td>26 - Aug - 2005</td>
                         <td>0.92 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-bin.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-bin.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-bin.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_92/axis2-0.92-src.zip.asc">PGP</a>
                         </td>
-                        <td>
-                            N/A
-                        </td>
-                        <td>
-                            N/A
-                        </td>
                     </tr>
                     <tr>
                         <td><a name="0_91"/><strong>0.91</strong></td>
                         <td>16 - Aug - 2005</td>
                         <td>0.91 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-bin.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-bin.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-bin.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_91/axis2-0.91-src.zip.asc">PGP</a>
                         </td>
-                        <td>
-                            N/A
-                        </td>
-                        <td>
-                            N/A
-                        </td>
                     </tr>
                     <tr>
                         <td><a name="0_9"/><strong>0.9</strong></td>
                         <td>05 - Jul - 2005</td>
                         <td>0.9 Release (Archived)</td>
                         <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-bin.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-bin.zip.md5">MD5</a>
+                            Binary Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-bin.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-bin.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-bin.zip.asc">PGP</a>
-                        </td>
-                        <td>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-src.zip">zip</a>
-                            <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-src.zip.md5">MD5</a>
+                            <br/>
+                            Source Distribution
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-src.zip">zip</a> |
+                            <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-src.zip.md5">MD5</a> |
                             <a href="http://archive.apache.org/dist/ws/axis2/0_9/axis2-0.9-src.zip.asc">PGP</a>
                         </td>
-                        <td>
-                            N/A
-                        </td>
-                        <td>
-                            N/A
-                        </td>
                     </tr>
                 </tbody>
             </table>

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/faq.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/faq.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/faq.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/faq.xml Wed Nov 10 23:31:06 2010
@@ -88,9 +88,13 @@ Axis2. What should I do?</strong><br />
 <p>First make sure you go through the user guide and this FAQ. If
 you are using a released version of Axis2, then there is a
 possibility that your problem has already being fixed in the latest
-code. <a href=
-"http://repository.apache.org/snapshots/org/apache/axis2/">Download Axis2
-nightly builds</a> and test again.</p>
+code. Download Axis2 nightly builds and test again. You can download
+the complete snapshot distributions from our
+<a href="https://hudson.apache.org/hudson/job/Axis2/lastStableBuild/org.apache.axis2$distribution">Hudson
+continuous integration server</a> and individual JARs from our
+<a href="http://repository.apache.org/snapshots/org/apache/axis2/">snapshot repository</a>. The
+snapshot repository is also the best choice if you are using Maven to build your project.
+</p>
 <p>If the problem still persists, then try to search for your
 question in our <a href=
 "http://marc.theaimsgroup.com/?l=axis-dev&amp;r=1&amp;w=2">developer</a>

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/index.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/index.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/index.xml Wed Nov 10 23:31:06 2010
@@ -16,17 +16,13 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta name="generator" content=
-"HTML Tidy for Windows (vers 14 June 2007), see www.w3.org" />
-<meta http-equiv="content-type" content="" />
-<title>Apache Axis2/Java - Next Generation Web Services</title>
-</head>
-<body lang="en" xml:lang="en">
+<document xmlns="http://maven.apache.org/XDOC/2.0"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
+    <properties>
+        <title>Apache Axis2/Java - Next Generation Web Services</title>
+    </properties>
+    <body>
 <h1>Welcome to Apache Axis2/Java</h1>
 <p>Axis2 is a Web Services / SOAP / WSDL engine, the successor to the
 widely used <a href=
@@ -36,7 +32,7 @@ of the Apache Axis2 Web services engine 
 Apache Axis2/C</p>
 <p>While you will find all the information on Apache Axis2/Java
 here, you can visit the <a href=
-"http://ws.apache.org/axis2/c/"><strong>Apache Axis2/C</strong></a>
+"http://axis.apache.org/axis2/c/"><strong>Apache Axis2/C</strong></a>
 Web site for Axis2/C implementation information.</p>
 <h3>September 6, 2010 - Apache Axis2/Java Version 1.5.2 Released!</h3>
 <p>1.5.2 is a maintenance release to fix the security issue described in
@@ -94,7 +90,7 @@ Apache Rampart</a></li>
 core</li>
 </ul>
 <p>Apache Axis2 is built on <a href=
-"http://ws.apache.org/commons/axiom/index.html">Apache AXIOM</a>, a
+"http://ws.apache.org/axiom/">Apache AXIOM</a>, a
 new high performant, pull-based XML object model.</p>
 <p>Axis2 comes with many new features, enhancements and industry
 specification implementations. The key features offered are as
@@ -301,4 +297,4 @@ Web services related news on the Apache 
 Online</a></li>
 </ul>
 </body>
-</html>
+</document>

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/eclipse/servicearchiver-plugin.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/eclipse/servicearchiver-plugin.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/eclipse/servicearchiver-plugin.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/eclipse/servicearchiver-plugin.xml Wed Nov 10 23:31:06 2010
@@ -31,7 +31,7 @@ Plug-in</title>
 <h1>Service Archive Generator Wizard Guide for Eclipse Plug-in</h1>
 <p>This document will guide you through the installation and usage
 of the archive generator Eclipse plug-in.</p>
-<p><a href="http://ws.apache.org/axis2/tools/index.html" target=
+<p><a href="../tools/index.html" target=
 "_blank">[Download Plugin Tool]</a></p>
 <h2>Content</h2>
 <ul>
@@ -48,7 +48,7 @@ services to the Axis2.</p>
 <a name="installation" id="installation"></a>
 <h2>Installation</h2>
 <p>One can easily <a href=
-"http://ws.apache.org/axis2/tools/index.html">download</a> the
+"../tools/index.html">download</a> the
 plugin</p>
 <p>If one needs to build the plug-in from source, Maven2 and Ant
 builds arevailabe. Please refer the readme.txt located at

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/eclipse/wsdl2java-plugin.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/eclipse/wsdl2java-plugin.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/eclipse/wsdl2java-plugin.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/eclipse/wsdl2java-plugin.xml Wed Nov 10 23:31:06 2010
@@ -32,7 +32,7 @@
 for Eclipse. In other words, this document will guide you through
 the operations of generating a WSDL file from a Java class and/or
 generating a Java class file from a WSDL file.</p>
-<p><a href="http://ws.apache.org/axis2/tools/index.html" target=
+<p><a href="../tools/index.html" target=
 "_blank">[Download Plugin Tool]</a></p>
 <h2>Content</h2>
 <ul>
@@ -52,7 +52,7 @@ given below.</p>
 <a name="installation" id="installation"></a>
 <h2>Installation</h2>
 <p>One can easily <a href=
-"http://ws.apache.org/axis2/tools/index.html">download</a> the
+"../tools/index.html">download</a> the
 plugin</p>
 <p>If one needs to build the plug-in from source, Maven2 and Ant
 builds arevailabe. Please refer the readme.txt located at

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/idea/Idea_plug-in_userguide.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/idea/Idea_plug-in_userguide.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/idea/Idea_plug-in_userguide.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/idea/Idea_plug-in_userguide.xml Wed Nov 10 23:31:06 2010
@@ -33,7 +33,7 @@
 <h1>Axis2 Plug-in Guide for IntelliJ IDEA</h1>
 <p>This document explains the installation and usage of Axis2
 plug-in for IntelliJ IDEA.</p>
-<p><a href="http://ws.apache.org/axis2/tools/index.html">[Download
+<p><a href="../tools/index.html">[Download
 Plug-in]</a></p>
 <h2>Content</h2>
 <ul>
@@ -63,7 +63,7 @@ functionality has not been changed.</p>
 <a name="installation" id="installation"></a>
 <h2>Installation</h2>
 <p>First <a href=
-"http://ws.apache.org/axis2/tools/index.html">download</a> the
+"../tools/index.html">download</a> the
 plug-in which is a zipped file, and extract it into plugins
 directory which is located in the directory where IDEA is
 installed. If a previous version of the plug-in resides in this

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-aar-plugin.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-aar-plugin.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-aar-plugin.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-aar-plugin.xml Wed Nov 10 23:31:06 2010
@@ -30,7 +30,7 @@
 <h1>Maven2 AAR Plug-in Guide</h1>
 <h2>Introduction</h2>
 <p>This plugin generates an Axis 2 service file (AAR file).</p>
-<p><a href="http://ws.apache.org/axis2/tools/index.html" target=
+<p><a href="../tools/index.html" target=
 "_blank">[Download Plugin Tool]</a></p>
 <h2>Goals</h2>
 <p>The AAR plugin allows the packaging of an Axis 2 service aar in

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-java2wsdl-plugin.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-java2wsdl-plugin.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-java2wsdl-plugin.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-java2wsdl-plugin.xml Wed Nov 10 23:31:06 2010
@@ -31,7 +31,7 @@
 <h2>Introduction</h2>
 <p>This plugin takes as input a Java class and generates a WSDL,
 which describes a Web service for invoking the classes methods.</p>
-<p><a href="http://ws.apache.org/axis2/tools/index.html" target=
+<p><a href="../tools/index.html" target=
 "_blank">[Download Plugin Tool]</a></p>
 <h2>Goals</h2>
 <p>The Java2WSDL plugin offers a single goal:</p>

Modified: axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-wsdl2code-plugin.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-wsdl2code-plugin.xml?rev=1033776&r1=1033775&r2=1033776&view=diff
==============================================================================
--- axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-wsdl2code-plugin.xml (original)
+++ axis/axis2/java/core/branches/1_5/src/site/xdoc/tools/maven-plugins/maven-wsdl2code-plugin.xml Wed Nov 10 23:31:06 2010
@@ -32,7 +32,7 @@
 <p>This plugin takes as input a WSDL and generates client and
 server stubs for calling or implementing a Web service matching the
 WSDL.</p>
-<p><a href="http://ws.apache.org/axis2/tools/index.html" target=
+<p><a href="../tools/index.html" target=
 "_blank">[Download Plugin Tool]</a></p>
 <h2>Goals</h2>
 <p>The WSDl2Code offers a single goal:</p>