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 pr...@apache.org on 2007/06/17 14:11:57 UTC

svn commit: r548033 [11/11] - in /webservices/axis2/branches/java/jaxws21: ./ etc/ modules/adb-codegen/ modules/adb-codegen/src/org/apache/axis2/schema/ modules/adb-codegen/src/org/apache/axis2/schema/template/ modules/adb-codegen/src/org/apache/axis2/...

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mail-configuration.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/mail-configuration.html?view=diff&rev=548033&r1=548032&r2=548033
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mail-configuration.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/mail-configuration.html Sun Jun 17 05:11:16 2007
@@ -13,19 +13,13 @@
 <p>This document provides guidelines on how to configure Axis2 in order to
 get the mail transport working.</p>
 
-<p><i>Send your feedback or questions to: <a
-href="mailto:axis-dev@ws.apache.org?subject=[Axis2]">axis-dev@ws.apache.org</a></i>.
-(Subscription details are available on the <a
-href="http://ws.apache.org/axis2/mail-lists.html">Axis2 site</a>.) Kindly
-prefix subject with [Axis2]. </p>
-
 <h2>Content</h2>
 <ul>
   <li><a href="#intro">Introduction</a></li>
   <li><a href="#sender">Transport Sender</a></li>
   <li><a href="#receiver">Transport Receiver</a></li>
-  <li><a href="#server">Using Mail Transport in the Server Side</a></li>
-  <li><a href="#james">Configure James as SMTP and POP Server</a></li>
+  <li><a href="#server">Using Mail Transport on the Server Side</a></li>
+  <li><a href="#james">Configuring James as an SMTP and POP Server</a></li>
   <li><a href="#included">Using the Included Mail Server</a></li>
 </ul>
 <a name="intro"></a>
@@ -60,7 +54,7 @@
 <ul>
   <li>Every JavaMail property can be set to @name of the &lt;parameter/&gt;.
     Thus, an SSL connection is mapped the way it is done in JavaMail</li>
-  <li>Few properties, such as password,, are set to @name with the prefix
+  <li>A few properties, such as the password, are set to @name with the prefix
     "transport"</li>
 </ul>
 
@@ -74,7 +68,7 @@
   </pre>
 </source>
 <p>At runtime, tuning a client to set the mail transport is as easy as
-follows,</p>
+follows:</p>
 <source><pre>...
 
 Options options =  new Options();
@@ -137,7 +131,7 @@
 &lt;/transportReceiver&gt;</pre>
 </source><a name="server"></a>
 
-<h2>Using Mail Transport in the Server Side</h2>
+<h2>Using Mail Transport on the Server Side</h2>
 
 <p>If the Mail Listener is to be started as a standalone mail listener, it
 can be done with the following command with the all the Axis2 jars and the
@@ -145,7 +139,7 @@
 <source><pre>java org.apache.axis2.transport.mail.SimpleMailListener repository-directory</pre>
 </source><a name="client"></a>
 
-<h2>Using Mail Transport in the Client Side</h2>
+<h2>Using Mail Transport on the Client Side</h2>
 
 <p>The following code segment shows how to send a one-way (IN-Only MEP) SOAP
 message using the mail transport. This needs the Transport Sender to be
@@ -168,7 +162,7 @@
         servicClient.sendRobust(payload);</pre>
 </source><a name="james"></a>
 
-<h2>Configure James as SMTP and POP Server</h2>
+<h2>Configuring James as an SMTP and POP Server</h2>
 
 <p>Download <a href="http://james.apache.org/">Apache James</a> and start
 James. Connect to the James server via Telnet as administrator James using

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/migration.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/migration.html?view=diff&rev=548033&r1=548032&r2=548033
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/migration.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/migration.html Sun Jun 17 05:11:16 2007
@@ -10,13 +10,13 @@
 <body lang="en">
 <h1>Migrating from Apache Axis 1.x to Axis2</h1>
 
-<p>For all those users who are familiar with Axis 1.x series will be assisted
-through this document to switch to Axis2 series. We begin by listing the
-improvements in Axis2 in comparison with Axis1. This is followed by
-guidelines for the migration.</p>
+<p>This document is intended for helping Axis 1.x users migrate to the
+Axis2 series. We'll begin by listing the
+improvements in Axis2 in comparison with Axis1. This will be followed by
+guidelines for migration to the new version.</p>
 
 <p><i>Send your feedback or questions to: <a
-href="mailto:axis-dev@ws.apache.org?subject=[Axis2]">axis-dev@ws.apache.org</a></i>.
+href="mailto:axis-user@ws.apache.org?subject=[Axis2]">axis-user@ws.apache.org</a></i>.
 (Subscription details are available on the <a
 href="http://ws.apache.org/axis2/mail-lists.html">Axis2 site</a>.) Kindly
 prefix subject with [Axis2]. </p>
@@ -37,28 +37,27 @@
 
 <p>Axis1.x and Axis2 have evolved from different architectures.</p>
 
-<p><strong>Speed</strong> - Axis2 is based on StAX API, which gives greater
-speed than SAX event based parsing that has been used in Axis1.x.</p>
+<p><strong>Speed</strong> - Axis2 is based on the StAX API, which gives greater
+speed than the SAX event based parsing used in Axis1.x.</p>
 
 <p><strong>Stability</strong> - Axis2 has fixed phases as well as
 user-defined phases for extensions. This allows far more stability as well as
 flexibility than Axis1.x.</p>
 
-<p><strong>Transport framework</strong> - Simple abstraction in the designing
-of transports (i.e., senders and listeners for SOAP over various protocols
-such as SMTP, etc), allows far more flexibility and the core of the engine is
-completely transport-independent.</p>
-
-<p><strong>WSDL support</strong> - Axis2 supports versions 1.1 and 2.0, which
-allow you to create stubs and skeletons to manipulate the web services
-arena.</p>
-
-<p><strong>Component - oriented architecture</strong> - The components are
-.mar and .aar archives . Easily reusable components such as handlers and
-modules allow pattern processing for your applications or distribution to
-partners. Axis2 is more concerned on the "Module" concept rather the
-"Handler" concept. Modules contain handlers that have been ordered through
-the phase rules. These are ordered to specific service(s).</p>
+<p><strong>Transport framework</strong> - Transports (i.e., senders and listeners 
+for SOAP over various protocols such as HTTP, SMTP, etc.), have been abstracted
+away from the Axis2 engine.  Having a transport-independent Axis engine allows 
+far more flexibility in transport options.</p>
+
+<p><strong>WSDL 2.0 support</strong> - Axis2 supports both WSDL versions 1.1 and 2.0, which
+are used by Axis2's code generation tools to create web service skeletons and client stubs.</p>
+
+<p><strong>Component-oriented architecture</strong> - Axis2 components consist of
+handlers and modules in .mar and .aar archives.  These easily reusable components 
+allow extended functionality such as pattern processing for your applications or distribution to
+partners. Axis2 emphasizes the "Module" concept over the
+"Handler" concept of Axis 1.x. Modules contain handlers that are ordered by
+phase rules. These are attached to specific service(s).</p>
 <a name="start"></a>
 
 <h2>Getting Started</h2>
@@ -123,36 +122,35 @@
 }
 </pre>
 
-<p>It has been clearly depicted that the invocation in Axis2 is dealt with
-the SOAP body element itself. Here the invocation is synchronous, but Axis2
+<p>The above code demonstrates that Axis2 service invocations deal with the SOAP 
+body element itself. The simple shows a synchronous invocation, but Axis2
 can handle asynchronous invocations as well. The "payload" variable above
-contains the SOAP body element which should go in the SOAP envelope.</p>
+contains the SOAP body element which will go in the SOAP envelope.</p>
 
-<p>Once the service is called through the stub in Axis2, the "payload" will
-be according to the data binding framework that will be used. So the extra
-work of "payload" will vanish.</p>
-
-<p>Apart from synchronous invocation, Axis2 also supports asynchronous
-invocation through sendReceiveNonblocking(). Synchronous/Asynchronous
-invocations can handle both single and double HTTP connections.</p>
+<p>Once the service is called by the client stub in Axis2, the "payload" will
+be bound according to the data binding framework in use. So the extra
+work of parsing the "payload" will vanish.</p>
+
+<p>Axis2 supports asynchronous invocation through sendReceiveNonblocking(). 
+Synchronous/Asynchronous invocations can handle both single and double 
+HTTP connections.</p>
 
 <p>With this advanced architecture, Axis2 is capable of handling megabytes of
-requests and responses, which is far from the capabilities of Axis1.x.</p>
+requests and responses, well above the capabilities of Axis1.x.</p>
 <a name="custom_deployment"></a>
 
 <h2>Custom Deployment of Services, Handlers, and Modules</h2>
 
-<p>In Axis 1.x, the deployment of services was via WSDD, which in my opinion
-was highly cumbersome. Service deployment in Axis2 is straight forward and
-dynamic. Dynamic behavior is from the "Administrator" facility given by the
-development in the server side. It's just a matter of creating the .aar file
-and deploying it. More details regarding this is given in the Axis2 user
-guide.</p>
+<p>In Axis 1.x, the deployment of services was via the rather cumbersome WSDD.
+Service deployment in Axis2 is straightforward and dynamic using the web-based
+Axis2 Admin application.  Deployment is just a matter of creating the service
+archive (.aar) file and deploying it. More details regarding this is given
+in the Axis2 user guide.</p>
 
 <p>Axis2 has moved away from the "Handler concept" and is more into the
 "Module concept". Abstractly speaking, the module concept is a collection of
 handlers with rules that govern which modules are created as .mar files. It
-has module.xml, which is the brain behind manipulating the handlers.</p>
+uses a module.xml file to specify handler configuration and activation.</p>
 
 <p>When a service is called through a handler, it is just a matter of giving
 a reference to the module that includes the handler in the services.xml
@@ -338,7 +336,7 @@
 commons-httpclient.</p>
 
 <p>It should be noted that axis2.xml should be configured to call the commons
-transports with the statement,</p>
+transports in this manner:</p>
 <pre>...
 &lt;transportSender name="http" class="org.apache.axis2.transport.http.CommonsHTTPTransportSender"&gt; 
    &lt;parameter name="PROTOCOL" locked="false"&gt;HTTP/1.1&lt;/parameter&gt; 
@@ -350,11 +348,11 @@
 <h2>Data Binding Support</h2>
 
 <p>ADB is used to provide data binding support. In Axis2, XML is manipulated
-via AXIOM, which is based on the StAX API. XML gives full schema support.
+via AXIOM, which is based on the StAX API. AXIOM provides full XML schema support.
 Thus, serialization and de-serialization of XML is handled in Axis2 via the
 xml-data binding framework.</p>
 
-<p>Below is an example of migrating an WSDL based Axis 1.x Web Service to
+<p>Below is an example of migrating a WSDL based Axis 1.x Web Service to
 Axis2.</p>
 
 <p>First, let's take a look at a simple document/literal style WSDL used in
@@ -453,7 +451,7 @@
 to:</p>
 <pre>&lt;soap:address location="http://localhost:8080/axis2/services/SimpleEndpoint"/&gt;&lt;/port&gt;&lt;/service&gt;&lt;/definitions&gt;</pre>
 
-<p>In Axis2, the default databinding uses ADB. However, XMLBeans and JaxMe
+<p>In Axis2, the default databinding uses ADB. However, XMLBeans, JiBX and JaxMe
 are also supported. This example uses XMLBeans. For Axis2, our example uses
 the following Ant task:</p>
 <pre>&lt;target name="wsdl2java"&gt;
