Change-Id: I46e275e4503ed8364c9c9b7019d02cf3f4f67132 Former-commit-id:144a145969
[formerly9842c18d70
] [formerlya482a2d4dd
[formerly ac432ca4c4453f8fcaa39d9c9d5ccc3df078585b]] Former-commit-id:a482a2d4dd
Former-commit-id:1c8c9d67a9
18 lines
867 B
XML
18 lines
867 B
XML
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
|
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
|
|
|
|
<camelContext id="server-camel"
|
|
xmlns="http://camel.apache.org/schema/spring"
|
|
errorHandlerRef="errorHandler">
|
|
|
|
<endpoint id="ebxmlThriftService" uri="jetty:http://0.0.0.0:${EBXML_THRIFT_SERVICE_PORT}/services/thrift?disableStreamCache=true&chunked=false&httpBindingRef=#binaryHttpBinding" />
|
|
|
|
<route id="thriftService">
|
|
<from ref="ebxmlThriftService" />
|
|
<bean ref="routeWrapper" method="executeThrift"/>
|
|
</route>
|
|
|
|
</camelContext>
|
|
|
|
</beans>
|