47 |
brianR |
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 |
xmlns:jaxrs="http://cxf.apache.org/jaxrs"
|
|
|
5 |
xsi:schemaLocation="
|
|
|
6 |
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
|
|
7 |
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
|
|
|
8 |
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">
|
|
|
9 |
|
|
|
10 |
<import resource="classpath:META-INF/cxf/cxf.xml"/>
|
|
|
11 |
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>
|
|
|
12 |
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml"/>
|
|
|
13 |
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
|
|
|
14 |
|
|
|
15 |
<jaxws:endpoint id="archiveservice"
|
|
|
16 |
implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl"
|
|
|
17 |
address="/ArchiveService"/>
|
|
|
18 |
|
|
|
19 |
<jaxws:endpoint id="fileservice"
|
|
|
20 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl"
|
|
|
21 |
address="/FileService"/>
|
|
|
22 |
|
|
|
23 |
<jaxws:endpoint id="executeservice"
|
|
|
24 |
implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl"
|
|
|
25 |
address="/ExecuteService"/>
|
|
|
26 |
|
|
|
27 |
<jaxws:endpoint id="miscservice"
|
|
|
28 |
implementor="net.brutex.xservices.ws.impl.MiscServiceImpl"
|
|
|
29 |
address="/MiscService"/>
|
|
|
30 |
</beans>
|