You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Edstrom Johan (JIRA)" <ji...@apache.org> on 2011/04/29 21:17:03 UTC

[jira] [Commented] (CAMEL-3452) camel-cxf - Add support for blueprint namespace parser for the camel-cxf.xsd schema

    [ https://issues.apache.org/jira/browse/CAMEL-3452?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13027150#comment-13027150 ] 

Edstrom Johan commented on CAMEL-3452:
--------------------------------------

Preparing for check-in, camel-cxf Blueprint endpoint can now parse things like 


{code:xml}
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0"
           xmlns:camel-cxf="http://camel.apache.org/schema/blueprint/cxf"
	   xmlns:cxfcore="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">



<camel-cxf:cxfEndpoint id="routerEndpoint"
                     address="http://localhost:9001/router"
                     serviceClass="org.apache.servicemix.examples.cxf.HelloWorld">
        <camel-cxf:properties>
            <entry key="dataFormat" value="MESSAGE"/>
        </camel-cxf:properties>
    </camel-cxf:cxfEndpoint>

<camel-cxf:cxfEndpoint id="serviceEndpoint"
			address="http://localhost:9000/SoapContext/SoapPort"
                     serviceClass="org.apache.servicemix.examples.cxf.HelloWorld">
    </camel-cxf:cxfEndpoint>

    <camelContext xmlns="http://camel.apache.org/schema/blueprint">
        <route>
            <from uri="routerEndpoint"/>
            <to uri="log:request"/>
        </route>
    </camelContext>

</blueprint>

{code}

> camel-cxf - Add support for blueprint namespace parser for the camel-cxf.xsd schema
> -----------------------------------------------------------------------------------
>
>                 Key: CAMEL-3452
>                 URL: https://issues.apache.org/jira/browse/CAMEL-3452
>             Project: Camel
>          Issue Type: New Feature
>          Components: camel-blueprint, camel-cxf
>    Affects Versions: 2.5.0
>            Reporter: Claus Ibsen
>            Assignee: Edstrom Johan
>             Fix For: 2.8.0
>
>
> The schema for camel-cxf
> http://camel.apache.org/schema/cxf/camel-cxf.xsd
> Needs a blueprint namepsace parser so we can use CXF in blueprint XML files.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira