Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 12AA0200C52 for ; Mon, 10 Apr 2017 11:48:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 11375160B99; Mon, 10 Apr 2017 09:48:15 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 323BB160B85 for ; Mon, 10 Apr 2017 11:48:14 +0200 (CEST) Received: (qmail 76629 invoked by uid 500); 10 Apr 2017 09:48:13 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 76620 invoked by uid 99); 10 Apr 2017 09:48:13 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Apr 2017 09:48:13 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 97EFE3A0597 for ; Mon, 10 Apr 2017 09:48:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1010142 - in /websites/production/cxf/content: cache/docs.pageCache docs/a-simple-jax-ws-service.html docs/jax-ws-configuration.html docs/writing-a-service-with-spring.html Date: Mon, 10 Apr 2017 09:48:12 -0000 To: commits@cxf.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170410094812.97EFE3A0597@svn01-us-west.apache.org> archived-at: Mon, 10 Apr 2017 09:48:15 -0000 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

This example will lead you through creating your first service with doing "code first" development with JAX-WS.

+/*]]>*/ @@ -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> -

Configuring a Spring Client (Option 2)

Building a Client using this configuration is only applicable for those wishing to inject a Client into their Spring ApplicationContext.

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:

+

Configuring a Spring Client (Option 2)

Building a Client using this configuration is only applicable for those wishing to inject a Client into their Spring ApplicationContext.

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:

<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
 

Lets create a "cxf-servlet.xml" file in our WEB-INF directory which declares an endpoint bean: