1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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-4.0.xsd
- http://cxf.apache.org/jaxws
- http://cxf.apache.org/schemas/jaxws.xsd">
- <import resource="classpath:META-INF/cxf/cxf.xml" />
- <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
- <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
- <!-- <jaxws:endpoint id="helloService" implementor="com.fsm.platform.si.ws.HelloImpl"
- address="/hello" /> -->
-
- <jaxws:endpoint id="complaintService" implementor="com.fsm.complaint.webservice.ComplaintService"
- address="/complaint" />
-
- <!-- <jaxws:endpoint id="cmsService" implementor="com.fsm.cms.ws.CmswsImpl"
- address="/cmsService">
- <jaxws:inInterceptors>
- <ref bean="soapAuth" />
- </jaxws:inInterceptors>
- </jaxws:endpoint> -->
- <bean id="soapAuth" class="com.fsm.platform.si.ws.AuthInterceptor">
- <!-- <property name="token" value="ssssdddd"></property> -->
- </bean>
- </beans>
|