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 di...@apache.org on 2006/09/29 16:38:06 UTC

svn commit: r451312 - in /webservices/axis2/trunk/c: INSTALL NEWS README axiom/include/axiom_soap_fault_reason.h guththila/src/guththila_writer.c modules/core/clientapi/op_client.c xdocs/download.html xdocs/index.html

Author: dinesh
Date: Fri Sep 29 07:38:06 2006
New Revision: 451312

URL: http://svn.apache.org/viewvc?view=rev&rev=451312
Log:
release 0.94 docs update

Modified:
    webservices/axis2/trunk/c/INSTALL
    webservices/axis2/trunk/c/NEWS
    webservices/axis2/trunk/c/README
    webservices/axis2/trunk/c/axiom/include/axiom_soap_fault_reason.h
    webservices/axis2/trunk/c/guththila/src/guththila_writer.c
    webservices/axis2/trunk/c/modules/core/clientapi/op_client.c
    webservices/axis2/trunk/c/xdocs/download.html
    webservices/axis2/trunk/c/xdocs/index.html

Modified: webservices/axis2/trunk/c/INSTALL
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/INSTALL?view=diff&rev=451312&r1=451311&r2=451312
==============================================================================
--- webservices/axis2/trunk/c/INSTALL (original)
+++ webservices/axis2/trunk/c/INSTALL Fri Sep 29 07:38:06 2006
@@ -69,32 +69,27 @@
 3. Then go to the folder where you extracted the source
         cd /your_path_to_axis2c_source
 
-4. Set parser location
-   Include path and library path to parser should be set. For libxml2, this is automatically
-   resolved by the configure script.
-
-5. Build the source
+4. Build the source
    This can be done by running the 'configure; make; make install' command sequence in the 
-   sub folders 
-         1. util
-         2. axiom
-         3. xml_schema
-         4. woden; and then in 
-         5. root folder of source extract
-
-   in that order. Note that each sub folder mentioned in the above sequence represents 
-   a separate independent sub project in Axis2/C. The latter sub projects in the above sequence 
-   need the predecessors to build. e.g. AXIOM needs utils and XML schema needs both AXIOM
-   and utils etc. Hence you have to use extra prefixes such as --with-axis2_util or 
-   --with-axiom to indicate where the dependencies are located.
+   AXIS2C_HOME directory 
 
+    ./configure
+     make
+     make install
+        	
    Please run './configure --help' in respective sub folders for more information on
    these configure options. 
 
    You may also need to set LD_LIBRARY_PATH to include the install locations.
 
    NOTE: If you don't provide a --prefix configure option, it will by default install into
-   /usr/local/axis2c folder.
+   ====  /usr/local/axis2c folder.
+
+
+    You may need to try Axis2c with guththila xml parser. You can do it by giving --enable-guththila=yes
+      ./configure --enable-guththila=yes [other configuration options]
+	make
+        make install
 
    If you need to get the samples working, you also need to build the samples.
    Please run './configure --help' in samples folder for more information on
@@ -105,18 +100,9 @@
         make
         make install
 
-   There is a shell script that is meant to help you build all of the source in one step,
-   named axis2c_build.sh. This script can be given the location you wish to install
-   as a command line argument; if not given, the default install location is 
-   /usr/local/axis2c.
-   In the source root run:
-        ./axis2c_build.sh [path_your_wish_to_install_axis2c_binaries]
-
-   You can also build the rampart module if you wish to test WS-Security implementation.
+5. Go to the folder where you installed axis2c.
 
-6. Go to the folder where you installed axis2c.
-
-7. Start simple axis server
+6. Start simple axis server
         cd axis2c/bin
         ./axis2_http_server
 
@@ -155,7 +141,7 @@
 
     The c:\axis2c-M0.4 folder structure is as follows.
 
-    axis2c-M0.4
+    axis2c-0.94
       |
 	  +- bin         - server and other executables
       |   |
@@ -181,18 +167,18 @@
 
     You need to set a couple of environment variables before you can run the server and samples.
 
-    Set the variable AXIS2C_HOME to the deploy folder (C:\axis2c-M0.4)
+    Set the variable AXIS2C_HOME to the deploy folder (C:\axis2c-0.94)
     Add the path to lib directory to the PATH variable (%AXIS2C_HOME%\lib)
 
     Now everything is set to run the server!
 
-    C:\axis2c-M0.4\bin>axis2_http_server.exe 
+    C:\axis2c-0.94\bin>axis2_http_server.exe 
 
     You should see the message:
         Started Simple Axis2 HTTP Server...
 
     By default the log is created under %AXIS2C_HOME%\logs folder with the name axis2.log.
-    (Note: You may provide command line options to change the default behavior. Type "axis2_http_server.exe -h" to learn about the usage)
+    (Note: You may provide command line options to change the default behaviour. Type "axis2_http_server.exe -h" to learn about the usage)
 
     Now you can run any sample client deployed under %AXIS2C_HOME%\bin\samples\
     Example:
@@ -286,7 +272,7 @@
         Started Simple Axis2 HTTP Server...
 
     By default, the log is created under %AXIS2C_HOME%\logs folder with the name axis2.log.
-    (Note: You may provide command line options to change the default behavior. Type "axis2_http_server.exe -h" to learn about the usage)
+    (Note: You may provide command line options to change the default behaviour. Type "axis2_http_server.exe -h" to learn about the usage)
 
     Now you can run any sample client deployed under %AXIS2C_HOME%\bin\samples\
     Example:
@@ -301,11 +287,11 @@
 5.1.1 On the Linux Platform
 
     Provide the Apache2 include file location as a configure option
-        ./configure --with-apache2="<apache2 include files location>" [other configure options]
+        ./configure --with-apache2="<apache2 directory>" [other configure options]
 
     NOTE: Some apache2 distributions install APR (Apache Portable Run-time) include files in a
     separate location which is required to build mod_axis2. In that case use:
-        ./configure --with-apache2="<apache2 include files location>" --with-apr="<apr include files location>" [other configure options]
+        ./configure --with-apache2="<apache2 directory>" --with-apr="<apr include files location>" [other configure options]
 
     Then build the source tree
         make
@@ -363,3 +349,71 @@
         http://localhost/axis2/services
 
     Enjoy the Axis2C soap engine!
+
+
+
+
+
+FAQ
+=======
+
+1. Although I was able to get simple axis server up, unable to run samples ?
+
+        This could happen because of wrong location of AXIS2C_HOME 
+
+
+2. What are the other dependencies Axis2c has ?
+     
+        Basically if you are willing to use libxml2 as your parser, you need to have it installed on your system.
+and rampart (security module of axis2c) has dependency on openssl.
+
+        libxml2 - http://xmlsoft.org/downloads.html
+
+3. I installed libxml2 installed in my system, but ./configure fails saying "libxml2 not found"
+
+        Yes, you need to install libxml2-dev packages. 
+		
+		1. If you are using debian based system
+    			apt-get install libxml2-dev
+                2. If you are using redhat based system.
+                        yum install libxml2-dev
+		3. If you compile libxml2 from source this you will not get this error.
+
+4. I installed openssl in my system but , I'm getting an error while configuring rampart ?
+    
+         You might need to get installed "libssl-dev"
+
+5. Is there any recommended packages ,that I need to installed in my system ?
+
+                1. automake, autoconf , libtool, aclocal
+                2. libxml2 and libxml2-dev
+		3. openssl
+                4. libssl-dev
+		5. pkg-config
+  		
+6. I tried several methods, browse through axis-c-dev and axis-c-user mail archives but I' was unable solve it ?
+
+    Then you can ask from axis2c users or Axis2c developers about it by sending your question to 
+         user 	   = axis-c-user@ws.apache.org    
+         developer = axis-c-dev@ws.apache.org 
+
+      You can get subscribe to 
+
+                 axis-c-user list by sending request to  "axis-c-user-subscribe@ws.apache.org"
+
+                 axis-c-dev  list by sending request to  "axis-c-dev-subscribe@ws.apache.org"
+
+       subject of the request should be "subscribe"
+
+
+7. This FAQ is not enough ?
+       
+       You can help us by reporting your suggestions, complaints, problems and bugs ...
+
+
+
+ Thank you for using Axis2c ...
+
+
+
+

Modified: webservices/axis2/trunk/c/NEWS
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/NEWS?view=diff&rev=451312&r1=451311&r2=451312
==============================================================================
--- webservices/axis2/trunk/c/NEWS (original)
+++ webservices/axis2/trunk/c/NEWS Fri Sep 29 07:38:06 2006
@@ -1,4 +1,4 @@
-We are pleased to announce the release of Apache Axis2/C version 0.93.
+We are pleased to announce the release of Apache Axis2/C version 0.94.
 You can download this release from
 http://ws.apache.org/axis2/c/download.cgi
 
@@ -25,28 +25,25 @@
   16. Security module with UsernameToken support
   17. REST support (HTTP GET case) - New
   18. Dynamic invocation support (based on XML schema and WSDL implementations) - New
+  19. Guththila pull parser support
+  20. WSDL2C code generation tool- with schema code generation (experimental)
+  21. TCP Monitor - C implementation (experimental)
 
 Major Changes Since Last Release
-
-   1. REST support for HTTP GET case
-   2. XML Schema implementation
-   3. Woden/C implementation that supports both WSDL 1.1 and WSDL 2.0
-   4. Dynamic client invocation (given a WSDL, consume services dynamically)
-   5. Numerous improvements to API and API documentation
-   6. Many bug fixes, especially, many paths of execution previously untouched were tested along with 
-      Sandesha2/C implementation
-
+   1. Guththila pull parser support
+   2. WSDL2C code generation tool
+   3. TCP Monitor - C implementation 
+   4. Major Memory leak fixes
+   5. Fixes to code generation with Java Tool
+   6. Many Bug Fixes
+ 
 TODOs Remaining for 1.0
-
    1. Complete API documentation and API improvements
-   2. Fix major memory leaks
-   3. Test codegen for both ADB and none cases
-   4. Put in place a comprehensive functional test framework
-   5. WSDL2C tool
-
+   2. Fix further memory leaks
+   3. Put in place a comprehensive functional test framework
 
+  
 We welcome your early feedback on this implementation.
 Thanks for your interest in Axis2C
 
 -- Apache Axis2C Team -- 
-

Modified: webservices/axis2/trunk/c/README
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/README?view=diff&rev=451312&r1=451311&r2=451312
==============================================================================
--- webservices/axis2/trunk/c/README (original)
+++ webservices/axis2/trunk/c/README Fri Sep 29 07:38:06 2006
@@ -1,4 +1,3 @@
-
                           Apache Axis2/C
 
   What is it?
@@ -64,8 +63,26 @@
        subscribe to the `axis-c-dev@ws.apache.org' mailing list as described at
        http://ws.apache.org/axis2/c/mail-lists.html
 
-  Acknowledgments
+  Acknowledgements
   ----------------
 
   Apache Axis2/C relies heavily on the use of autoconf and libtool to provide
   a build environment.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Modified: webservices/axis2/trunk/c/axiom/include/axiom_soap_fault_reason.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axiom_soap_fault_reason.h?view=diff&rev=451312&r1=451311&r2=451312
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axiom_soap_fault_reason.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axiom_soap_fault_reason.h Fri Sep 29 07:38:06 2006
@@ -132,3 +132,4 @@
 #endif
 
 #endif /* AXIOM_SOAP_FAULT_REASON_H */
+

Modified: webservices/axis2/trunk/c/guththila/src/guththila_writer.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/guththila/src/guththila_writer.c?view=diff&rev=451312&r1=451311&r2=451312
==============================================================================
--- webservices/axis2/trunk/c/guththila/src/guththila_writer.c (original)
+++ webservices/axis2/trunk/c/guththila/src/guththila_writer.c Fri Sep 29 07:38:06 2006
@@ -108,3 +108,10 @@
     else
         return (char *)NULL;
 }
+
+
+
+
+
+
+

Modified: webservices/axis2/trunk/c/modules/core/clientapi/op_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/op_client.c?view=diff&rev=451312&r1=451311&r2=451312
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/op_client.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/op_client.c Fri Sep 29 07:38:06 2006
@@ -723,3 +723,18 @@
     AXIS2_INTF_TO_IMPL(op_client)->callback_recv = callback_recv;
     return AXIS2_SUCCESS;
 }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Modified: webservices/axis2/trunk/c/xdocs/download.html
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xdocs/download.html?view=diff&rev=451312&r1=451311&r2=451312
==============================================================================
--- webservices/axis2/trunk/c/xdocs/download.html (original)
+++ webservices/axis2/trunk/c/xdocs/download.html Fri Sep 29 07:38:06 2006
@@ -28,53 +28,98 @@
     </tr>
 
    <tr>
-      <td align="center" valign="middle">0.93</td>
+      <td align="center" valign="middle">0.94</td>
       <td align="center">Release</td>
       <td>MS Windows Distribution<br>
         - Binary Distribution <a
-        href="[preferred]/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip"
-        title="[preferred]/ws/axis2/0_93/axis2c-bin-0.93-win32.zip">zip</a>
+        href="[preferred]/ws/axis2/c/0_94/axis2c-bin-0.94-win32.zip"
+        title="[preferred]/ws/axis2/0_94/axis2c-bin-0.94-win32.zip">zip</a>
         <a
-        href="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip.md5"
-        title="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip.md5">MD5</a>
+        href="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-bin-0.94-win32.zip.md5"
+        title="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-bin-0.94-win32.zip.md5">MD5</a>
         <a
-        href="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip.asc"
-        title="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip.asc">PGP</a>
+        href="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-bin-0.94-win32.zip.asc"
+        title="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-bin-0.94-win32.zip.asc">PGP</a>
         <br>
         - Source Distribution <a
-        href="[preferred]/ws/axis2/c/0_93/axis2c-src-0.93.zip"
-        title="[preferred]/ws/axis2/c/0_93/axis2c-src-0.93.zip">zip</a> <a
-        href="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.zip.md5"
-        title="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.zip.md5">MD5</a>
+        href="[preferred]/ws/axis2/c/0_94/axis2c-src-0.94.zip"
+        title="[preferred]/ws/axis2/c/0_94/axis2c-src-0.94.zip">zip</a> <a
+        href="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-src-0.94.zip.md5"
+        title="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-src-0.94.zip.md5">MD5</a>
         <a
-        href="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.zip.asc"
-        title="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.zip.asc">PGP</a>
+        href="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-src-0.94.zip.asc"
+        title="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-src-0.94.zip.asc">PGP</a>
         <br>
         Linux Distribution <br>
         - Binary Distribution <a
-        href="[preferred]/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz"
-        title="[preferred]/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz">tar.gz</a>
+        href="[preferred]/ws/axis2/c/0_94/axis2c-bin-0.94-linux.tar.gz"
+        title="[preferred]/ws/axis2/c/0_94/axis2c-bin-0.94-linux.tar.gz">tar.gz</a>
         <a
-        href="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz.md5"
-        title="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz.md5">MD5</a>
+        href="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-bin-0.94-linux.tar.gz.md5"
+        title="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-bin-0.94-linux.tar.gz.md5">MD5</a>
         <a
-        href="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz.asc"
-        title="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz.asc">PGP</a>
+        href="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-bin-0.94-linux.tar.gz.asc"
+        title="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-bin-0.94-linux.tar.gz.asc">PGP</a>
         <br>
         - Source Distribution <a
-        href="[preferred]/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz"
-        title="[preferred]/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz">tar.gz</a>
+        href="[preferred]/ws/axis2/c/0_94/axis2c-src-0.94.tar.gz"
+        title="[preferred]/ws/axis2/c/0_94/axis2c-src-0.94.tar.gz">tar.gz</a>
         <a
-        href="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz.md5"
-        title="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz.md5">MD5</a>
+        href="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-src-0.94.tar.gz.md5"
+        title="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-src-0.94.tar.gz.md5">MD5</a>
         <a
-        href="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz.asc"
-        title="http://www.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz.asc">PGP</a></td>
-      <td>31 - 08 - 2006</td>
-      <td>0.93 Release (Mirrored)</td>
+        href="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-src-0.94.tar.gz.asc"
+        title="http://www.apache.org/dist/ws/axis2/c/0_94/axis2c-src-0.94.tar.gz.asc">PGP</a></td>
+      <td>30 - 09 - 2006</td>
+      <td>0.94 Release (Mirrored)</td>
     </tr>
 
  <tr>
+      <td align="center" valign="middle">0.93</td>
+      <td align="center">Release</td>
+      <td>MS Windows Distribution<br>
+        - Binary Distribution <a
+        href="http://archive.apache.org/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip"
+        title="http://archive.apache.org/ws/axis2/0_93/axis2c-bin-0.93-win32.zip">zip</a>
+        <a
+        href="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip.md5"
+        title="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip.md5">MD5</a>
+        <a
+        href="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip.asc"
+        title="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-win32.zip.asc">PGP</a>
+        <br>
+        - Source Distribution <a
+        href="http://archive.apache.org/ws/axis2/c/0_93/axis2c-src-0.93.zip"
+        title="http://archive.apache.org/ws/axis2/c/0_93/axis2c-src-0.93.zip">zip</a> <a
+        href="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.zip.md5"
+        title="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.zip.md5">MD5</a>
+        <a
+        href="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.zip.asc"
+        title="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.zip.asc">PGP</a>
+        <br>
+        Linux Distribution <br>
+        - Binary Distribution <a
+        href="http://archive.apache.org/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz"
+        title="http://archive.apache.org/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz">tar.gz</a>
+        <a
+        href="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz.md5"
+        title="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz.md5">MD5</a>
+        <a
+        href="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz.asc"
+        title="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-bin-0.93-linux.tar.gz.asc">PGP</a>
+        <br>
+        - Source Distribution <a
+        href="http://archive.apache.org/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz"
+        title="http://archive.apache.org/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz">tar.gz</a>
+        <a
+        href="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz.md5"
+        title="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz.md5">MD5</a>
+        <a
+        href="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz.asc"
+        title="http://archive.apache.org/dist/ws/axis2/c/0_93/axis2c-src-0.93.tar.gz.asc">PGP</a></td>
+      <td>31 - 08 - 2006</td>
+      <td>0.93 Release (Archived)</td>
+    </tr>
       <td align="center" valign="middle">0.92</td>
       <td align="center">Release</td>
       <td>MS Windows Distribution<br>

Modified: webservices/axis2/trunk/c/xdocs/index.html
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xdocs/index.html?view=diff&rev=451312&r1=451311&r2=451312
==============================================================================
--- webservices/axis2/trunk/c/xdocs/index.html (original)
+++ webservices/axis2/trunk/c/xdocs/index.html Fri Sep 29 07:38:06 2006
@@ -26,6 +26,62 @@
 
 <h2>Latest Release</h2>
 
+<h3>30st October 2006 Axis2/C Version 0.94 Released</h3>
+<a href="download.cgi">Download 0.94</a>
+
+<h4>Key Features</h4>
+<ol>
+   <li> AXIOM, an XML object model optimized for SOAP 1.1/1.2 Messages. This has complete XML infoset support</li>
+   <li> Support for one-way messaging (In-Only) and request response messaging (In-Out)</li>
+   <li> Description hierarchy (configuration, service groups, services, operations and messages)</li>
+   <li> Directory based deployment model</li>
+   <li> Archive based deployment model</li>
+   <li> Context hierarchy (corresponding contexts to map to each level of description hierarchy)</li>
+   <li> Raw XML message receiver</li>
+   <li> Module architecture, mechanism to extend the SOAP processing model</li>
+   <li> Module version support</li>
+   <li> Transports supports: HTTP</li>
+       <ul>
+        <li> Both simple axis server and Apache2 httpd module for server side </li>
+        <li> Client transport with ability to enable SSL support</li>
+       </ul>
+   <li> Service client and operation client APIs</li>
+   <li> REST support (HTTP POST case)</li>
+   <li> WS-Addressing, both the submission (2004/08) and final (2005/08) versions</li>
+   <li> MTOM/XOP support</li>
+   <li> Code generation tool for stub and skeleton generation for a given WSDL (based on Java tool)</li>
+        <ul>
+          <li> Axis Data Binding (ADB) support</li>
+         </ul>
+   <li> Security module with UsernameToken support</li>
+   <li> REST support (HTTP GET case)</li>
+   <li> Dynamic invocation support (based on XML schema and WSDL
+   implementations)</li>
+   <li>Guththila pull parser support - <strong>New</strong></li>
+   <li> WSDL2C code generation tool- with schema code generation
+ (experimental) - <strong>New</New></li>
+   <li> TCP Monitor - C implementation (experimental)<strong>New</strong></li>
+  </ol>
+
+<h4>Major Changes Since Last Release</h4>
+<ol>
+   <li>Guththila pull parser support</li>
+   <li>WSDL2C code generation tool</li>
+   <li>TCP Monitor - C implementation</li>
+   <li>Major Memory leak fixes</li>
+   <li>Fixes to code generation with Java Tool</li>
+   <li>Many Bug Fixes</li>
+
+</ol>
+<h4>TODOs Remaining for 1.0</h4>
+<ol>
+   <li>Complete API documentation and API improvements</li>
+   <li>Fix further memory leaks</li>
+   <li> Put in place a comprehensive functional test framework</li>
+</ol>
+
+<h2>Archived News</h2>
+
 <h3>31st August 2006 Axis2/C Version 0.93 Released</h3>
 <a href="download.cgi">Download 0.93</a>
 
@@ -76,8 +132,6 @@
    <li> Put in place a comprehensive functional test framework</li>
    <li> WSDL2C tool</li>
 </ol>
-
-<h2>Archived News</h2>
 
 <h3>16th June 2006 Axis2/C Version 0.92 Released</h3>
 <a href="download.cgi">Download 0.92</a>



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