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" 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" xmlns:simple="http://cxf.apache.org/simple"
|
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">
|
Line 8... |
Line 8... |
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 -->
|
- |
|
11 |
<!--
|
10 |
<!-- deprecated since CXF 2.4.0 -->
|
12 |
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
|
11 |
<!-- <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
|
13 |
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
|
12 |
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml"
|
14 |
-->
|
13 |
/> -->
|
Line 15... |
Line 14... |
15 |
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
|
14 |
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
|
16 |
|
15 |
|
- |
|
16 |
<jaxws:endpoint id="archiveservice"
|
- |
|
17 |
implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService">
|
- |
|
18 |
<jaxws:dataBinding>
|
- |
|
19 |
<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
|
Line 17... |
Line 20... |
17 |
<jaxws:endpoint id="archiveservice"
|
20 |
</jaxws:dataBinding>
|
18 |
implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService" />
|
21 |
</jaxws:endpoint>
|
- |
|
22 |
|
- |
|
23 |
<jaxws:endpoint id="dateservice"
|
- |
|
24 |
implementor="net.brutex.xservices.ws.impl.DateServiceImpl" address="/DateService">
|
- |
|
25 |
<jaxws:dataBinding>
|
Line 19... |
Line 26... |
19 |
|
26 |
<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
|
20 |
<jaxws:endpoint id="dateservice"
|
27 |
</jaxws:dataBinding>
|
21 |
implementor="net.brutex.xservices.ws.impl.DateServiceImpl" address="/DateService" />
|
28 |
</jaxws:endpoint>
|
22 |
|
29 |
|
23 |
<jaxws:endpoint id="fileservice"
|
30 |
<jaxws:endpoint id="fileservice"
|
- |
|
31 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
|
- |
|
32 |
<jaxws:properties>
|
- |
|
33 |
<entry key="mtom-enabled" value="false" />
|
24 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
|
34 |
</jaxws:properties>
|
Line 25... |
Line 35... |
25 |
<jaxws:properties>
|
35 |
<jaxws:dataBinding>
|
26 |
<entry key="mtom-enabled" value="false" />
|
36 |
<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
|
27 |
</jaxws:properties>
|
37 |
</jaxws:dataBinding>
|
28 |
</jaxws:endpoint>
|
38 |
</jaxws:endpoint>
|
29 |
|
39 |
|
30 |
<!-- This is the MTOM enabled FileServices endpoint -->
|
40 |
<!-- This is the MTOM enabled FileServices endpoint -->
|
31 |
<jaxws:endpoint id="fileservice2"
|
41 |
<jaxws:endpoint id="fileservice2"
|
32 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
|
42 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
|
- |
|
43 |
<jaxws:properties>
|
- |
|
44 |
<entry key="mtom-enabled" value="true" />
|
- |
|
45 |
<entry key="attachment-directory" value="c:\temp" />
|
33 |
<jaxws:properties>
|
46 |
<entry key="attachment-memory-threshold" value="2000" />
|
Line 34... |
Line 47... |
34 |
<entry key="mtom-enabled" value="true" />
|
47 |
</jaxws:properties>
|
35 |
<entry key="attachment-directory" value="c:\temp"/>
|
48 |
<jaxws:dataBinding>
|
- |
|
49 |
<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
|
- |
|
50 |
</jaxws:dataBinding>
|
- |
|
51 |
</jaxws:endpoint>
|
- |
|
52 |
|
Line 36... |
Line 53... |
36 |
<entry key="attachment-memory-threshold" value="2000"/>
|
53 |
|
37 |
</jaxws:properties>
|
54 |
<jaxws:endpoint id="executeservice"
|
- |
|
55 |
implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl" address="/ExecuteService">
|
- |
|
56 |
<jaxws:dataBinding>
|
- |
|
57 |
<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
|
- |
|
58 |
</jaxws:dataBinding>
|
Line 38... |
Line 59... |
38 |
</jaxws:endpoint>
|
59 |
</jaxws:endpoint>
|
39 |
|
60 |
|
- |
|
61 |
<jaxws:endpoint id="jobservice"
|
- |
|
62 |
implementor="net.brutex.xservices.ws.impl.JobServiceImpl" address="/JobService">
|
- |
|
63 |
<jaxws:dataBinding>
|
- |
|
64 |
<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
|
- |
|
65 |
</jaxws:dataBinding>
|
- |
|
66 |
</jaxws:endpoint>
|
- |
|
67 |
|
- |
|
68 |
|
- |
|
69 |
<jaxws:endpoint id="miscservice"
|
- |
|
70 |
implementor="net.brutex.xservices.ws.impl.MiscServiceImpl" address="/MiscService">
|
- |
|
71 |
<jaxws:dataBinding>
|
- |
|
72 |
<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
|
- |
|
73 |
</jaxws:dataBinding>
|
- |
|
74 |
</jaxws:endpoint>
|
- |
|
75 |
|
- |
|
76 |
<jaxws:endpoint id="storageservice"
|
- |
|
77 |
implementor="net.brutex.xservices.ws.impl.StorageServiceImpl" address="/StorageService">
|
- |
|
78 |
<jaxws:dataBinding>
|
- |
|
79 |
<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
|
- |
|
80 |
</jaxws:dataBinding>
|
- |
|
81 |
</jaxws:endpoint>
|
- |
|
82 |
|
- |
|
83 |
<jaxws:endpoint id="storageservice2"
|
40 |
|
84 |
implementor="net.brutex.xservices.ws.impl.StorageServiceImpl" address="/StorageServiceMTOM">
|