Hi,
You need to check for 3 things
a> Does your maven bundle plugin import META-INF.cxf ?
b> Does your bundle plugin have the following ?
<Require-Bundle>org.apache.cxf.bundle</Require-Bundle>
c> Do you have the cxf-osgi & camel-cxf bundles deployed ?
The cxf bundle is deployed by cxf-osgi... The META-INF.cxf is
available through the cxf bundle in Karaf/Servicemix...
I have pasted an example of the bundle plugin below. Hope it helps you
out...
Cheers,
Ashwin...
============== Maven Bundle Plugin Sample =====================
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${maven-bundle-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Import-Package>
*,
javax.jws,
javax.wsdl,
javax.xml.bind,
javax.xml.bind.annotation,
javax.xml.namespace,
javax.xml.ws,
META-INF.cxf,
org.apache.cxf.bus,
org.apache.cxf.bus.spring,
org.apache.cxf.bus.resource,
org.apache.cxf.configuration.spring,
org.apache.cxf.resource,
....
</Import-Package>
<Require-Bundle>org.apache.cxf.bundle</Require-Bundle>
</instructions>
</configuration>
</plugin>
====================================
-----
---------------------------------------------------------
Ashwin Karpe
Apache Camel Committer & Sr Principal Consultant
FUSESource (a Progress Software Corporation subsidiary)
http://fusesource.com
Blog: http://opensourceknowledge.blogspot.com
---------------------------------------------------------
--
View this message in context:
http://camel.465427.n5.nabble.com/META-INF-cxf-tp4974554p4979379.html
Sent from the Camel - Users mailing list archive at Nabble.com.