OK. The client should be loading the readers/writers from the relevant
META-INF/service files.
I am guessing at the META-INF/service cannot be found due to OSGi
class loading behavior. Note that we do intend to make all jersey
modules OSGi modules but at the moment this is not the case.
One way you may be able to work around this is to explicitly register
the Feed reader:
ClientConfig cc = new DefaultClientConfig();
cc
.getClasses
().add
(com.sun.jersey.atom.abdera.impl.provider.entity.FeedProvider.class)
Client c = new Client(cc);
Paul.
>
> --
> View this message in context: http://n2.nabble.com/Abdera-Feeds-not-usable-in-Eclipse-OSGi-tp3472905p3478104.html > Sent from the Jersey mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_jersey.dev.java.net
> For additional commands, e-mail: users-help_at_jersey.dev.java.net
>