Subversion Repositories XServices

Rev

Rev 175 | 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"
185 brianR 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"
55 brianR 5
	xsi:schemaLocation="
185 brianR 6
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
47 brianR 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
 
185 brianR 10
  <import resource="classpath:META-INF/cxf/cxf.xml"/>
11
  <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
12
 
55 brianR 13
	<jaxws:endpoint id="archiveservice"
75 brianR 14
		implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService">
15
	</jaxws:endpoint>
47 brianR 16
 
67 brianR 17
	<jaxws:endpoint id="dateservice"
75 brianR 18
		implementor="net.brutex.xservices.ws.impl.DateServiceImpl" address="/DateService">
19
	</jaxws:endpoint>
20
 
55 brianR 21
	<jaxws:endpoint id="fileservice"
22
		implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
23
		<jaxws:properties>
24
			<entry key="mtom-enabled" value="false" />
25
		</jaxws:properties>
26
	</jaxws:endpoint>
75 brianR 27
 
55 brianR 28
	<!-- This is the MTOM enabled FileServices endpoint -->
29
	<jaxws:endpoint id="fileservice2"
30
		implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
31
		<jaxws:properties>
32
			<entry key="mtom-enabled" value="true" />
75 brianR 33
			<entry key="attachment-directory" value="c:\temp" />
34
			<entry key="attachment-memory-threshold" value="2000" />
55 brianR 35
		</jaxws:properties>
36
	</jaxws:endpoint>
75 brianR 37
 
38
 
55 brianR 39
	<jaxws:endpoint id="executeservice"
75 brianR 40
		implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl" address="/ExecuteService">
41
	</jaxws:endpoint>
42
 
70 brianR 43
	<jaxws:endpoint id="jobservice"
75 brianR 44
		implementor="net.brutex.xservices.ws.impl.JobServiceImpl" address="/JobService">
45
	</jaxws:endpoint>
46
 
85 brianR 47
	<jaxws:endpoint id="mailservice"
48
		implementor="net.brutex.xservices.ws.impl.MailServiceImpl" address="/MailService">
49
	</jaxws:endpoint>
94 brianR 50
 
55 brianR 51
	<jaxws:endpoint id="miscservice"
75 brianR 52
		implementor="net.brutex.xservices.ws.impl.MiscServiceImpl" address="/MiscService">
53
	</jaxws:endpoint>
54
 
86 brianR 55
	<jaxws:endpoint id="stringservice"
56
		implementor="net.brutex.xservices.ws.impl.StringServiceImpl" address="/StringService">
57
	</jaxws:endpoint>
94 brianR 58
 
75 brianR 59
	<jaxws:endpoint id="storageservice"
60
		implementor="net.brutex.xservices.ws.impl.StorageServiceImpl" address="/StorageService">
61
	</jaxws:endpoint>
62
 
63
	<jaxws:endpoint id="storageservice2"
64
		implementor="net.brutex.xservices.ws.impl.StorageServiceImpl" address="/StorageServiceMTOM">
65
		<jaxws:properties>
66
			<entry key="mtom-enabled" value="true" />
67
			<entry key="attachment-directory" value="c:\temp" />
68
			<entry key="attachment-memory-threshold" value="2000" />
69
		</jaxws:properties>
70
	</jaxws:endpoint>
92 brianR 71
 
101 brianR 72
	<jaxws:endpoint id="xmlservice"
73
		implementor="net.brutex.xservices.ws.impl.XmlServiceImpl" address="/XmlService">
74
	</jaxws:endpoint>
75
 
76
 
94 brianR 77
	<jaxrs:server id="FileInfo" address="/fileinfo">
78
		<jaxrs:serviceBeans>
79
			<ref bean="FileInfoBean" />
80
		</jaxrs:serviceBeans>
81
	</jaxrs:server>
82
	<bean id="FileInfoBean" class="net.brutex.xservices.ws.rs.FileInfoImpl" />
146 brianR 83
 
185 brianR 84
 
146 brianR 85
 
94 brianR 86
 
87
 
88
	<jaxrs:server id="CVSInfo" address="/cvsinfo">
89
		<jaxrs:serviceBeans>
90
			<ref bean="CVSInfoBean" />
91
		</jaxrs:serviceBeans>
92
	</jaxrs:server>
93
	<bean id="CVSInfoBean" class="net.brutex.xservices.ws.rs.CVSInfoImpl" />
175 brianR 94
 
185 brianR 95
	<!--
175 brianR 96
	<jaxrs:server id="DIMCMInfo" address="/dimcminfo">
97
		<jaxrs:serviceBeans>
98
			<ref bean="DIMCMInfoBean" />
99
		</jaxrs:serviceBeans>
100
	</jaxrs:server>
101
	<bean id="DIMCMInfoBean" class="net.brutex.xservices.ws.rs.DIMCMInfoImpl" />
185 brianR 102
	-->
94 brianR 103
 
47 brianR 104
</beans>