Subversion Repositories XServices

Rev

Rev 67 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 67 Rev 70
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" xmlns:jaxws="http://cxf.apache.org/jaxws"
2
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
3
	xmlns:jaxrs="http://cxf.apache.org/jaxrs"
3
	xmlns:jaxrs="http://cxf.apache.org/jaxrs"
4
	xsi:schemaLocation="
4
	xsi:schemaLocation="
5
       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
6
       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
7
       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">
8
 
8
 
9
	<import resource="classpath:META-INF/cxf/cxf.xml" />
9
	<import resource="classpath:META-INF/cxf/cxf.xml" />
10
	<!-- deprecated since CXF 2.4.0 -->
10
	<!-- deprecated since CXF 2.4.0 -->
11
	<!-- 
11
	<!-- 
12
	<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
12
	<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
13
	<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
13
	<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
14
	 -->
14
	 -->
15
	<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
15
	<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
16
 
16
 
17
	<jaxws:endpoint id="archiveservice"
17
	<jaxws:endpoint id="archiveservice"
18
		implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService" />
18
		implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService" />
19
 
19
 
20
	<jaxws:endpoint id="dateservice"
20
	<jaxws:endpoint id="dateservice"
21
		implementor="net.brutex.xservices.ws.impl.DateServiceImpl" address="/DateService" />
21
		implementor="net.brutex.xservices.ws.impl.DateServiceImpl" address="/DateService" />
22
		
22
		
23
	<jaxws:endpoint id="fileservice"
23
	<jaxws:endpoint id="fileservice"
24
		implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
24
		implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
25
		<jaxws:properties>
25
		<jaxws:properties>
26
			<entry key="mtom-enabled" value="false" />
26
			<entry key="mtom-enabled" value="false" />
27
		</jaxws:properties>
27
		</jaxws:properties>
28
	</jaxws:endpoint>
28
	</jaxws:endpoint>
29
	
29
	
30
	<!-- This is the MTOM enabled FileServices endpoint -->
30
	<!-- This is the MTOM enabled FileServices endpoint -->
31
	<jaxws:endpoint id="fileservice2"
31
	<jaxws:endpoint id="fileservice2"
32
		implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
32
		implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
33
		<jaxws:properties>
33
		<jaxws:properties>
34
			<entry key="mtom-enabled" value="true" />
34
			<entry key="mtom-enabled" value="true" />
35
			<entry key="attachment-directory" value="c:\temp"/>
35
			<entry key="attachment-directory" value="c:\temp"/>
36
			<entry key="attachment-memory-threshold" value="2000"/>
36
			<entry key="attachment-memory-threshold" value="2000"/>
37
		</jaxws:properties>
37
		</jaxws:properties>
38
	</jaxws:endpoint>
38
	</jaxws:endpoint>
39
	
39
	
40
	
40
	
41
	<jaxws:endpoint id="executeservice"
41
	<jaxws:endpoint id="executeservice"
42
		implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl" address="/ExecuteService" />
42
		implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl" address="/ExecuteService" />
43
 
43
	
-
 
44
	<jaxws:endpoint id="jobservice"
-
 
45
		implementor="net.brutex.xservices.ws.impl.JobServiceImpl" address="/JobService" />
-
 
46
    
-
 
47
    
44
	<jaxws:endpoint id="miscservice"
48
	<jaxws:endpoint id="miscservice"
45
		implementor="net.brutex.xservices.ws.impl.MiscServiceImpl" address="/MiscService" />
49
		implementor="net.brutex.xservices.ws.impl.MiscServiceImpl" address="/MiscService" />
46
</beans>
50
</beans>