2011-01-29 20:42:35 +01:00
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2011-04-20 18:59:54 +02:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
|
|
|
|
xmlns:jaxrs="http://cxf.apache.org/jaxrs"
|
|
|
|
xsi:schemaLocation="
|
2011-01-29 20:42:35 +01:00
|
|
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
|
|
|
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
|
|
|
|
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">
|
|
|
|
|
2011-04-20 18:59:54 +02:00
|
|
|
<import resource="classpath:META-INF/cxf/cxf.xml" />
|
2011-05-02 20:09:31 +02:00
|
|
|
<!-- deprecated since CXF 2.4.0 -->
|
|
|
|
<!--
|
2011-04-20 18:59:54 +02:00
|
|
|
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
|
|
|
|
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
|
2011-05-02 20:09:31 +02:00
|
|
|
-->
|
2011-04-20 18:59:54 +02:00
|
|
|
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
|
2011-01-29 20:42:35 +01:00
|
|
|
|
2011-04-20 18:59:54 +02:00
|
|
|
<jaxws:endpoint id="archiveservice"
|
|
|
|
implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService" />
|
2011-01-29 20:42:35 +01:00
|
|
|
|
2011-05-25 13:55:09 +02:00
|
|
|
<jaxws:endpoint id="dateservice"
|
|
|
|
implementor="net.brutex.xservices.ws.impl.DateServiceImpl" address="/DateService" />
|
|
|
|
|
2011-04-20 18:59:54 +02:00
|
|
|
<jaxws:endpoint id="fileservice"
|
|
|
|
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileService">
|
|
|
|
<jaxws:properties>
|
|
|
|
<entry key="mtom-enabled" value="false" />
|
|
|
|
</jaxws:properties>
|
|
|
|
</jaxws:endpoint>
|
|
|
|
|
|
|
|
<!-- This is the MTOM enabled FileServices endpoint -->
|
|
|
|
<jaxws:endpoint id="fileservice2"
|
|
|
|
implementor="net.brutex.xservices.ws.impl.FileServiceImpl" address="/FileServiceMTOM">
|
|
|
|
<jaxws:properties>
|
|
|
|
<entry key="mtom-enabled" value="true" />
|
|
|
|
<entry key="attachment-directory" value="c:\temp"/>
|
|
|
|
<entry key="attachment-memory-threshold" value="2000"/>
|
|
|
|
</jaxws:properties>
|
|
|
|
</jaxws:endpoint>
|
|
|
|
|
|
|
|
|
|
|
|
<jaxws:endpoint id="executeservice"
|
|
|
|
implementor="net.brutex.xservices.ws.impl.ExecuteServiceImpl" address="/ExecuteService" />
|
2011-09-19 08:54:10 +02:00
|
|
|
|
|
|
|
<jaxws:endpoint id="jobservice"
|
|
|
|
implementor="net.brutex.xservices.ws.impl.JobServiceImpl" address="/JobService" />
|
|
|
|
|
|
|
|
|
2011-04-20 18:59:54 +02:00
|
|
|
<jaxws:endpoint id="miscservice"
|
|
|
|
implementor="net.brutex.xservices.ws.impl.MiscServiceImpl" address="/MiscService" />
|
2011-01-29 20:42:35 +01:00
|
|
|
</beans>
|