Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 96576 invoked from network); 23 Mar 2006 07:39:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 23 Mar 2006 07:39:31 -0000 Received: (qmail 43815 invoked by uid 500); 23 Mar 2006 07:39:23 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 43400 invoked by uid 500); 23 Mar 2006 07:39:21 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 43371 invoked by uid 500); 23 Mar 2006 07:39:20 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 43352 invoked by uid 99); 23 Mar 2006 07:39:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2006 23:39:20 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 22 Mar 2006 23:39:12 -0800 Received: (qmail 95692 invoked by uid 65534); 23 Mar 2006 07:38:51 -0000 Message-ID: <20060323073851.95691.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r388085 [3/6] - in /webservices/axis2/trunk/java/xdocs/latest: ./ adb/ adb/images/ images/ images/archi-guide/ images/tools/ images/tools/service/ images/tools/wsdl/ images/userguide/ resources/ resources/schemas/ sec-conf/ Date: Thu, 23 Mar 2006 07:38:40 -0000 To: axis2-cvs@ws.apache.org From: chatra@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Added: webservices/axis2/trunk/java/xdocs/latest/http-transport.html URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/http-transport.html?rev=388085&view=auto ============================================================================== --- webservices/axis2/trunk/java/xdocs/latest/http-transport.html (added) +++ webservices/axis2/trunk/java/xdocs/latest/http-transport.html Wed Mar 22 23:38:30 2006 @@ -0,0 +1,149 @@ + + + + + HTTP transports + + + + +

HTTP transports

+ +

CommonsHTTPTransportSender

+ +

This is the default transport sender that is used in Server API as well as +Client API. As the name implies it is based on commons-httpclient-3.0-rc3. In +order to acquire the maximum flexibility, this sender has implemented POST +interface and GET interface. GET interface is provided to help axis2 support +REST.

+ +

Chunking support and KeepAlive support is also integrated via the +facilities provided by commons-httpclient along with HTTP 1.1 support.

+ +

<transportSender/> element is used to define transport senders in +the axis2.xml as follows:

+
<transportSender name="http" class="org.apache.axis2.transport.http.CommonsHTTPTransportSender">
<parameter name="PROTOCOL" locked="false">HTTP/1.1</parameter>
<parameter name="Transfer-Encoding">chunked</parameter>
</transportSender>
+ +

Above code snippet shows the complete configuration of the transport +sender. <parameter/> element introduces the additional parameters that +should be compliant with the sender. HTTP PROTOCOL version sets as HTTP/1.0 +or HTTP/1.1. Default version is HTTP/1.1. It should be noted that chunking +support is available only for HTTP/1.1. Thus, the user should be careful in +setting the "chunked" property and use it only with version 1.1. KeepAlive +property is default in version 1.1.

+ +

These are the only parameters that are available from deployment. Other +parameters such as character encoding style (UTF-8, UTF-16 etc) etc, are +provided via MessageContext.

+ +

HTTPS support

+It should be noted that CommonsHTTPTransportSender can be used to communicate +over https. +
<transportSender name="https" class="org.apache.axis2.transport.http.CommonsHTTPTransportSender">
<parameter name="PROTOCOL" locked="false">HTTP/1.1</parameter>
<parameter name="Transfer-Encoding">chunked</parameter>
</transportSender>
+Please note that https works only when the server does not expect to +authenticate the clients and where the server has the clients' public keys in +its trust store. + +

Timeout Configuration

+ +

There are two timeout exists in transport level. They are called, Socket +timeout and Connection timeout. This can be configured in deployment time or +in run time. In deployment time, user has to add the following lines in +axis2.xml.

+ +

For Socket timeout:

+
<parameter name="SO_TIMEOUT" locked="false">some_int_value</parameter>
+ +

For Connection timeout:

+
 <parameter name="CONNECTION_TIMEOUT" locked="false">some_int_value</parameter>
+
+In runtime it's set as follows in the Stub. +
...
+Options options = new Options();
+options.setProperty(HTTPConstants.SO_TIMEOUT,new Integer(some_int_value));
+options.setProperty(HTTPConstants.CONNECTION_TIMEOUT,new Integer(some_int_value));
+...
+ +

+ +

HTTP Version Configuration

+

The default HTTP version is 1.1. There are two methods in which user can change HTTP version to 1.0

+
    +
  1. By defining version in Axis2.xml as shown below.
  2. +
     <parameter name="PROTOCOL" locked="false">HTTP/1.0</parameter>
    + +
  3. Or user can change version at runtime by doing the following
  4. +
    ...
    +options.setProperty(org.apache.axis2.context.MessageContextConstants.HTTP_PROTOCOL_VERSION,org.apache.axis2.transport.http.HTTPConstants.HEADER_PROTOCOL_10);
    +...
    +
+ +

Proxy and NTLM Authentication

+ +

HttpClient support "Basic, Digest and NTLM" authentication schemes. These +are used to authenticate with http servers and proxies.

+ +

Axis2 uses deployment time and runtime mechanisms to authenticate proxies. +In deployment time, user has to change the Axis2.xml as follows. This +authentication will be available in http and https.

+
<transportSender name="http" class="org.apache.axis2.transport.http.CommonsHTTPTransportSender">
+        <parameter name="PROTOCOL" locked="false">HTTP/1.1</parameter>
+        <parameter name="PROXY" proxy_host="proxy_host_name" proxy_port="proxy_host_port" locked="true>userName:domain:passWord</parameter>
+</transportSender>
+ +

For a particular proxy, if authentication is not available fill +"userName:domain:passWord"as "anonymous:anonymous:anonymous".

+ +

At runtime user can override the PROXY settings with an Object of +HttpTransportProperties.ProxyProperties. On the stub initiate an object of +prior and set it to the MessageContext's property bag via +HttpConstants.PROXY. On the stub, it depicts as follows,

+
...
+Options options = new Options();
+....
+
+HttpTransportProperties.ProxyProperties proxyProperties = new HttpTransportProperties.new ProxyProperties();
+proxyProperties.setProxyHostName(....);
+proxyProperties.setProxyPort(...);
+...
+options.setProperty(HttpConstants.PROXY, proxyProperties);
+....
+ +

The above code would eventually override the deployment proxy +configuration settings.

+ +

NTLM is the most complex of the authentication protocols supported by +HttpClient. It requires an instance of NTCredentials be available for the +domain name of the server or the default credentials. Note that since NTLM +does not use the notion of realms HttpClient uses the domain name of the +server as the name of the realm. Also note that the username provided to the +NTCredentials should not be prefixed with the domain - ie: "axis2" is correct +whereas "DOMAIN\axis2" is not correct.

+ +

There are some significant differences in the way that NTLM works compared +with basic and digest authentication. These differences are generally handled +by HttpClient, however having an understanding of these differences can help +avoid problems when using NTLM authentication.

+
    +
  1. NTLM authentication works almost exactly the same as any other form of + authentication in terms of the HttpClient API. The only difference is + that you need to supply 'NTCredentials' instead of + 'UsernamePasswordCredentials' (NTCredentials actually extends + UsernamePasswordCredentials so you can use NTCredentials right throughout + your application if need be).
  2. +
  3. The realm for NTLM authentication is the domain name of the computer + being connected to, this can be troublesome as servers often have + multiple domain names that refer to them. Only the domain name that + HttpClient connects to (as specified by the HostConfiguration) is used to + look up the credentials. It is generally advised that while initially + testing NTLM authentication, you pass the realm in as null which is used + as the default.
  4. +
  5. NTLM authenticates a connection and not a request, so you need to + authenticate every time a new connection is made and keeping the + connection open during authentication is vital. Due to this, NTLM cannot + be used to authenticate with both a proxy and the server, nor can NTLM be + used with HTTP 1.0 connections or servers that do not support HTTP + keep-alives.
  6. +
+ + Added: webservices/axis2/trunk/java/xdocs/latest/images/Architecture.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/Architecture.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/Architecture.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/AxisService.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/AxisService.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/AxisService.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/Component.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/Component.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/Component.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM001.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM001.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM001.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM002.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM002.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM002.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM003.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM003.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM003.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM004.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM004.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM004.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM005.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM005.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM005.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM006.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM006.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM006.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM007.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM007.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM007.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM008.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM008.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM008.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/OM1.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/OM1.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/OM1.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/ServerSideFault.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/ServerSideFault.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/ServerSideFault.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/ServiceDesc.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/ServiceDesc.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/ServiceDesc.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/TotalArch.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/TotalArch.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/TotalArch.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/WomBuilder.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/WomBuilder.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/WomBuilder.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/activate.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/activate.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/activate.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/admin.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/admin.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/admin.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/adminlogin.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/adminlogin.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/adminlogin.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/adminmain.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/adminmain.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/adminmain.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/ant.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/ant.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/ant.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/CodegenArchitecture.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/CodegenArchitecture.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/CodegenArchitecture.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/all.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/all.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/all.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/big-picture.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/big-picture.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/big-picture.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/contexts.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/contexts.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/contexts.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/phases.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/phases.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/phases.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/soap-processing.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/soap-processing.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/soap-processing.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/soap.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/soap.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi-guide/soap.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi001.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi001.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi001.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi002.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi002.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi002.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi003.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi003.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi003.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi004.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi004.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi004.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi005.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi005.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi005.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi006.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi006.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi006.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi007.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi007.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi007.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi008.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi008.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi008.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi009.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi009.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi009.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi010.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi010.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi010.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi011.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi011.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi011.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi012.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi012.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi012.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi013.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi013.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi013.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi014.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi014.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi014.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi015.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi015.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi015.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi016.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi016.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi016.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi017.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi017.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi017.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi018.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi018.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi018.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi019.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi019.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi019.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi020.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi020.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi020.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi021.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi021.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi021.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi022.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi022.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi022.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi023.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi023.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi023.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi024.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi024.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi024.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi025.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi025.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi025.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/archi026.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/archi026.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/archi026.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/arrow_left.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/arrow_left.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/arrow_left.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/arrow_right.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/arrow_right.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/arrow_right.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/axis.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/axis.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/axis.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/ayncresult.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/ayncresult.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/ayncresult.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/call.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/call.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/call.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/callback.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/callback.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/callback.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/cases.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/cases.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/cases.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clientAPi.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clientAPi.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clientAPi.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clientside.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clientside.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clientside.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image002.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image002.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image002.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image004.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image004.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image004.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image006.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image006.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image006.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image008.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image008.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image008.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image010.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image010.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image010.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image012.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image012.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image012.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image014.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image014.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image014.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image016.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image016.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image016.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image018.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image018.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image018.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image020.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image020.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image020.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image022.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image022.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image022.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image024.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image024.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image024.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/clip_image026.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/clip_image026.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/clip_image026.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/codegen.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/codegen.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/codegen.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/correlator.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/correlator.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/correlator.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/deploymetncomponent.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/deploymetncomponent.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/deploymetncomponent.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/editserviecpara.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/editserviecpara.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/editserviecpara.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/engine1.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/engine1.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/engine1.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/faultmsg.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/faultmsg.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/faultmsg.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/faultservice.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/faultservice.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/faultservice.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/globalchain.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/globalchain.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/globalchain.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/happyaxis.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/happyaxis.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/happyaxis.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image001.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image001.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image001.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image002.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image002.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image002.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image003.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image003.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image003.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image004.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image004.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image004.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image005.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image005.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image005.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image005.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image005.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image005.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image006.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image006.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image006.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image007.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image007.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image007.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image008.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image008.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image008.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image009.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image009.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image009.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image010.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image010.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image010.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image011.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image011.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image011.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image012.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image012.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image012.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/image013.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/image013.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/image013.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/inactivate.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/inactivate.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/inactivate.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/maven.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/maven.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/maven.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/module.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/module.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/module.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/moduleengage.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/moduleengage.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/moduleengage.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/modules.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/modules.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/modules.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/new.gif URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/new.gif?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/new.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/om2.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/om2.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/om2.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/om3.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/om3.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/om3.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/parameters.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/parameters.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/parameters.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/select_service_for_handler.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/select_service_for_handler.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/select_service_for_handler.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/send.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/send.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/send.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/sendAsync.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/sendAsync.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/sendAsync.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/sendRecievce.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/sendRecievce.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/sendRecievce.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/sendRecieveAsync.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/sendRecieveAsync.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/sendRecieveAsync.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/sendRecieveWithListnere.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/sendRecieveWithListnere.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/sendRecieveWithListnere.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/serverSide.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/serverSide.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/serverSide.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/service.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/service.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/service.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/serviceHandlers.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/serviceHandlers.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/serviceHandlers.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/servicegroups.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/servicegroups.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/servicegroups.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/ServicePage1.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/ServicePage1.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/ServicePage1.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/ServiceWizardSelection.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/ServiceWizardSelection.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/ServiceWizardSelection.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/help.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/help.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/help.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page2.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page2.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page2.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page3.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page3.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page3.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page3_hl.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page3_hl.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page3_hl.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_load.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_load.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_load.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_plain.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_plain.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_plain.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_search_declared.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_search_declared.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_search_declared.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_table.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_table.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page4_table.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_added.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_added.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_added.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_browsed.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_browsed.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_browsed.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_hl.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_hl.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_hl.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_remove.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_remove.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page5_remove.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page6.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page6.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/service_page6.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/success_msg.JPG URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/service/success_msg.JPG?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/service/success_msg.JPG ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/OptionsPage.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/OptionsPage.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/OptionsPage.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/OutputPage.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/OutputPage.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/OutputPage.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/WSDLSelectionPage.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/WSDLSelectionPage.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/WSDLSelectionPage.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/toolSelectionpage.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/toolSelectionpage.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/toolSelectionpage.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/wizardSelectionPage.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/wizardSelectionPage.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/tools/wsdl/wizardSelectionPage.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/userguide/DirectoryStructure.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/userguide/DirectoryStructure.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/userguide/DirectoryStructure.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/userguide/ModuleView.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/userguide/ModuleView.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/userguide/ModuleView.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/userguide/MyServiceDeployed.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/userguide/MyServiceDeployed.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/userguide/MyServiceDeployed.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/userguide/ServiceDeployed.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/userguide/ServiceDeployed.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/userguide/ServiceDeployed.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/userguide/ServiceItems.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/userguide/ServiceItems.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/userguide/ServiceItems.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/userguide/TestClient.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/userguide/TestClient.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/userguide/TestClient.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/userguide/http-get-ws.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/userguide/http-get-ws.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/userguide/http-get-ws.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/viewphases.jpg URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/viewphases.jpg?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/viewphases.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/images/wom.png URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/images/wom.png?rev=388085&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/trunk/java/xdocs/latest/images/wom.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/trunk/java/xdocs/latest/index.html URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/xdocs/latest/index.html?rev=388085&view=auto ============================================================================== --- webservices/axis2/trunk/java/xdocs/latest/index.html (added) +++ webservices/axis2/trunk/java/xdocs/latest/index.html Wed Mar 22 23:38:30 2006 @@ -0,0 +1,82 @@ + + + + + Axis2 0.95 Documentation + + + +

Axis2 version 0.95 Documentation

+

Getting Started with Axis2

+
+ +

Tools References

+ + +

Additional References

+ + +

Other Tutorials

+ +

Axis2

+ + +

AXIOM

+ + +