You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bu...@apache.org on 2017/03/30 13:47:38 UTC

svn commit: r1009381 - in /websites/production/cxf/content: cache/docs.pageCache docs/failoverfeature.html

Author: buildbot
Date: Thu Mar 30 13:47:38 2017
New Revision: 1009381

Log:
Production update by buildbot for cxf

Modified:
    websites/production/cxf/content/cache/docs.pageCache
    websites/production/cxf/content/docs/failoverfeature.html

Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/docs/failoverfeature.html
==============================================================================
--- websites/production/cxf/content/docs/failoverfeature.html (original)
+++ websites/production/cxf/content/docs/failoverfeature.html Thu Mar 30 13:47:38 2017
@@ -117,11 +117,11 @@ Apache CXF -- FailoverFeature
            <!-- Content -->
            <div class="wiki-content">
 <div id="ConfluenceContent"><h1 id="FailoverFeature-FailoverandLoadDistributorFeature">Failover and Load Distributor Feature</h1><p><style type="text/css">/*<![CDATA[*/
-div.rbtoc1450986419545 {padding: 0px;}
-div.rbtoc1450986419545 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1450986419545 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1490881625238 {padding: 0px;}
+div.rbtoc1490881625238 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1490881625238 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1450986419545">
+/*]]>*/</style></p><div class="toc-macro rbtoc1490881625238">
 <ul class="toc-indentation"><li><a shape="rect" href="#FailoverFeature-FailoverandLoadDistributorFeature">Failover and Load Distributor Feature</a></li><li><a shape="rect" href="#FailoverFeature-Failover">Failover</a></li><li><a shape="rect" href="#FailoverFeature-CircuitBreakersFailover">Circuit Breakers Failover</a></li><li><a shape="rect" href="#FailoverFeature-LoadDistribution">Load Distribution</a></li><li><a shape="rect" href="#FailoverFeature-ConfiguringJAX-RSclients">Configuring JAX-RS clients</a></li></ul>
 </div><h1 id="FailoverFeature-Failover">Failover</h1><p>The CXF Failover feature allows to configure CXF frontend clients to retry a call when the target endpoint becomes unavailable.<br clear="none"> A number of retry strategies available: a client can iterate sequentially over the alternative addresses or chose them randomly. <br clear="none"> Every strategy can be configured to do a delay between selecting the addresses.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">&lt;beans xmlns="http://www.springframework.org/schema/beans"
@@ -155,7 +155,7 @@ http://www.springframework.org/schema/ut
         &lt;/property&gt;
     &lt;/bean&gt;
 
-    &lt;!-- other jaxws:client attributes and elements are omitted for brewity --&gt;
+    &lt;!-- other jaxws:client attributes and elements are omitted for brevity --&gt;
     
     &lt;jaxws:client id="clientWithSeqFailoverSupport" address="http://localhost:8080/services"&gt;
        &lt;jaxws:features&gt;
@@ -167,7 +167,7 @@ http://www.springframework.org/schema/ut
        &lt;/jaxws:features&gt;
     &lt;/jaxws:client&gt;
 
-    &lt;!-- other jaxws:client attributes and elements are omitted for brewity --&gt;
+    &lt;!-- other jaxws:client attributes and elements are omitted for brevity --&gt;
 
     &lt;jaxws:client id="clientWithRandomFailoverSupport" address="http://localhost:8080/initialAddress"&gt;
        &lt;jaxws:features&gt;
@@ -213,19 +213,19 @@ http://www.springframework.org/schema/ut
         &lt;/property&gt;
     &lt;/bean&gt;
 
-    &lt;!-- other jaxws:client attributes and elements are omitted for brewity --&gt;
+    &lt;!-- other jaxws:client attributes and elements are omitted for brevity --&gt;
     
     &lt;jaxws:client id="clientWithSeqFailoverSupport" address="http://localhost:8080/services"&gt;
        &lt;jaxws:features&gt;
-           &lt;clustering:failover&gt;
-                &lt;clustering:circuit-breaker-failover threshold="1" timeout="60000"&gt;
-                    &lt;ref bean="SequentialAddresses"/&gt;
-                &lt;/clustering:strategy&gt;
+           &lt;clustering:circuit-breaker-failover threshold="1" timeout="60000"&gt;
+               &lt;clustering:strategy&gt;                   
+                   &lt;ref bean="SequentialAddresses"/&gt;
+               &lt;/clustering:strategy&gt;
             &lt;/clustering:circuit-breaker-failover&gt;
        &lt;/jaxws:features&gt;
     &lt;/jaxws:client&gt;
 
-    &lt;!-- other jaxws:client attributes and elements are omitted for brewity --&gt;
+    &lt;!-- other jaxws:client attributes and elements are omitted for brevity --&gt;
 
     &lt;jaxws:client id="clientWithRandomFailoverSupport" address="http://localhost:8080/initialAddress"&gt;
        &lt;jaxws:features&gt;
@@ -262,7 +262,7 @@ http://www.springframework.org/schema/ut
         &lt;/property&gt;
     &lt;/bean&gt;
 
-    &lt;!-- other jaxws:client attributes and elements are omitted for brewity --&gt;
+    &lt;!-- other jaxws:client attributes and elements are omitted for brevity --&gt;
     
     &lt;jaxws:client id="clientWithLoadDistributor" address="http://localhost:8080/services"&gt;
        &lt;jaxws:features&gt;