Subversion Repositories XServices

Rev

Rev 47 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 47 Rev 55
Line 1... Line 1...
1
<beans xmlns="http://www.springframework.org/schema/beans"
1
<beans xmlns="http://www.springframework.org/schema/beans"
2
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
3
       xmlns:jaxws="http://cxf.apache.org/jaxws"
-
 
4
       xmlns:jaxrs="http://cxf.apache.org/jaxrs"
3
	xmlns:jaxrs="http://cxf.apache.org/jaxrs"
5
       xsi:schemaLocation="
4
	xsi:schemaLocation="
6
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
5
       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
6
       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">
7
       http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">
Line 9... Line 8...
9
 
8
 
10
    <import resource="classpath:META-INF/cxf/cxf.xml"/>
9
	<import resource="classpath:META-INF/cxf/cxf.xml" />
11
    <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>
10
	<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
12
    <import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml"/>
11
	<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
Line 13... Line 12...
13
    <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
12
	<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
14
 
13
 
15
    <jaxws:endpoint id="archiveservice"
-
 
Line 16... Line 14...
16
                    implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl"
14
	<jaxws:endpoint id="archiveservice"
17
                    address="/ArchiveService"/>
15
		implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService" />
-
 
16
 
-
 
17
	<jaxws:endpoint id="fileservice"
-
 
18
		implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
-
 
19
		<jaxws:properties>
-
 
20
			<entry key="mtom-enabled" value="false" />
-
 
21
		</jaxws:properties>
18
 
22
	</jaxws:endpoint>
-
 
23
	
-
 
24
	<!-- This is the MTOM enabled FileServices endpoint -->
-
 
25
	<jaxws:endpoint id="fileservice2"
-
 
26
		implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
-
 
27
		<jaxws:properties>
-
 
28
			<entry key="mtom-enabled" value="true" />
-
 
29
			<entry key="attachment-directory" value="c:\temp"/>
-
 
30
			<entry key="attachment-memory-threshold" value="2000"/>
-
 
31
		</jaxws:properties>
-
 
32
	</jaxws:endpoint>
-
 
33
	
Line 19... Line -...
19
    <jaxws:endpoint id="fileservice"
-
 
20
                    implementor="net.brutex.xservices.ws.impl.FileServiceImpl"
-
 
21
                    address="/FileService"/>
-
 
22
 
-
 
23
    <jaxws:endpoint id="executeservice"
34
	
24
                    implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl"
35
	<jaxws:endpoint id="executeservice"
25
                    address="/ExecuteService"/>
-
 
26
                    
36
		implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl" address="/ExecuteService" />