Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 46651 invoked from network); 25 Aug 2008 18:11:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Aug 2008 18:11:40 -0000 Received: (qmail 46570 invoked by uid 500); 25 Aug 2008 18:11:38 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 46461 invoked by uid 500); 25 Aug 2008 18:11:37 -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 46452 invoked by uid 500); 25 Aug 2008 18:11:37 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 46449 invoked by uid 99); 25 Aug 2008 18:11:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Aug 2008 11:11:37 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Aug 2008 18:10:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6A6652388A51; Mon, 25 Aug 2008 11:10:13 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r688807 [5/17] - in /webservices/axis2/site/1_4_1: ./ adb/ adb/images/ images/ images/archi-guide/ images/userguide/ jibx/ src/ Date: Mon, 25 Aug 2008 18:10:09 -0000 To: axis2-cvs@ws.apache.org From: nandana@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080825181013.6A6652388A51@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: webservices/axis2/site/1_4_1/http-transport.html URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/http-transport.html?rev=688807&view=auto ============================================================================== --- webservices/axis2/site/1_4_1/http-transport.html (added) +++ webservices/axis2/site/1_4_1/http-transport.html Mon Aug 25 11:10:04 2008 @@ -0,0 +1,540 @@ + + + + + + + + + + + + + + + Apache Axis2 - + + + + + + + +
+ +
+
+
+ HTTP transports

HTTP Transport

This document covers the sending and receiving of SOAP messages with Axis2 using HTTP +as the transport mechanism.

+

Contents

+

CommonsHTTPTransportSender

CommonsHTTPTransportSender is the transport sender that is used by default in both +the Server and Client APIs. As its name implies, it is based on commons-httpclient-3.0.1. +For maximum flexibility, this sender supports both the HTTP GET and POST interfaces. +(REST in Axis2 also supports both interfaces.)

+

Commons HttpClient also provides HTTP 1.1, Chunking and KeepAlive support for Axis2.

+

The <transportSender/> element defines transport senders in +the axis2.xml configuration file as follows:

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

The above code snippet shows the simplest configuration of a transport +sender for common use. The <parameter/> element is used to specify additional +constraints that the sender should comply with. The HTTP PROTOCOL parameter +should be set as HTTP/1.0 or HTTP/1.1. The default version is HTTP/1.1. Note that +chunking support is available only for HTTP/1.1. Thus, even if "chunked" is specified +as a parameter, if the HTTP version is 1.0, this setting will be +ignored by the transport framework. Also, KeepAlive is enabled by default in +HTTP/1.1.

+

If you use HTTP1.1 for its Keep-Alive ability, but you need to disable +chunking at runtime (some servers don't allow chunked requests to +prevent denial of service), you can do so in the Stub: +

+
+options.setProperty(HTTPConstants.CHUNKED, "false");
+

Some absolute properties are provided at runtime instead. For example, character +encoding style (UTF-8, UTF-16, etc.) is provided via MessageContext.

+

HTTPS support

+CommonsHTTPTransportSender can be also used to communicate over https. + +
+   <transportSender name="https" class="org.apache.axis2.transport.http.CommonsHTTPTransportSender">
+      <parameter name="PROTOCOL">HTTP/1.1</parameter>
+      <parameter name="Transfer-Encoding">chunked</parameter>
+   </transportSender>
+

Please note that by default HTTPS works only when the server does not +expect to authenticate the clients (1-way SSL only) and where the +server has the clients' public keys in its trust store. + +If you want to perform SSL client authentication (2-way SSL), you may +use the Protocol.registerProtocol feature of HttpClient. You can +overwrite the "https" protocol, or use a different protocol for your +SSL client authentication communications if you don't want to mess +with regular https. Find more information at +http://jakarta.apache.org/commons/httpclient/sslguide.html

+

Timeout Configuration

Two timeout instances exist in the transport level, Socket timeout +and Connection timeout. These can be configured either at deployment +or run time. If configuring at deployment time, the user has to add the +following lines in axis2.xml.

+

For Socket timeout:

+
<parameter name="SO_TIMEOUT">some_integer_value</parameter>

For Connection timeout:

+
 <parameter name="CONNECTION_TIMEOUT">some_integer_value</parameter>

+ + +For runtime configuration, it can be set as follows within the client stub:
+...
+Options options = new Options();
+options.setProperty(HTTPConstants.SO_TIMEOUT, new Integer(timeOutInMilliSeconds));
+options.setProperty(HTTPConstants.CONNECTION_TIMEOUT, new Integer(timeOutInMilliSeconds));
+
+// or
+options.setTimeOutInMilliSeconds(timeOutInMilliSeconds);
+...
+
+
+

HTTP Version Configuration

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

+
  • By defining the version in axis2.xml as shown below. +
     <parameter name="PROTOCOL">HTTP/1.0</parameter>
  • +
  • By changing the version at runtime by using code similar to the following: +
    +...
    +options.setProperty(org.apache.axis2.context.MessageContextConstants.HTTP_PROTOCOL_VERSION,
    +   org.apache.axis2.transport.http.HTTPConstants.HEADER_PROTOCOL_10);
    +...
    +
  • +
+

Proxy Authentication

The Commons-http client has built-in support for proxy +authentication. Axis2 uses deployment time and runtime mechanisms to +authenticate proxies. At deployment time, the user has to change the +axis2.xml as follows. This authentication is available for both HTTP and +HTTPS.

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

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

+

Prior shown configuration has been deprecated after Axis2 1.2 release and we strongly recommend using the new +proxy configuration as below.

+

+ New proxy configuration would require the user to add a TOP level parameter in the axis2.xml named "Proxy". +

+
+        <parameter name="Proxy">
+             <Configuration>
+                      <ProxyHost>example.org</ProxyHost>
+                      <ProxyPort>5678</ProxyPort>
+                      <ProxyUser>EXAMPLE\saminda</ProxyUser>
+                      <ProxyPassword>ppp</ProxyPassword>
+              </Configuration>
+</parameter>
+    

Thus, if its a open proxy, user can ignore ProxyUser and ProxyPassword elements.

+

In addition to this, if you don't want to go through writing the above parameter you could + use Java Networking Properties for open proxies, +-Dhttp.proxyHost=10.150.112.254 -Dhttp.proxyPort=8080

+

At runtime, the user can override the PROXY settings using the +HttpTransportProperties.ProxyProperties object. Within your client stub, +create an instance of this object, configure proxy values for it, +and then set it to the MessageContext's property bag via options.setProperty(). +For example:

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

The above code will override the deployment proxy configuration settings.

+

Basic, Digest and NTLM Authentication

HttpClient supports three different types of HTTP authentication schemes: +Basic, Digest and NTLM. Based on the challenge provided by the server, +HttpClient automatically selects the authentication scheme with which the +request should be authenticated. The most secure method is NTLM and the Basic +is the least secure.

+

NTLM is the most complex of the authentication protocols supported by +HttpClient. It requires an instance of NTCredentials to 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 way 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 to + which you are being connected. This can become troublesome as servers often + have multiple domain names that refer to them. Only the domain name that + the 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 as null, which + is its default value.
  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. Because of 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. +
+

Axis2 also allows adding a custom Authentication Scheme to HttpClient.

+

The static inner bean Authenticator of HttpTransportProperties will hold +the state of the server to be authenticated with. Once filled, it has to be +set to the Options's property bag with the key as HTTPConstants.AUTHENTICATE. +The following code snippet shows how to configure the transport +framework to use Basic Authentication:

+
+...
+Options options = new Options();
+ 
+HttpTransportProperties.Authenticator
+   auth = new HttpTransportProperties.Authenticator();
+auth.setUsername("username");
+auth.setPassword("password");
+// set if realm or domain is known
+
+options.setProperty(org.apache.axis2.transport.http.HTTPConstants.AUTHENTICATE, auth);
+...
+
+
+

Reusing the httpclient object

By default, a new httpclient object is created for each send. It may +be worthwhile to reuse the same httpclient object to take advantage of +HTTP1.1 Keep-Alive, especially in HTTPS environment, where the SSL +handshake may not be of negligible cost. To reuse the same httpclient +object, you can set the relevant property in the Stub: +

+
+            options.setProperty(HTTPConstants.REUSE_HTTP_CLIENT, "true");
+        
+
+

Setting the cached httpclient object

+ +To control the max connections per host attempted in parallel by a +reused httpclient (this can be worthwhile as the default value is 2 +connections per host), or any other advanced parameters, you need to +set the cached httpclient object when your application starts up +(before any actual axis request). You can set the relevant property in +the Stub: + +
+MultiThreadedHttpConnectionManager conmgr = new
+MultiThreadedHttpConnectionManager();
+conmgr.getParams().setDefaultMaxConnectionsPerHost(10);
+HttpClient client = new HttpClient(conmgr);
+configurationContext.setProperty(HTTPConstants.CACHED_HTTP_CLIENT, client);
+
+
+ +
+
+
+
+
+ + + Added: webservices/axis2/site/1_4_1/images/Architecture.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/Architecture.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/Architecture.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/AxisService.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/AxisService.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/AxisService.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/Component.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/Component.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/Component.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/JAXB_architecture.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/JAXB_architecture.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/JAXB_architecture.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM001.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM001.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM001.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM002.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM002.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM002.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM003.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM003.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM003.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM004.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM004.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM004.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM005.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM005.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM005.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM006.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM006.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM006.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM007.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM007.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM007.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM008.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM008.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM008.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/OM1.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/OM1.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/OM1.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/ServerSideFault.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/ServerSideFault.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/ServerSideFault.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/ServiceDesc.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/ServiceDesc.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/ServiceDesc.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/TotalArch.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/TotalArch.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/TotalArch.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/WomBuilder.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/WomBuilder.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/WomBuilder.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/activate.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/activate.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/activate.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/admin.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/admin.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/admin.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/adminlogin.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/adminlogin.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/adminlogin.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/adminmain.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/adminmain.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/adminmain.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/ant.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/ant.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/ant.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi-guide/CodegenArchitecture-new.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi-guide/CodegenArchitecture-new.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi-guide/CodegenArchitecture-new.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi-guide/CodegenArchitecture.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi-guide/CodegenArchitecture.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi-guide/CodegenArchitecture.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi-guide/all.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi-guide/all.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi-guide/all.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi-guide/big-picture.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi-guide/big-picture.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi-guide/big-picture.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi-guide/contexts.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi-guide/contexts.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi-guide/contexts.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi-guide/phases.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi-guide/phases.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi-guide/phases.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi-guide/soap-processing.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi-guide/soap-processing.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi-guide/soap-processing.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi-guide/soap.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi-guide/soap.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi-guide/soap.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi001.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi001.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi001.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi002.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi002.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi002.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi003.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi003.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi003.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi004.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi004.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi004.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi005.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi005.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi005.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi006.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi006.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi006.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi007.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi007.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi007.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi008.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi008.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi008.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi009.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi009.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi009.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi010.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi010.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi010.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi011.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi011.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi011.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi012.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi012.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi012.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi013.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi013.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi013.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi014.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi014.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi014.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi015.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi015.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi015.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi016.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi016.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi016.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi017.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi017.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi017.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi018.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi018.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi018.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi019.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi019.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi019.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi020.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi020.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi020.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi021.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi021.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi021.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi022.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi022.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi022.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi023.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi023.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi023.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi024.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi024.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi024.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi025.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi025.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi025.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/archi026.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/archi026.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/archi026.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/arrow_left.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/arrow_left.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/arrow_left.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/arrow_right.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/arrow_right.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/arrow_right.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/axis.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/axis.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/axis.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/ayncresult.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/ayncresult.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/ayncresult.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/call.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/call.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/call.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/callback.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/callback.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/callback.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/cases.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/cases.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/cases.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clientAPi.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clientAPi.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clientAPi.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clientside.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clientside.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clientside.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image002.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image002.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image002.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image004.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image004.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image004.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image006.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image006.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image006.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image008.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image008.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image008.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image010.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image010.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image010.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image012.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image012.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image012.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image014.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image014.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image014.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image016.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image016.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image016.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image018.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image018.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image018.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image020.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image020.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image020.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image022.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image022.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image022.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image024.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image024.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image024.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/clip_image026.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/clip_image026.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/clip_image026.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/codegen.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/codegen.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/codegen.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/correlator.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/correlator.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/correlator.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/deploymetncomponent.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/deploymetncomponent.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/deploymetncomponent.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/editserviecpara.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/editserviecpara.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/editserviecpara.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/engine1.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/engine1.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/engine1.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/faultmsg.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/faultmsg.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/faultmsg.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/faultservice.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/faultservice.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/faultservice.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/fig01.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/fig01.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/fig01.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/fig02.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/fig02.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/fig02.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/fig03.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/fig03.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/fig03.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/fig04.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/fig04.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/fig04.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/fig05.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/fig05.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/fig05.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/fig06.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/fig06.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/fig06.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/globalchain.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/globalchain.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/globalchain.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/happyaxis.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/happyaxis.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/happyaxis.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image001.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image001.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image001.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image002.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image002.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image002.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image003.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image003.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image003.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image004.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image004.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image004.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image005.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image005.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image005.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image005.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image005.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image005.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image006.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image006.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image006.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image007.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image007.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image007.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image008.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image008.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image008.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image009.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image009.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image009.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image010.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image010.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image010.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image011.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image011.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image011.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image012.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image012.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image012.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/image013.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/image013.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/image013.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/inactivate.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/inactivate.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/inactivate.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/module.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/module.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/module.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/moduleengage.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/moduleengage.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/moduleengage.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/modules.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/modules.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/modules.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/new.gif URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/new.gif?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/new.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/om2.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/om2.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/om2.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/om3.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/om3.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/om3.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/parameters.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/parameters.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/parameters.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/select_service_for_handler.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/select_service_for_handler.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/select_service_for_handler.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/send.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/send.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/send.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/sendAsync.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/sendAsync.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/sendAsync.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/sendRecievce.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/sendRecievce.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/sendRecievce.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/sendRecieveAsync.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/sendRecieveAsync.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/sendRecieveAsync.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/sendRecieveWithListnere.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/sendRecieveWithListnere.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/sendRecieveWithListnere.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/serverSide.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/serverSide.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/serverSide.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/service.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/service.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/service.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/serviceHandlers.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/serviceHandlers.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/serviceHandlers.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/servicegroups.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/servicegroups.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/servicegroups.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/userguide/DirectoryStructure.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/userguide/DirectoryStructure.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/userguide/DirectoryStructure.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/userguide/ModuleView.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/userguide/ModuleView.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/userguide/ModuleView.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/userguide/MyServiceDeployed.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/userguide/MyServiceDeployed.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/userguide/MyServiceDeployed.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/userguide/ServiceDeployed.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/userguide/ServiceDeployed.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/userguide/ServiceDeployed.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/userguide/ServiceItems.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/userguide/ServiceItems.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/userguide/ServiceItems.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/userguide/TestClient.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/userguide/TestClient.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/userguide/TestClient.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/userguide/http-get-ws.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/userguide/http-get-ws.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/userguide/http-get-ws.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/viewphases.jpg URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/viewphases.jpg?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/viewphases.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: webservices/axis2/site/1_4_1/images/wom.png URL: http://svn.apache.org/viewvc/webservices/axis2/site/1_4_1/images/wom.png?rev=688807&view=auto ============================================================================== Binary file - no diff available. Propchange: webservices/axis2/site/1_4_1/images/wom.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream