Subversion Repositories XServices

Rev

Rev 14 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
14 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-2.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.ArchiveService"
17
                    address="/ArchiveService"/>
18
 
19
    <jaxws:endpoint id="fileservice"
20
                    implementor="net.brutex.xservices.ws.FileService"
21
                    address="/FileService"/>
22
 
23
    <jaxws:endpoint id="executeservice"
24
                    implementor="net.brutex.xservices.ws.ExecuteService"
25
                    address="/ExecuteService"/>
17 brianR 26
 
27
    <jaxws:endpoint id="miscservice"
28
                    implementor="net.brutex.xservices.ws.MiscServiceImpl"
29
                    address="/MiscService"/>
14 brianR 30
</beans>