You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Freeman Fang (JIRA)" <ji...@apache.org> on 2008/06/20 11:05:00 UTC

[jira] Created: (CAMEL-622) cxf-camel component should figure out a way to make the cxf bus create inside it retrievable

cxf-camel component should figure out a way to make the cxf bus create inside it retrievable
--------------------------------------------------------------------------------------------

                 Key: CAMEL-622
                 URL: https://issues.apache.org/activemq/browse/CAMEL-622
             Project: Apache Camel
          Issue Type: Improvement
          Components: camel-cxf
            Reporter: Freeman Fang
             Fix For: 1.4.0


recently camel-cxf components add new feature CAMEL-614, in this change CxfProducer create a new cxf bus in such case,  see the code below
if (endpoint.getApplicationContext() != null) {
            SpringBusFactory bf = new SpringBusFactory(endpoint.getApplicationContext());
            bus = bf.createBus();
}

we need this bus create inside camel-cxf retrievable , maybe add it into CamelContext can address it

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (CAMEL-622) cxf-camel component should figure out a way to make the cxf bus create inside it retrievable

Posted by "Willem Jiang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Willem Jiang reassigned CAMEL-622:
----------------------------------

    Assignee: Willem Jiang

> cxf-camel component should figure out a way to make the cxf bus create inside it retrievable
> --------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-622
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-622
>             Project: Apache Camel
>          Issue Type: Improvement
>          Components: camel-cxf
>            Reporter: Freeman Fang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>
> recently camel-cxf components add new feature CAMEL-614, in this change CxfProducer create a new cxf bus in such case,  see the code below
> if (endpoint.getApplicationContext() != null) {
>             SpringBusFactory bf = new SpringBusFactory(endpoint.getApplicationContext());
>             bus = bf.createBus();
> }
> we need this bus create inside camel-cxf retrievable , maybe add it into CamelContext can address it

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-622) cxf-camel component should figure out a way to make the cxf bus create inside it retrievable

Posted by "Willem Jiang (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43645#action_43645 ] 

Willem Jiang commented on CAMEL-622:
------------------------------------

Just committed a patch which could enable the setDefaultBus option from spring.
http://svn.apache.org/viewvc?rev=670454&view=rev

Also updated the wiki page  http://cwiki.apache.org/CAMEL/cxf.html



> cxf-camel component should figure out a way to make the cxf bus create inside it retrievable
> --------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-622
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-622
>             Project: Apache Camel
>          Issue Type: Improvement
>          Components: camel-cxf
>            Reporter: Freeman Fang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>
> recently camel-cxf components add new feature CAMEL-614, in this change CxfProducer create a new cxf bus in such case,  see the code below
> if (endpoint.getApplicationContext() != null) {
>             SpringBusFactory bf = new SpringBusFactory(endpoint.getApplicationContext());
>             bus = bf.createBus();
> }
> we need this bus create inside camel-cxf retrievable , maybe add it into CamelContext can address it

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (CAMEL-622) cxf-camel component should figure out a way to make the cxf bus create inside it retrievable

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Freeman Fang closed CAMEL-622.
------------------------------


thanks Willem

> cxf-camel component should figure out a way to make the cxf bus create inside it retrievable
> --------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-622
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-622
>             Project: Apache Camel
>          Issue Type: Improvement
>          Components: camel-cxf
>            Reporter: Freeman Fang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>
> recently camel-cxf components add new feature CAMEL-614, in this change CxfProducer create a new cxf bus in such case,  see the code below
> if (endpoint.getApplicationContext() != null) {
>             SpringBusFactory bf = new SpringBusFactory(endpoint.getApplicationContext());
>             bus = bf.createBus();
> }
> we need this bus create inside camel-cxf retrievable , maybe add it into CamelContext can address it

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CAMEL-622) cxf-camel component should figure out a way to make the cxf bus create inside it retrievable

Posted by "Willem Jiang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Willem Jiang resolved CAMEL-622.
--------------------------------

    Resolution: Fixed

committed a quick fix for it   http://svn.apache.org/viewvc?rev=669838&view=rev
, also update the wiki page http://cwiki.apache.org/CAMEL/cxf.html

> cxf-camel component should figure out a way to make the cxf bus create inside it retrievable
> --------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-622
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-622
>             Project: Apache Camel
>          Issue Type: Improvement
>          Components: camel-cxf
>            Reporter: Freeman Fang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>
> recently camel-cxf components add new feature CAMEL-614, in this change CxfProducer create a new cxf bus in such case,  see the code below
> if (endpoint.getApplicationContext() != null) {
>             SpringBusFactory bf = new SpringBusFactory(endpoint.getApplicationContext());
>             bus = bf.createBus();
> }
> we need this bus create inside camel-cxf retrievable , maybe add it into CamelContext can address it

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-622) cxf-camel component should figure out a way to make the cxf bus create inside it retrievable

Posted by "Willem Jiang (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43617#action_43617 ] 

Willem Jiang commented on CAMEL-622:
------------------------------------

I can add a option(setDefaultBus) in the CXFEndpoint, If you want the bus be retrievable just set this option true.

> cxf-camel component should figure out a way to make the cxf bus create inside it retrievable
> --------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-622
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-622
>             Project: Apache Camel
>          Issue Type: Improvement
>          Components: camel-cxf
>            Reporter: Freeman Fang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>
> recently camel-cxf components add new feature CAMEL-614, in this change CxfProducer create a new cxf bus in such case,  see the code below
> if (endpoint.getApplicationContext() != null) {
>             SpringBusFactory bf = new SpringBusFactory(endpoint.getApplicationContext());
>             bus = bf.createBus();
> }
> we need this bus create inside camel-cxf retrievable , maybe add it into CamelContext can address it

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-622) cxf-camel component should figure out a way to make the cxf bus create inside it retrievable

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-622?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43636#action_43636 ] 

Freeman Fang commented on CAMEL-622:
------------------------------------

can we set this option also from spring file?

> cxf-camel component should figure out a way to make the cxf bus create inside it retrievable
> --------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-622
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-622
>             Project: Apache Camel
>          Issue Type: Improvement
>          Components: camel-cxf
>            Reporter: Freeman Fang
>            Assignee: Willem Jiang
>             Fix For: 1.4.0
>
>
> recently camel-cxf components add new feature CAMEL-614, in this change CxfProducer create a new cxf bus in such case,  see the code below
> if (endpoint.getApplicationContext() != null) {
>             SpringBusFactory bf = new SpringBusFactory(endpoint.getApplicationContext());
>             bus = bf.createBus();
> }
> we need this bus create inside camel-cxf retrievable , maybe add it into CamelContext can address it

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.