You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by bu...@apache.org on 2012/12/31 17:28:01 UTC

svn commit: r844426 - in /websites/staging/ode/trunk/content: ./ endpoint-configuration.html

Author: buildbot
Date: Mon Dec 31 16:28:01 2012
New Revision: 844426

Log:
Staging update by buildbot for ode

Modified:
    websites/staging/ode/trunk/content/   (props changed)
    websites/staging/ode/trunk/content/endpoint-configuration.html

Propchange: websites/staging/ode/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Dec 31 16:28:01 2012
@@ -1 +1 @@
-1427162
+1427166

Modified: websites/staging/ode/trunk/content/endpoint-configuration.html
==============================================================================
--- websites/staging/ode/trunk/content/endpoint-configuration.html (original)
+++ websites/staging/ode/trunk/content/endpoint-configuration.html Mon Dec 31 16:28:01 2012
@@ -202,20 +202,63 @@ Tables below sum up this information.</p
 <p><a name="EndpointConfiguration-SOAPServices(Axis2)"></a></p>
 <h4 id="soap-services-axis2">SOAP Services (Axis2)</h4>
 <p>For Axis2, all properties are converted to meet the <a href="http://ws.apache.org/axis2/1_3/api/org/apache/axis2/client/options.html#setproperty(java.lang.string,%20java.lang.object).html">Options#setProperty() </a> requirements.</p>
-<table>
-<tr><th> Property name </th><th> Axis2 </th><th> Description/Notes </th></tr>
- | http.request.chunk | Options.setProperty(HTTPConstants.CHUNKED, ?) | |
- | http.protocol.version | Options.setProperty(HTTPConstants.HTTP_PROTOCOL_VERSION, ?)| |
- | http.request.gzip | Options.setProperty(HTTPConstants.MC_GZIP_REQUEST, ?) | |
- | http.accept.gzip | Options.setProperty(HTTPConstants.MC_ACCEPT_GZIP, ?)| |
- | http.protocol.content-charset| Options.setProperty(Constants.Configuration.CHARACTER_SET_ENCODING,?) | |
- | http.default-headers.* | Options.setProperty(HTTPConstants.HTTP_HEADERS, ?) | |
- | http.connection.timeout | Options.setProperty(HTTPConstants.CONNECTION_TIMEOUT, ?)| |
- | http.socket.timeout | Options.setProperty(HTTPConstants.SO_TIMEOUT, ?)| |
- | http.protocol.max-redirects | | not applied to Axis2 services |
- | http.proxy.* | Options.setProperty(HTTPConstants.PROXY, ?); | |
- | jms.reply.destination | Options.setProperty(JMSConstants.REPLY_PARAM, ?); | |
- | jms.reply.timeout| Options.setProperty(JMSConstants.JMS_WAIT_REPLY, ?); | |
+<table class="table table-bordered table-striped">
+    <thead>
+        <tr>
+            <th>Property name</th>
+            <th> Axis2 </th><th> Description/Notes</th>
+        </tr>
+    </thead>
+    <tbody>
+        <tr>
+            <td>http.request.chunk</td>
+            <td><code>Options.setProperty(HTTPConstants.CHUNKED, ?)</code></td>
+        </tr>
+        <tr>
+            <td>http.protocol.version</td>
+            <td><code>Options.setProperty(HTTPConstants.HTTP_PROTOCOL_VERSION, ?)</code></td>
+        </tr>
+        <tr>
+            <td>http.request.gzip</td>
+            <td><code>Options.setProperty(HTTPConstants.MC_GZIP_REQUEST, ?)</code></td>
+        </tr>
+        <tr>
+            <td>http.accept.gzip</td>
+            <td><code>Options.setProperty(HTTPConstants.MC_ACCEPT_GZIP, ?)</code></td>
+        </tr>
+        <tr>
+            <td>http.protocol.content-charset</td>
+            <td><code>Options.setProperty(Constants.Configuration.CHARACTER_SET_ENCODING,?)</code></td>
+        </tr>
+        <tr>
+            <td>http.default-headers.*</td>
+            <td><code>Options.setProperty(HTTPConstants.HTTP_HEADERS, ?)</code></td>
+        </tr>
+        <tr>
+            <td>http.connection.timeout</td>
+            <td><code>Options.setProperty(HTTPConstants.CONNECTION_TIMEOUT, ?)</code></td>
+        </tr>
+        <tr>
+            <td>http.socket.timeout</td>
+            <td><code>Options.setProperty(HTTPConstants.SO_TIMEOUT, ?)</code></td>
+        </tr>
+        <tr>
+            <td>http.protocol.max-redirects</td>
+            <td>not applied to Axis2 service</td>
+        </tr>
+        <tr>
+            <td>http.proxy.*</td>
+            <td><code>Options.setProperty(HTTPConstants.PROXY, ?)</code></td>
+        </tr>
+        <tr>
+            <td>jms.reply.destination</td>
+            <td><code>Options.setProperty(JMSConstants.REPLY_PARAM, ?)</code></td>
+        </tr>
+        <tr>
+            <td>jms.reply.timeout</td>
+            <td><code>Options.setProperty(JMSConstants.JMS_WAIT_REPLY, ?)</code></td>
+        </tr>
+    </tbody>
 </table>
 
 <p><a name="EndpointConfiguration-HTTPServices(HttpClient)"></a></p>