@@ -588,17 +586,18 @@
          */
         public SimpleLoginResponseDocument simpleLogin
                   (simplens.types.SimpleLoginDocument simpleLoginDocument){
-                //Todo fill this with the necessary business logic
-
+  
                 SimpleLoginResponseDocument retDoc =
                     SimpleLoginResponseDocument.Factory.newInstance();
                  
                 SimpleLoginResponse retElement =
                     SimpleLoginResponse.Factory.newInstance();
+  
                 // Get parameters passed in 
                 SimpleLogin simpleLogin = simpleLoginDocument.getSimpleLogin();
                 String userName = simpleLogin.getUserName();
                 String password = simpleLogin.getUserPassword();
+
                 // do something with those variables...
 
                 retElement.setWebUserName(userName);
@@ -614,7 +613,7 @@
 http://localhost:8080/axis2/listServices, and you should see the service
 'SimpleService' ready for action. See the Axis2 user guide for more info.</p>
 
-<p>The last step is the client. Our Axis 1.x client for this example is:</p>
+<p>The last step is constructing the client. Our Axis 1.x client for this example is:</p>
 <pre>package org;
 
 import simpleNS.*;
@@ -684,7 +683,7 @@
 <p>Axis1.x and Axis2 have different ways of seeing the SOAP stack. So the
 best way to migrate is to follow the <a href="userguide.html">User's
 Guide</a> and the <a href="Axis2ArchitectureGuide.html">Architecture
-Guide</a> of Axis2 properly. Axis2 is very straight forward and friendly to
-use than its predecessor.</p>
+Guide</a> of Axis2 properly.  We are confident you will find Axis2 very 
+straightforward and more friendly to use than its predecessor.</p>
 </body>
 </html>

Modified: webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/modules.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/%40axis2_version_dir%40/modules.html?view=diff&rev=548033&r1=548032&r2=548033
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/modules.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/@axis2_version_dir@/modules.html Sun Jun 17 05:11:16 2007
@@ -145,43 +145,43 @@
 (in this example it is the "LoggingModule" class and various handlers that
 will run in different phases). The "module.xml" for the logging module will
 be as follows:</p>
-<pre>&lt;module name="logging" class="userguide.loggingmodule.LoggingModule "&gt;
-   &lt;inflow&gt;
+<pre>&lt;module name="logging" class="userguide.loggingmodule.LoggingModule"&gt;
+   &lt;InFlow&gt;
         &lt;handler name="InFlowLogHandler" class="userguide.loggingmodule.LogHandler"&gt;
         &lt;order phase="loggingPhase" /&gt;
         &lt;/handler&gt;
-   &lt;/inflow&gt;
+   &lt;/InFlow&gt;
 
-   &lt;outflow&gt;
+   &lt;OutFlow&gt;
         &lt;handler name="OutFlowLogHandler" class="userguide.loggingmodule.LogHandler"&gt;
         &lt;order phase="loggingPhase"/&gt;
         &lt;/handler&gt;
-   &lt;/outflow&gt;
+   &lt;/OutFlow&gt;
 
-   &lt;Outfaultflow&gt;
+   &lt;OutFaultFlow&gt;
         &lt;handler name="FaultOutFlowLogHandler" class="userguide.loggingmodule.LogHandler"&gt;
         &lt;order phase="loggingPhase"/&gt;
         &lt;/handler&gt;
-   &lt;/Outfaultflow&gt;
+   &lt;/OutFaultFlow&gt;
 
-   &lt;INfaultflow&gt;
+   &lt;InFaultFlow&gt;
         &lt;handler name="FaultInFlowLogHandler" class="userguide.loggingmodule.LogHandler"&gt;
         &lt;order phase="loggingPhase"/&gt;
         &lt;/handler&gt;
-   &lt;/INfaultflow&gt;
+   &lt;/InFaultFlow&gt;
 &lt;/module&gt;</pre>
 
 <p>As you can see, there are four flows defined in the "module.xml"</p>
 <ol>
-  <li>inflow - Represents the handler chain that will run when a message is
+  <li>InFlow Represents the handler chain that will run when a message is
     coming in. </li>
-  <li><p style="margin-bottom: 0in">outflow - Represents the handler chain
+  <li><p style="margin-bottom: 0in">OutFlow Represents the handler chain
     that will run when the message is going out. </p>
   </li>
-  <li><p style="margin-bottom: 0in">Outfaultflow - Represents the handler
+  <li><p style="margin-bottom: 0in">OutFaultFlow - Represents the handler
     chain that will run when there is a fault, and the fault is going out.</p>
   </li>
-  <li><p>INfaultflow - Represents the handler chain that will run when there
+  <li><p>InFaultFlow - Represents the handler chain that will run when there
     is a fault, and the fault is coming in. </p>
   </li>
 </ol>

Modified: webservices/axis2/branches/java/jaxws21/xdocs/articles.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/articles.html?view=diff&rev=548033&r1=548032&r2=548033
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/articles.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/articles.html Sun Jun 17 05:11:16 2007
@@ -11,7 +11,7 @@
   />
 </head>
 
-<body xml:lang="en">
+<body>
 <h1>Apache Axis2 References</h1>
 
 <p>This page contains articles, tutorials, presentations and question and
@@ -69,66 +69,58 @@
     2006)</li>
   <li><a href="http://www.developer.com/java/web/article.php/3620661">Apache
     Axis2 Session Management</a>- By Deepal Jayasinghe</li>
-  <li><a href="http://www.devx.com/Java/Article/33839">Apache
-    Axis2 with POJO's and Spring</a>- By Ramanujam A. Rao</li>
+  <li><a href="http://www.devx.com/Java/Article/33839">Apache Axis2 with
+    POJO's and Spring</a>- By Ramanujam A. Rao</li>
 </ul>
 
 <h2>Tutorials</h2>
 <ul>
-  <li><a
-    href="http://www.wso2.net/tutorials/axis2/java/2006/06/05/introducing-axis2">Introducing
-    Axis2</a>- By Eran Chinthaka, Chathura Herath (05 June 2006)</li>
-  <li><a
-    href="http://www.wso2.net/tutorials/axis2/2006/06/05/accelerating-web-services">Accelerating
-    Web Services Development with Axis2</a>- By Deepal Jayasinghe, Ajith
-    Ranabahu (05 June 2006)</li>
-  <li><a
-    href="http://www.wso2.net/tutorials/axis2/java/2006/05/29/hello-world">Hello
-    World with Apache Axis2</a>- By Ruchith Fernando (29 May 2006)</li>
-  <li><a
-    href="http://www.wso2.net/tutorials/axis2/java/2006/06/18/operation-service-message-is-destined-to">How
-    Apache Axis2 Finds the Operation and Service a Message is Destined
-    To</a>- By Eran Chinthaka(18 June 2006)</li>
-  <li><a
-    href="http://www.wso2.net/tutorials/axis2/java/2006/07/28/debug-ws">How
-    to Debug a Web Service?</a>- By Ajith Ranabahu (28 July 2006)</li>
+  <li><a href="http://wso2.org/library/140">Introducing Axis2</a>- By Eran
+    Chinthaka, Chathura Herath (05 June 2006)</li>
+  <li><a href="http://wso2.org/library/141">Accelerating Web Services
+    Development with Axis2</a>- By Deepal Jayasinghe, Ajith Ranabahu (05 June
+    2006)</li>
+  <li><a href="http://wso2.org/library/95">Hello World with Apache Axis2</a>-
+    By Ruchith Fernando (29 May 2006)</li>
+  <li><a href="http://wso2.org/library/176">How Apache Axis2 Finds the
+    Operation and Service a Message is Destined To</a>- By Eran Chinthaka(18
+    June 2006)</li>
+  <li><a href="http://wso2.org/library/225">How to Debug a Web Service?</a>-
+    By Ajith Ranabahu (28 July 2006)</li>
 </ul>
 
 <h2>Presentations</h2>
 <ul>
-  <li><a
-    href="http://www.wso2.net/presentations/axis2/java/2006/06/05/why-axis2-the-future-of-web-services">Why
-    Axis2: The Future of Web Services</a>- By Eran Chinthaka (05 June
-  2006)</li>
-  <li><a
-    href="http://www.wso2.net/presentations/axis2/java/2006/08/30/enterprise-applications">Building
-    Enterprise Applications with Axis2-Tutorial from ApacheCon Asia 2006</a>-
-    By Deepal Jayasinghe, Ruchith Fernando (30 Aug 2006)</li>
-  <li><a
-    href="http://www.wso2.net/presentations/axis2/java/2006/06/05/introducing-axis2">Introducing
-    Axis2</a>- By Ajith Ranabahu (05 June 2006)</li>
+  <li><a href="http://wso2.org/library/136">Why Axis2: The Future of Web
+    Services</a>- By Eran Chinthaka (05 June 2006)</li>
+  <li><a href="http://wso2.org/library/247">Building Enterprise Applications
+    with Axis2-Tutorial from ApacheCon Asia 2006</a>- By Deepal Jayasinghe,
+    Ruchith Fernando (30 Aug 2006)</li>
+  <li><a href="http://wso2.org/library/137">Introducing Axis2</a>- By Ajith
+    Ranabahu (05 June 2006)</li>
 </ul>
 
-<h2>Questions &amp; Answers</h2>
+<h2>Questions and Answers</h2>
 <ul>
-  <li><a href="http://www.wso2.net/kb/67">Setting up Apache Axis2 in eclipse
+  <li><a href="http://wso2.org/library/67">Setting up Apache Axis2 in eclipse
     IDE</a>- By Ruchith Fernando (04 April 2006)</li>
-  <li><a href="http://www.wso2.net/kb/83">How do I Embed SimpleHTTPServer in
+  <li><a href="http://wso2.org/library/83">How do I Embed SimpleHTTPServer in
     My Application and Deploy a POJO?</a>- By Davanum Sirinivas (09 May
   2006)</li>
-  <li><a href="http://www.wso2.net/kb/209">How to Configure Axis2's HTTP
+  <li><a href="http://wso2.org/library/209">How to Configure Axis2's HTTP
     Transport Sender at Client Side?</a>- By Saminda Abeysinghe (11July
   2006)</li>
-  <li><a href="http://www.wso2.net/kb/175">How to do REST invocation with
+  <li><a href="http://wso2.org/library/175">How to do REST invocation with
     Axis2/Java ServiceClient?</a>- By Eran Chinthaka (17 June 2006)</li>
-  <li><a href="http://www.wso2.net/kb/90">How to Embed an Axis2 based Web
+  <li><a href="http://wso2.org/library/90">How to Embed an Axis2 based Web
     Service in your Webapp?</a>- By Davanum Sirinivas(17 May 2006)</li>
 </ul>
