Subversion Repositories XServices

Rev

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

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