- <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-2.0.xsd
- http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd">
-
- <bean id="cxfClient" class="CoreFS.SA03.CoreIWebServiceService"
- factory-bean="clientFactory" factory-method="create"/>
-
- <bean id="clientFactory" class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
- <property name="serviceClass" value="CoreFS.SA03.CoreIWebServiceService"/>
- <property name="address" value="http://localhost:8088/CoreServerDemo/CXF"/>
- </bean>
-
- </beans>
|