Author: buildbot
Date: Mon Apr 10 09:48:12 2017
New Revision: 1010142

Log:
Production update by buildbot for cxf

Modified:
    websites/production/cxf/content/cache/docs.pageCache
    websites/production/cxf/content/docs/a-simple-jax-ws-service.html
    websites/production/cxf/content/docs/jax-ws-configuration.html
    websites/production/cxf/content/docs/writing-a-service-with-spring.html

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

Modified: websites/production/cxf/content/docs/a-simple-jax-ws-service.html
==============================================================================
--- websites/production/cxf/content/docs/a-simple-jax-ws-service.html (original)
+++ websites/production/cxf/content/docs/a-simple-jax-ws-service.html Mon Apr 
10 09:48:12 2017
@@ -121,11 +121,11 @@ Apache CXF -- A simple JAX-WS service
 <div id="ConfluenceContent"><p>This example will lead you through creating 
your first service with doing "code first" development with JAX-WS.</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1477590444736 {padding: 0px;}
-div.rbtoc1477590444736 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1477590444736 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1491817656763 {padding: 0px;}
+div.rbtoc1491817656763 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1491817656763 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1477590444736">
+/*]]>*/</style><div class="toc-macro rbtoc1491817656763">
 <ul class="toc-indentation"><li><a shape="rect" 
href="#AsimpleJAX-WSservice-Settingupyourbuild">Setting up your 
build</a></li><li><a shape="rect" 
href="#AsimpleJAX-WSservice-WritingyourService">Writing your 
Service</a></li><li><a shape="rect" 
href="#AsimpleJAX-WSservice-Publishingyourservice">Publishing your 
service</a></li><li><a shape="rect" 
href="#AsimpleJAX-WSservice-Accessingyourservice">Accessing your 
service</a></li></ul>
 </div>
 
@@ -160,7 +160,7 @@ public interface HelloWorld {
     /* Map passing
      * JAXB also does not support Maps.  It handles Lists great, but Maps are
      * not supported directly.  They also require use of a XmlAdapter to map
-     * the maps into beans that JAXB can use. 
+     * the maps into beans that JAXB can use.
      */
     @XmlJavaTypeAdapter(IntegerUserMapAdapter.class)
     Map&lt;Integer, User&gt; getUsers();

Modified: websites/production/cxf/content/docs/jax-ws-configuration.html
==============================================================================
--- websites/production/cxf/content/docs/jax-ws-configuration.html (original)
+++ websites/production/cxf/content/docs/jax-ws-configuration.html Mon Apr 10 
09:48:12 2017
@@ -157,7 +157,7 @@ http://cxf.apache.org/jaxws http://cxf.a
     &lt;jaxws:inInterceptors&gt;
       &lt;bean class="com.acme.SomeInterceptor"/&gt;
       &lt;ref bean="anotherInterceptor"/&gt;
-    &lt;/jaxws:inInterceptor&gt;
+    &lt;/jaxws:inInterceptors&gt;
     &lt;jaxws:properties&gt;
       &lt;entry key="mtom-enabled" value="true"/&gt;
     &lt;/jaxws:properties&gt;
@@ -236,7 +236,7 @@ http://cxf.apache.org/jaxws http://cxf.a
   &lt;/jaxws:client&gt;
 &lt;/beans&gt;
 </pre>
-</div></div><h1 
id="JAX-WSConfiguration-ConfiguringaSpringClient(Option2)">Configuring a Spring 
Client (Option 2)</h1><div class="confluence-information-macro 
confluence-information-macro-information"><span class="aui-icon aui-icon-small 
aui-iconfont-info confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>Building a Client using this 
configuration is only applicable for those wishing to inject a Client into 
their Spring ApplicationContext.</p></div></div><p>This approach requires more 
explicit Spring bean configuration than the previous option, and may require 
more configuration data depending on which features are used. To configure a 
client this way, you'll need to declare a proxy factory bean and also a client 
bean which is created by that proxy factory. Here is an example:</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
+</div></div><h1 
id="JAX-WSConfiguration-ConfiguringaSpringClient(Option2)">Configuring a Spring 
Client (Option 2)</h1><div class="confluence-information-macro 
confluence-information-macro-information"><span class="aui-icon aui-icon-small 
aui-iconfont-info confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>Building a Client using this 
configuration is only applicable for those wishing to inject a Client into 
their Spring ApplicationContext.</p></div></div><p>This approach requires more 
explicit Spring bean configuration than the previous option, and may require 
more configuration data depending on which features are used. To configure a 
client this way, you'll need to declare a proxy factory bean and also a client 
bean which is created by that proxy factory. <span 
class="inline-comment-marker" 
data-ref="e36053fa-0a8c-4646-8de0-c06e4c7fdde7">Here is an 
example</span>:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeCon
 tent panelContent pdl">
 <pre class="brush: xml; gutter: false; theme: Default" 
style="font-size:12px;">&lt;beans 
xmlns="http://www.springframework.org/schema/beans";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
   xmlns:jaxws="http://cxf.apache.org/jaxws";

Modified: 
websites/production/cxf/content/docs/writing-a-service-with-spring.html
==============================================================================
--- websites/production/cxf/content/docs/writing-a-service-with-spring.html 
(original)
+++ websites/production/cxf/content/docs/writing-a-service-with-spring.html Mon 
Apr 10 09:48:12 2017
@@ -171,7 +171,7 @@ public class HelloWorldImpl implements H
 <p>Lets create a "cxf-servlet.xml" file in our WEB-INF directory which 
declares an endpoint bean:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
 <script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
-&lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot; 
xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; 
xmlns:jaxws=&quot;http://cxf.apache.org/jaxws&quot; xsi:schemaLocation=&quot; 
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd 
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd&quot;&gt;
+&lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot; 
xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; 
xmlns:jaxws=&quot;http://cxf.apache.org/jaxws&quot; xsi:schemaLocation=&quot; 
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd 
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd&quot;&gt;
     &lt;import resource=&quot;classpath:META-INF/cxf/cxf.xml&quot;/&gt;
     &lt;import resource=&quot;classpath:META-INF/cxf/cxf-servlet.xml&quot;/&gt;
     &lt;jaxws:endpoint id=&quot;helloWorld&quot; 
implementor=&quot;demo.spring.service.HelloWorldImpl&quot; 
address=&quot;/HelloWorld&quot;/&gt;
@@ -260,7 +260,7 @@ HelloWorld client = (HelloWorld) context
 <p>Here's an example:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
 <script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
-&lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot; 
xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; 
xmlns:jaxws=&quot;http://cxf.apache.org/jaxws&quot; xsi:schemaLocation=&quot; 
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd 
http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd&quot;&gt;
+&lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot; 
xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; 
xmlns:jaxws=&quot;http://cxf.apache.org/jaxws&quot; xsi:schemaLocation=&quot; 
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd 
http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd&quot;&gt;
     &lt;bean id=&quot;client&quot; 
class=&quot;demo.spring.service.HelloWorld&quot; 
factory-bean=&quot;clientFactory&quot; factory-method=&quot;create&quot;/&gt;
     &lt;bean id=&quot;clientFactory&quot; 
class=&quot;org.apache.cxf.jaxws.JaxWsProxyFactoryBean&quot;&gt;
         &lt;property name=&quot;serviceClass&quot; 
value=&quot;demo.spring.service.HelloWorld&quot;/&gt;


Reply via email to