@@ -223,17 +266,69 @@ Tables below sum up this information.</p
 <p>For HttpClient, all properties are defined by: <a href="http://hc.apache.org/httpclient-3.x/apidocs/org/apache/commons/httpclient/params/httpmethodparams.html.html">HttpMethodParams </a>, HostParams, HttpClientParams, HttpConnectionParams and HttpConnectionManagerParams.
 The idea is to convert properties into the expected type and push them in a <a href="http://hc.apache.org/httpclient-3.x/apidocs/org/apache/commons/httpclient/params/defaulthttpparams.html.html"><code>DefaultHttpParams</code> </a>. This property holder is then set as the parent of all other <code>HttpParams</code> used.
 If a given property is not listed below, you are still able to set it as long as the expected value is a string. For instance <a href="http://hc.apache.org/httpclient-3.x/apidocs/org/apache/commons/httpclient/params/HttpMethodParams.html#COOKIE_POLICY">"http.protocol.cookie-policy"</a> can be set seamlessly.</p>
-<p>|| Property name || HttpClient|| Description/Notes ||
- | http.request.chunk | EntityEnclosingMethod.setContentChunked() | |
- | http.protocol.version | HttpParams.setParameter(HttpMethodParams.PROTOCOL_VERSION, ?)| |
- | http.request.gzip |  | <em>not supported</em> |
- | http.accept.gzip |  | <em>not supported</em> |
- | http.protocol.content-charset| HttpParams.setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,?) | |
- | http.default-headers.<em> | HttpParams.setParameter(HTTPConstants.HTTP_HEADERS, ?) | |
- | http.connection.timeout | HttpParams.setParameter(HttpConnectionParams.CONNECTION_TIMEOUT, ?)| |
- | http.socket.timeout | HttpParams.setParameter(HttpMethodParams.SO_TIMEOUT, ?)| |
- | http.protocol.max-redirects | HttpParams.setParameter(HttpClientParams.MAX_REDIRECTS, ?)| |
- | http.proxy.</em> |  | Cannot be set with simple properties. Custom code added. |</p>
+<table class="table table-bordered table-striped">
+    <thead>
+        <tr>
+            <th>Property name</th>
+            <th>HttpClient</th>
+            <th>Description/Notes</th>
+        </tr>
+    </thead>
+    <tbody>
+        <tr>
+            <td>http.request.chunk</td>
+            <td>EntityEnclosingMethod.setContentChunked()</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>http.protocol.version</td>
+            <td>HttpParams.setParameter(HttpMethodParams.PROTOCOL_VERSION, ?)</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>http.request.gzip</td>
+            <td></td>
+            <td><em>not supported</em></td>
+        </tr>
+        <tr>
+            <td>http.accept.gzip</td>
+            <td></td>
+            <td><em>not supported</em></td>
+        </tr>
+        <tr>
+            <td>http.protocol.content-charset</td>
+            <td>HttpParams.setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,?)</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>http.default-headers.*</td>
+            <td>HttpParams.setParameter(HTTPConstants.HTTP_HEADERS, ?)</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>http.connection.timeout</td>
+            <td>HttpParams.setParameter(HttpConnectionParams.CONNECTION_TIMEOUT, ?)</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>http.socket.timeout</td>
+            <td>HttpParams.setParameter(HttpMethodParams.SO_TIMEOUT, ?)</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>http.protocol.max-redirects</td>
+            <td>HttpParams.setParameter(HttpClientParams.MAX_REDIRECTS, ?)</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>http.proxy.*</td>
+            <td></td>
+            <td>Cannot be set with simple properties. Custom code added.</td>
+        </tr>
+
+    </tbody>
+</table>
+
 <p><a name="EndpointConfiguration-AdditionalConfigurationforSOAPEndpoints"></a></p>
 <h2 id="additional-configuration-for-soap-endpoints">Additional Configuration for SOAP Endpoints</h2>
 <p>If you deploy ODE in an application server, the <a href="/developerguide/architectural-overview#odeintegrationlayers.html">Axis2 Integration Layer</a> allows ODE to communicate via Web Service interactions. SOAP Web Services will be managed by Axis2. These web services may be configured dynamically.