31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xmlns:jaxws="http://cxf.apache.org/jaxws"
|
||
|
xmlns:jaxrs="http://cxf.apache.org/jaxrs"
|
||
|
xsi:schemaLocation="
|
||
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
||
|
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
|
||
|
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.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-extension-jaxrs-binding.xml"/>
|
||
|
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
|
||
|
|
||
|
<jaxws:endpoint id="archiveservice"
|
||
|
implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl"
|
||
|
address="/ArchiveService"/>
|
||
|
|
||
|
<jaxws:endpoint id="fileservice"
|
||
|
implementor="net.brutex.xservices.ws.impl.FileServiceImpl"
|
||
|
address="/FileService"/>
|
||
|
|
||
|
<jaxws:endpoint id="executeservice"
|
||
|
implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl"
|
||
|
address="/ExecuteService"/>
|
||
|
|
||
|
<jaxws:endpoint id="miscservice"
|
||
|
implementor="net.brutex.xservices.ws.impl.MiscServiceImpl"
|
||
|
address="/MiscService"/>
|
||
|
</beans>
|