alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Apache CXF example source code file (clients.xml)

This example Apache CXF source code file (clients.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Apache CXF tags/keywords

apache, apache, as, asf, asf, license, license, of, see, see, software, unless, version, you

The Apache CXF clients.xml source code

<?xml version="1.0" encoding="UTF-8"?>
	<!--
		Licensed to the Apache Software Foundation (ASF) under one or more
		contributor license agreements. See the NOTICE file distributed with
		this work for additional information regarding copyright ownership.
		The ASF licenses this file to you under the Apache License, Version
		2.0 (the "License"); you may not use this file except in compliance
		with the License. You may obtain a copy of the License at

		http://www.apache.org/licenses/LICENSE-2.0 Unless required by
		applicable law or agreed to in writing, software distributed under the
		License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
		CONDITIONS OF ANY KIND, either express or implied. See the License for
		the specific language governing permissions and limitations under the
		License.
	-->
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
	xmlns:soap="http://cxf.apache.org/bindings/soap" xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/bindings/soap http://cxf.apache.org/schemas/configuration/soap.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">

	<context:annotation-config />

	<import resource="classpath:META-INF/cxf/cxf.xml" />
	<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />

	<bean class="org.apache.cxf.jaxws.spring.ClientHolderBean" id="greeters"
		autowire="default">
		<property name="greet1">
			<jaxws:client
				serviceClass="org.apache.hello_world_soap_http.Greeter" serviceName="s:SOAPService"
				endpointName="s:SoapPort" xmlns:s="http://apache.org/hello_world_soap_http"
				address="http://localhost:8080/simpleWithAddress" wsdlLocation="wsdl/hello_world.wsdl" />
		</property>
		<property name="greet2">
			<jaxws:client
				serviceClass="org.apache.hello_world_soap_http.Greeter" address="http://localhost:9000/foo"
		    	serviceName="s:SOAPService" xmlns:s="http://apache.org/hello_world_soap_http"/>
		</property>
	</bean>

	<bean class="org.apache.cxf.transport.local.LocalTransportFactory"
		lazy-init="false">
		<property name="transportIds">
			<list>
				<value>http://cxf.apache.org/transports/local
				<value>http://schemas.xmlsoap.org/soap/http
				<value>http://schemas.xmlsoap.org/wsdl/soap/http
			</list>
		</property>
	</bean>

	<bean id="saajIn" class="org.apache.cxf.binding.soap.saaj.SAAJInInterceptor" />
	<bean id="saajOut" class="org.apache.cxf.binding.soap.saaj.SAAJOutInterceptor" />

	<jaxws:client id="client1"
		serviceClass="org.apache.hello_world_soap_http.Greeter" address="http://localhost:9000/foo"
		serviceName="s:SOAPService" xmlns:s="http://apache.org/hello_world_soap_http">
		<jaxws:inInterceptors>
			<bean class="org.apache.cxf.interceptor.LoggingInInterceptor" />
			<ref bean="saajIn" />
		</jaxws:inInterceptors>
		<jaxws:outInterceptors>
			<bean class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
			<ref bean="saajOut" />
		</jaxws:outInterceptors>
		<jaxws:conduitSelector>
			<bean class="org.apache.cxf.endpoint.NullConduitSelector" />
		</jaxws:conduitSelector>
		<jaxws:dataBinding>
			<bean class="org.apache.cxf.databinding.source.SourceDataBinding" />
		</jaxws:dataBinding>
	</jaxws:client>

	<jaxws:client id="wsdlLocation"
		serviceClass="org.apache.hello_world_soap_http.Greeter" serviceName="s:SOAPService"
		endpointName="s:SoapPort" xmlns:s="http://apache.org/hello_world_soap_http"
		address="http://localhost:8080/simpleWithAddress" wsdlLocation="wsdl/hello_world.wsdl" />

	<jaxws:client id="inlineSoapBinding"
		serviceClass="org.apache.hello_world_soap_http.Greeter" address="http://localhost:9000/foo"
		serviceName="s:SOAPService" xmlns:s="http://apache.org/hello_world_soap_http">
		<jaxws:binding>
			<soap:soapBinding mtomEnabled="true" version="1.2" />
		</jaxws:binding>
	</jaxws:client>
</beans>

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF clients.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.