spring-ws.xml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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-4.0.xsd
  6. http://cxf.apache.org/jaxws
  7. http://cxf.apache.org/schemas/jaxws.xsd">
  8. <import resource="classpath:META-INF/cxf/cxf.xml" />
  9. <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
  10. <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
  11. <!-- <jaxws:endpoint id="helloService" implementor="com.fsm.platform.si.ws.HelloImpl"
  12. address="/hello" /> -->
  13. <jaxws:endpoint id="complaintService" implementor="com.fsm.complaint.webservice.ComplaintService"
  14. address="/complaint" />
  15. <!-- <jaxws:endpoint id="cmsService" implementor="com.fsm.cms.ws.CmswsImpl"
  16. address="/cmsService">
  17. <jaxws:inInterceptors>
  18. <ref bean="soapAuth" />
  19. </jaxws:inInterceptors>
  20. </jaxws:endpoint> -->
  21. <bean id="soapAuth" class="com.fsm.platform.si.ws.AuthInterceptor">
  22. <!-- <property name="token" value="ssssdddd"></property> -->
  23. </bean>
  24. </beans>