I could solve the last post, where I mention the Exception about 'cxf' bean.
In your beans.xml or camel-config.xml you have to put this source:
<bean id="cxf" class="org.apache.cxf.bus.CXFBusImpl"/>
Then, go to pom.xml and put this dependendy and this import:
Dependency:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-cxf</artifactId>
<version>${camel.version}</version>
</dependency>
Import:
<Import-Package>
...,
org.apache.cxf.bus
</Import-Package>
This way I could solve it.
--
View this message in context:
http://camel.465427.n5.nabble.com/Problem-with-multiple-CXF-services-using-the-same-https-port-tp3379301p5467423.html
Sent from the Camel - Users mailing list archive at Nabble.com.