
drools.drools-camel-cxf-server.src.main.resources.OSGI-INF.blueprint.camel-server.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxrs="http://cxf.apache.org/blueprint/jaxrs" xmlns:cxf="http://camel.apache.org/schema/blueprint/cxf" xmlns:cxf-core="http://cxf.apache.org/blueprint/core" xsi:schemaLocation=" http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd http://cxf.apache.org/blueprint/jaxrs http://cxf.apache.org/schemas/blueprint/jaxrs.xsd http://camel.apache.org/schema/blueprint/cxf http://camel.apache.org/schema/blueprint/cxf/camel-cxf.xsd http://cxf.apache.org/blueprint/core http://cxf.apache.org/schemas/blueprint/core.xsd"> <!-- Bean trim request string --> <bean id="messageBodyReader" class="org.kie.jax.rs.CommandMessageBodyReader" /> <!-- Bean add support drools, catch rest request and run KIE Commands--> <bean id="kiePolicy" class="org.kie.camel.component.KiePolicy" /> <!-- Apache Camel Rest Server --> <cxf:rsServer id="restKieServer" address="/rest" serviceClass="org.kie.jax.rs.CommandExecutorImpl"> <cxf:providers> <ref component-id="messageBodyReader" /> </cxf:providers> </cxf:rsServer> <!-- CAMEL --> <camelContext id="camel" xmlns="http://camel.apache.org/schema/blueprint"> <dataFormats> <xstream id="xstream-default" permissions="org.drools.core.command.**,org.apache.servicemix.examples.drools.**"/> </dataFormats> <!-- Route catch REST request and forward request to Kie Policy Bean--> <route> <from uri="cxfrs:bean:restKieServer" /> <policy ref="kiePolicy"> <unmarshal ref="xstream-default" /> <to uri="kie:simpleRuleKSession" /> <marshal ref="xstream-default" /> </policy> </route> </camelContext> </blueprint>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy