Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <blueprint
- xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:cxf="http://cxf.apache.org/blueprint/core"
- xmlns:camelcxf="http://camel.apache.org/schema/blueprint/cxf"
- xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
- xmlns:jaxws="http://cxf.apache.org/blueprint/jaxws"
- xsi:schemaLocation="
- http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
- http://camel.apache.org/schema/cxf http://camel.apache.org/schema/cxf/camel-cxf.xsd http://camel.apache.org/schema/blueprint
- http://camel.apache.org/schema/blueprint/camel-blueprint.xsd http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0
- http://svn.apache.org/repos/asf/aries/trunk/blueprint/blueprint-cm/src/main/resources/org/apache/aries/blueprint/compendium/cm/blueprint-cm-1.1.0.xsd
- http://cxf.apache.org/blueprint/core http://cxf.apache.org/schemas/blueprint/core.xsd
- http://cxf.apache.org/blueprint/jaxws http://cxf.apache.org/schemas/blueprint/jaxws.xsd">
- <camelcxf:cxfEndpoint id="xxxxxx"
- address="/api/external/WontdiscloseService"
- serviceClass="deleted.replace">
- <camelcxf:properties>
- <entry key="dataFormat" value="PAYLOAD" />
- <!-- ======= USED IN CASE OF JAAS WSS UsernameToken authentication =========== -->
- <!--
- <entry key="ws-security.validate.token" value="false" />
- <entry key="ws-security.ut.no-callbacks" value="true"/>
- -->
- </camelcxf:properties>
- <camelcxf:outInterceptors>
- <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"/>
- </camelcxf:outInterceptors>
- <camelcxf:inInterceptors>
- <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"/>
- <!-- ======= USED IN CASE OF JAAS WSS UsernameToken authentication =========== -->
- <!--
- <ref component-id="wsSecInterceptor" />
- <ref component-id="authenticationInterceptor"/>
- -->
- </camelcxf:inInterceptors>
- </camelcxf:cxfEndpoint>
- <!-- ======= USED IN CASE OF JAAS WSS UsernameToken authentication =========== -->
- <!--
- <bean id="authenticationInterceptor"
- class="org.apache.cxf.interceptor.security.JAASLoginInterceptor">
- <property name="contextName" value="karaf"/>
- </bean>
- <bean id="wsSecInterceptor" class="org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor">
- <argument>
- <map>
- <entry key="action" value="UsernameToken"/>
- <entry key="passwordType" value="PasswordText"/>
- </map>
- </argument>
- </bean>
- -->
- <camelContext xmlns="http://camel.apache.org/schema/blueprint" id="OrgApiWs">
- <route id="xxxxxxRoute">
- <from uri="xxxxxx" />
- <to uri="log:wsorganization?level=DEBUG" />
- <to uri="vm:xxx.task" />
- <to uri="vm:egov.logging" />
- </route>
- </camelContext>
- </blueprint>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement