3aa9e3fda0830680f4fe903eb3642fb673f5348a.svn-base 751 B

12345678910111213141516
  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns:jaxws="http://cxf.apache.org/jaxws"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans
  5. http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
  6. http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd">
  7. <bean id="cxfClient" class="CoreFS.SA03.CoreIWebServiceService"
  8. factory-bean="clientFactory" factory-method="create"/>
  9. <bean id="clientFactory" class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
  10. <property name="serviceClass" value="CoreFS.SA03.CoreIWebServiceService"/>
  11. <property name="address" value="http://localhost:8088/CoreServerDemo/CXF"/>
  12. </bean>
  13. </beans>