Re: impl cxf bus

2017-04-04 Thread Romain Manni-Bucau
2017-04-04 7:30 GMT+02:00 syadav <b.srisai...@gmail.com>: > And this I want in java code no xml. I dont want to use any xmls > > > > -- > View this message in context: http://camel.465427.n5.nabble. > com/impl-cxf-bus-tp5796887p5796888.html > Sent from the Camel - Users mailing list archive at Nabble.com. >

Re: impl cxf bus

2017-04-04 Thread syadav
And this I want in java code no xml. I dont want to use any xmls -- View this message in context: http://camel.465427.n5.nabble.com/impl-cxf-bus-tp5796887p5796888.html Sent from the Camel - Users mailing list archive at Nabble.com.

impl cxf bus

2017-04-04 Thread syadav
Hi I want to implement a custom cxf bus for tomee as tomee is not able to create cxf bus. So i what to implement cxf bus and force the tomee to use this implemented class Please help me this. Thanks -- View this message in context: http://camel.465427.n5.nabble.com/impl-cxf-bus-tp5796887

Re: cxf bus

2013-11-05 Thread Willem jiang
-- View this message in context: http://camel.465427.n5.nabble.com/cxf-bus-tp5742573p5742626.html Sent from the Camel - Users mailing list archive at Nabble.com (http://Nabble.com).

Re: cxf bus

2013-11-05 Thread Ernest Lu
.nabble.com/cxf-bus-tp5742573p5742637.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: cxf bus

2013-11-04 Thread Willem jiang
:698 -- stopped o.e.j.s.h.ContextHandler{,null} 2013-11-04 14:46:37 INFO org.eclipse.jetty.server.handler.ContextHandler:698 -- stopped o.e.j.s.h.ContextHandler{,null} -- View this message in context: http://camel.465427.n5.nabble.com/cxf-bus-tp5742573p5742578.html Sent from

Re: cxf bus

2013-11-04 Thread Ernest Lu
.nabble.com/cxf-bus-tp5742573p5742623.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: cxf bus

2013-11-04 Thread Ernest Lu
.465427.n5.nabble.com/cxf-bus-tp5742573p5742624.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: cxf bus

2013-11-04 Thread Ernest Lu
-- View this message in context: http://camel.465427.n5.nabble.com/cxf-bus-tp5742573p5742626.html Sent from the Camel - Users mailing list archive at Nabble.com.

cxf bus

2013-11-03 Thread Ernest Lu
hi, When remove a cxf route,camel will shut down the cxf bus,so the other cxf routes won't work. -- View this message in context: http://camel.465427.n5.nabble.com/cxf-bus-tp5742573.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: cxf bus

2013-11-03 Thread Willem jiang
What’s your camel route looks like? You may need to specify another CXF bus for other camel-cxf route to use. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com (http

Re: cxf bus

2013-11-03 Thread Ernest Lu
org.eclipse.jetty.server.handler.ContextHandler:698 -- stopped o.e.j.s.h.ContextHandler{,null} 2013-11-04 14:46:37 INFO org.eclipse.jetty.server.handler.ContextHandler:698 -- stopped o.e.j.s.h.ContextHandler{,null} -- View this message in context: http://camel.465427.n5.nabble.com/cxf-bus-tp5742573p5742578.html Sent from the Camel

Re: Defining a CXF bus in Blueprint for use with cxfbean endpoint

2011-11-24 Thread Brian Topping
On Nov 23, 2011, at 4:40 PM, Daniel Kulp wrote: No. At that point, you start actually using parts of CXF's blueprint support: http://cxf.apache.org/schemas/blueprint/core.xsd Use: cxf:bus xmlns:cxf=http://cxf.apache.org/blueprint/core; name=cxf .. /cxf:bus Dan Thanks

Re: Defining a CXF bus in Blueprint for use with cxfbean endpoint

2011-11-23 Thread Brian Topping
Some more details about what I am doing. I've distilled the configuration down to what's below. It's Camel 2.9-SNAPSHOT running on Karaf 2.2.4, with CXF 2.4.3. About five lines from the end, there are two endpoints that I've been trying to work with. The first one with cxfbean works fine,

Re: Defining a CXF bus in Blueprint for use with cxfbean endpoint

2011-11-23 Thread Claus Ibsen
From the XSD http://camel.apache.org/schema/blueprint/cxf/camel-cxf.xsd I can see a bus attribute. I would assume the blueprint XSD is very similar to the Spring XSD, where you can set a bus etc. On Wed, Nov 23, 2011 at 6:03 PM, Brian Topping topp...@codehaus.org wrote: Some more details

Re: Defining a CXF bus in Blueprint for use with cxfbean endpoint

2011-11-23 Thread Brian Topping
On Nov 23, 2011, at 12:05 PM, Claus Ibsen wrote: From the XSD http://camel.apache.org/schema/blueprint/cxf/camel-cxf.xsd I can see a bus attribute. Thanks Claus. I guess you must be talking about the element at line 54, as I mentioned that's a child of the cxfEndpoint. It seems like a

Re: Defining a CXF bus in Blueprint for use with cxfbean endpoint

2011-11-23 Thread Daniel Kulp
On Wednesday, November 23, 2011 12:03:08 PM Brian Topping wrote: Some more details about what I am doing. I've distilled the configuration down to what's below. It's Camel 2.9-SNAPSHOT running on Karaf 2.2.4, with CXF 2.4.3. About five lines from the end, there are two endpoints that I've

Defining a CXF bus in Blueprint for use with cxfbean endpoint

2011-11-22 Thread Brian Topping
Hi all, I'd like to secure a cxfbean resource using Spring Security and SS authorization annotations. To do so, it appears that it will require adding an interceptor to the CXF endpoint as an element of a bus. So far, I have been trying to do everything in blueprint. But it doesn't appear