beans.xml 913 B

1234567891011121314151617181920212223242526
  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="
  5. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
  7. <import resource="classpath:META-INF/cxf/cxf.xml" />
  8. <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
  9. <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
  10. <jaxws:endpoint
  11. id="cxfClient"
  12. implementor="CoreFS.SA03.CoreWebServiceServiceImpl"
  13. address="/CXF" />
  14. <jaxws:endpoint
  15. id="CharacteristicValue"
  16. implementor="pda.CharacteristicValue"
  17. address="/CharacteristicValue" />
  18. <jaxws:endpoint
  19. id="WebService1"
  20. implementor="pda.WebService1Impl"
  21. address="/WebService" />
  22. </beans>