-<h2>Othere resources</h2>
+
+<h2>Other</h2>
 <ul>
- <li>
-<a href="http://pzf.fremantle.org/2007/05/getting-started-with-wsrm-and-axis2.html">
-Getting started with Axis2 and Sandesha2 to do WS-ReliableMessaging</li>
+  <li><a
+    href="http://pzf.fremantle.org/2007/05/getting-started-with-wsrm-and-axis2.html">Getting
+    started with Axis2 and Sandesha2 to do WS-ReliableMessaging</a></li>
 </ul>
 </body>
 </html>

Modified: webservices/axis2/branches/java/jaxws21/xdocs/download/1_2/download.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/download/1_2/download.html?view=diff&rev=548033&r1=548032&r2=548033
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/download/1_2/download.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/download/1_2/download.html Sun Jun 17 05:11:16 2007
@@ -5,6 +5,15 @@
 </head>
 
 <body>
+<!--Google Anayitcs tracking code-->
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+_uacct = "UA-1954378-3";
+urchinTracker();
+</script>
+<!--End of Google Anayitcs tracking code-->
+
 <h2>Axis2 1.2 Release</h2>
 
 <div>
@@ -28,12 +37,12 @@
         need to be <a href="../../modules/index.html">downloaded</a>
         separately.</td>
       <td><a href="[preferred]/ws/axis2/1_2/axis2-1.2.zip"
-        title="[preferred]/ws/axis2/1_2/axis2-1.2.zip">zip</a> <a
+        title="[preferred]/ws/axis2/1_2/axis2-1.2.zip" onClick="javascript:urchinTracker ('/downloads/axis2-1.2.zip'); ">zip</a> <a
         href="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.md5"
-        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.md5">MD5</a>
+        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.md5" onClick="javascript:urchinTracker ('/downloads/axis2-1.2.zip.md5'); ">MD5</a>
         <a
         href="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.asc"
-        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.asc">PGP</a></td>
+        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2.zip.asc" onClick="javascript:urchinTracker ('/downloads/axis2-1.2.zip.asc'); ">PGP</a></td>
     </tr>
     <tr>
       <td><a name="src"></a><strong> Source Distribution</strong></td>
@@ -44,12 +53,12 @@
         up Axis2 environment</a> before running this command). Useful for
         advanced users.</td>
       <td><a href="[preferred]/ws/axis2/1_2/axis2-1.2-src.zip"
-        title="[preferred]/ws/axis2/1_2/axis2-1.2-src.zip">zip</a> <a
+        title="[preferred]/ws/axis2/1_2/axis2-1.2-src.zip" onClick="javascript:urchinTracker ('/downloads/axis2-1.2-src.zip'); ">zip</a> <a
         href="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.md5"
-        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.md5">MD5</a>
+        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.md5" onClick="javascript:urchinTracker ('/downloads/axis2-1.2-src.zip.md5'); ">MD5</a>
         <a
         href="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.asc"
-        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.asc">PGP</a></td>
+        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-src.zip.asc" onClick="javascript:urchinTracker ('/downloads/axis2-1.2-src.zip.asc'); ">PGP</a></td>
     </tr>
     <tr>
       <td><a name="war"></a><strong>WAR (Web Archive)
@@ -57,22 +66,22 @@
       <td>This will be the web application of Axis2 which can be deployed in
         most of the servlet containers.</td>
       <td><a href="[preferred]/ws/axis2/1_2/axis2.war"
-        title="[preferred]/ws/axis2/1_2/axis2.war">zip</a> <a
+        title="[preferred]/ws/axis2/1_2/axis2.war" onClick="javascript:urchinTracker ('/downloads/axis2-1.2.war'); ">zip</a> <a
         href="http://www.apache.org/dist/ws/axis2/1_2/axis2.war.md5"
-        title="http://www.apache.org/dist/ws/axis2/1_2/axis2.war.md5">MD5</a>
+        title="http://www.apache.org/dist/ws/axis2/1_2/axis2.war.md5" onClick="javascript:urchinTracker ('/downloads/axis2-1.2.war.md5'); ">MD5</a>
         <a href="http://www.apache.org/dist/ws/axis2/1_2/axis2.war.asc"
-        title="http://www.apache.org/dist/ws/axis2/1_2/axis2.war.asc">PGP</a></td>
+        title="http://www.apache.org/dist/ws/axis2/1_2/axis2.war.asc" onClick="javascript:urchinTracker ('/downloads/axis2-1.2.war.asc'); ">PGP</a></td>
     </tr>
     <tr>
       <td><strong>Documents Distribution</strong></td>
       <td>This will contain all the documentation in one package.</td>
       <td><a href="[preferred]/ws/axis2/1_2/axis2-1.2-docs.zip"
-        title="[preferred]/ws/axis2/1_2/axis2-1.2-docs.zip">zip</a> <a
+        title="[preferred]/ws/axis2/1_2/axis2-1.2-docs.zip" onClick="javascript:urchinTracker ('/downloads/axis2-1.2-docs.zip'); ">zip</a> <a
         href="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.md5"
-        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.md5">MD5</a>
+        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.md5" onClick="javascript:urchinTracker ('/downloads/axis2-1.2-docs.zip.md5'); ">MD5</a>
         <a
         href="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.asc"
-        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.asc">PGP</a></td>
+        title="http://www.apache.org/dist/ws/axis2/1_2/axis2-1.2-docs.zip.asc" onClick="javascript:urchinTracker ('/downloads/axis2-1.2-docs.zip.asc'); ">PGP</a></td>
     </tr>
   </tbody>
 </table>

Modified: webservices/axis2/branches/java/jaxws21/xdocs/guidelines.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/guidelines.html?view=diff&rev=548033&r1=548032&r2=548033
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/guidelines.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/guidelines.html Sun Jun 17 05:11:16 2007
@@ -6,7 +6,11 @@
 </head>
 
 <body>
-<h2>Mail Guideline</h2>
+<h2>Release Process</h2>
+
+<p>Click to read our <a href="release-process.html">Release Process Guidelines</a>.</p>
+
+<h2>Mail Guidelines</h2>
 
 <p>Every volunteer project obtains its strength from the people involved in
 it. Mailing lists provide a simple and effective communication mechanism.</p>

Modified: webservices/axis2/branches/java/jaxws21/xdocs/index.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/index.html?view=diff&rev=548033&r1=548032&r2=548033
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/index.html (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/index.html Sun Jun 17 05:11:16 2007
@@ -8,12 +8,18 @@
 <body lang="en">
 <h1>Welcome to Apache Axis2/Java</h1>
 
-<h2>27th April 2007 - Apache Axis2/Java Version @axis2_version@ Released!</h2>
+<p>Based on the Axis2 architecture, there are two implementations of the
+Apache Axis2 Web services engine - Apache Axis2/Java and 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> Web site for Axis2/C implementation information.</p>
+
+<h2>27th April 2007 - Apache Axis2/Java Version 1.2 Released!</h2>
 
 <p>[ <a
 href="http://ws.apache.org/axis2/download.cgi"><strong>Download</strong></a>
-] | [ <a href="@axis2_version_dir@/index.html"><strong>Documents
-Home</strong></a> ]</p>
+] | [ <a href="1_2/index.html"><strong>Documents Home</strong></a> ]</p>
 
 <p>Apache Axis2 is the core engine for Web services. It is a complete
 re-design and re-write of the widely used <a
@@ -78,7 +84,7 @@
   <li><a
     href="http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=wss"
     target="_blank">WS-Security</a> - Supported by <a
-    href="http://ws.apache.org/axis2/modules/rampart/@axis2_version_dir@/security-module.html">Apache
+    href="http://ws.apache.org/axis2/modules/rampart/1_2/security-module.html">Apache
     Rampart</a></li>
   <li><a href="http://www.w3.org/Submission/ws-addressing/"
     target="_blank">WS-Addressing</a> -Module included as part of Axis2
@@ -103,13 +109,14 @@
     its own light-weight object model, AXIOM, for message processing which is
     extensible, highly performant and is developer convenient.</p>
   </li>
-  <li><p style="margin-bottom: 0in"><strong><a name="Hot_Deployment"></a>Hot
-    Deployment</strong> - Axis2 is equipped with the capability of deploying
-    Web services and handlers while the system is up and running. In other
-    words, new services can be added to the system without having to shut
-    down the server. Simply drop the required Web service archive into the
-    services directory in the repository, and the deployment model will
-    automatically deploy the service and make it available for use.</p>
+  <li><p style="margin-bottom: 0in"><strong><a name="Hot_Deployment"
+    id="Hot_Deployment"></a>Hot Deployment</strong> - Axis2 is equipped with
+    the capability of deploying Web services and handlers while the system is
+    up and running. In other words, new services can be added to the system
+    without having to shut down the server. Simply drop the required Web
+    service archive into the services directory in the repository, and the
+    deployment model will automatically deploy the service and make it
+    available for use.</p>
   </li>
   <li><p style="margin-bottom: 0in"><strong>Asynchronous Web
     services</strong> - Axis2 now supports asynchronous Web services and
@@ -176,9 +183,8 @@
 
 <h2>Features of Axis2 Latest Version</h2>
 
-<p>Apache Axis2 Version @axis2_version@ comes with performance improvements
-and bug fixes over the 1.1.1 release. Check out the complete list of features
-below.</p>
+<p>Apache Axis2 Version 1.2 comes with performance improvements and bug fixes
+over the 1.1.1 release. Check out the complete list of features below.</p>
 
 <h3>Programming Model</h3>
 <ul>
@@ -187,8 +193,8 @@
   <li>Support for POJO and Spring services and clients</li>
   <li>Support for any message exchange pattern</li>
   <li>Synchronous and asynchronous calls</li>
-  <li>Archived service deployment model supporting full service
-     encapsulation with versioning support</li>
+  <li>Archived service deployment model supporting full service encapsulation
+    with versioning support</li>
   <li>Archived module deployment model supporting controlled extensibility
     with versioning support</li>
   <li><a href="#Hot_Deployment">Hot deployment</a></li>
@@ -242,24 +248,23 @@
 target="_blank">Download Tool Plug-ins</a>]</p>
 <ol type="1">
   <li>Axis2 Web Application (Web App)</li>
-  <li>WSDL2WS- <a
-    href="tools/@axis2_version_dir@/eclipse/wsdl2java-plugin.html"
+  <li>WSDL2WS- <a href="tools/1_2/eclipse/wsdl2java-plugin.html"
     target="_blank">eclipse plug-in</a><a>/</a> <a
-    href="tools/@axis2_version_dir@/CodegenToolReference.html"
-    target="_blank">Command line version</a><a>/</a><a
-    href="tools/@axis2_version_dir@/idea/Idea_plug-in_userguide.html#WSDL2Java_Code_Generation"
+    href="tools/1_2/CodegenToolReference.html" target="_blank">Command line
+    version</a><a>/</a><a
+    href="tools/1_2/idea/Idea_plug-in_userguide.html#WSDL2Java_Code_Generation"
     target="_blank">IntelliJ IDEA plug-in</a><a>/</a><a
-    href="tools/@axis2_version_dir@/maven-plugins/maven-wsdl2code-plugin.html"
+    href="tools/1_2/maven-plugins/maven-wsdl2code-plugin.html"
     target="_blank">Maven2 WSDL2Code Plug-in</a></li>
   <li>Service Archive Wizard- <a
-    href="tools/@axis2_version_dir@/eclipse/servicearchiver-plugin.html"
+    href="tools/1_2/eclipse/servicearchiver-plugin.html"
     target="_blank">eclipse plug-in</a>/ <a
-    href="tools/@axis2_version_dir@/idea/Idea_plug-in_userguide.html#Create_Service_Archive"
+    href="tools/1_2/idea/Idea_plug-in_userguide.html#Create_Service_Archive"
     target="_blank">IntelliJ IDEA plug-in</a>/ <a
-    href="tools/@axis2_version_dir@/maven-plugins/maven-aar-plugin.html"
+    href="tools/1_2/maven-plugins/maven-aar-plugin.html"
     target="_blank">Maven2 AAR Plug-in</a></li>
   <li>Java2WSDL- <a
-    href="tools/@axis2_version_dir@/maven-plugins/maven-java2wsdl-plugin.html"
+    href="tools/1_2/maven-plugins/maven-java2wsdl-plugin.html"
     target="_blank">Maven2 Java2WSDL Plug-in</a></li>
 </ol>
 

Modified: webservices/axis2/branches/java/jaxws21/xdocs/navigation.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/jaxws21/xdocs/navigation.xml?view=diff&rev=548033&r1=548032&r2=548033
==============================================================================
--- webservices/axis2/branches/java/jaxws21/xdocs/navigation.xml (original)
+++ webservices/axis2/branches/java/jaxws21/xdocs/navigation.xml Sun Jun 17 05:11:16 2007
@@ -46,7 +46,8 @@
 		<item name="Overview" href="overview.html" />
 			<item name="Checkout the Source" href="svn.html" />
 		 <item name="Mailing Lists" href="mail-lists.html" />
-		 <item name="Developer Guidelines" href="guidelines.html" />
+         <item name="Release Process" href="release-process.html"/>
+            <item name="Developer Guidelines" href="guidelines.html" />
 			<item name="Build the Site" href="siteHowTo.html" />	
 		</menu>
 		<menu name="Project Information">



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