I am trying to get a web service client working from OSGi, I am using Felix as my container.
So far I have tried using Apache CXF. This would not work with my web service as it is RPC/encoded and not supported when I try to generate stubs. I used apache Axis to generate my stubs and now I am running into issues w/ dependencies in my bundles. As my bundles are deployed I get dependencies w/ dependencies of the the apache bundles.
I have am using maven for my builds and have used the maven-bundle-plugin with a bundleall goal to get the dependency bundles, but still run into issues with the bundle dependencies. I would really like to use osgi, as the pluggable nature through bundles is exactly what I need, however I am spending a lot of time chasing down bundle dependencies.
Are there any clear cut examples of consuming a SOAP web service from OSGi, including how to resolve the dependencies?