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 -->
|
- |
|
11 |
<!--
|
10 |
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
|
12 |
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
|
11 |
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
|
13 |
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
|
- |
|
14 |
-->
|
12 |
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
|
15 |
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
|
13 |
|
16 |
|
14 |
<jaxws:endpoint id="archiveservice"
|
17 |
<jaxws:endpoint id="archiveservice"
|
15 |
implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService" />
|
18 |
implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService" />
|
16 |
|
19 |
|
17 |
<jaxws:endpoint id="fileservice"
|
20 |
<jaxws:endpoint id="fileservice"
|
18 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
|
21 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
|
19 |
<jaxws:properties>
|
22 |
<jaxws:properties>
|
20 |
<entry key="mtom-enabled" value="false" />
|
23 |
<entry key="mtom-enabled" value="false" />
|
21 |
</jaxws:properties>
|
24 |
</jaxws:properties>
|
22 |
</jaxws:endpoint>
|
25 |
</jaxws:endpoint>
|
23 |
|
26 |
|
24 |
<!-- This is the MTOM enabled FileServices endpoint -->
|
27 |
<!-- This is the MTOM enabled FileServices endpoint -->
|
25 |
<jaxws:endpoint id="fileservice2"
|
28 |
<jaxws:endpoint id="fileservice2"
|
26 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
|
29 |
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
|
27 |
<jaxws:properties>
|
30 |
<jaxws:properties>
|
28 |
<entry key="mtom-enabled" value="true" />
|
31 |
<entry key="mtom-enabled" value="true" />
|
29 |
<entry key="attachment-directory" value="c:\temp"/>
|
32 |
<entry key="attachment-directory" value="c:\temp"/>
|
30 |
<entry key="attachment-memory-threshold" value="2000"/>
|
33 |
<entry key="attachment-memory-threshold" value="2000"/>
|
31 |
</jaxws:properties>
|
34 |
</jaxws:properties>
|
32 |
</jaxws:endpoint>
|
35 |
</jaxws:endpoint>
|
33 |
|
36 |
|
34 |
|
37 |
|
35 |
<jaxws:endpoint id="executeservice"
|
38 |
<jaxws:endpoint id="executeservice"
|
36 |
implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl" address="/ExecuteService" />
|
39 |
implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl" address="/ExecuteService" />
|
37 |
|
40 |
|
38 |
<jaxws:endpoint id="miscservice"
|
41 |
<jaxws:endpoint id="miscservice"
|
39 |
implementor="net.brutex.xservices.ws.impl.MiscServiceImpl" address="/MiscService" />
|
42 |
implementor="net.brutex.xservices.ws.impl.MiscServiceImpl" address="/MiscService" />
|
40 |
</beans>
|
43 |
</beans>
|