| 1234567891011121314151617181920212223242526 |
- <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.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="cxfClient"
- implementor="CoreFS.SA03.CoreWebServiceServiceImpl"
- address="/CXF" />
- <jaxws:endpoint
- id="CharacteristicValue"
- implementor="pda.CharacteristicValue"
- address="/CharacteristicValue" />
-
- <jaxws:endpoint
- id="WebService1"
- implementor="pda.WebService1Impl"
- address="/WebService" />
-
- </beans>
|