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<Integer, User> 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
<jaxws:inInterceptors>
<bean class="com.acme.SomeInterceptor"/>
<ref bean="anotherInterceptor"/>
- </jaxws:inInterceptor>
+ </jaxws:inInterceptors>
<jaxws:properties>
<entry key="mtom-enabled" value="true"/>
</jaxws:properties>
@@ -236,7 +236,7 @@ http://cxf.apache.org/jaxws http://cxf.a
</jaxws:client>
</beans>
</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;"><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[
-<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation="
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">
+<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation="
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">
<import resource="classpath:META-INF/cxf/cxf.xml"/>
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
<jaxws:endpoint id="helloWorld"
implementor="demo.spring.service.HelloWorldImpl"
address="/HelloWorld"/>
@@ -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[
-<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation="
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">
+<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation="
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">
<bean id="client"
class="demo.spring.service.HelloWorld"
factory-bean="clientFactory" factory-method="create"/>
<bean id="clientFactory"
class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
<property name="serviceClass"
value="demo.spring.service.HelloWorld"/>