osgi-jax-rs-connector
osgi-jax-rs-connector copied to clipboard
An OSGi - JAX-RS 2.0 Connector, software repository available on the link below
My Setup is basically like the code below - my Root Rest Resources depend on other Services which created and injected just fine by Felix. ``` @Component(immediate = true, service...
I just had this in my log file: ``` Caused by: java.lang.NullPointerException at com.eclipsesource.jaxrs.publisher.internal.ServiceContainer$Finder.findServiceHolder(ServiceContainer.java:113) at com.eclipsesource.jaxrs.publisher.internal.ServiceContainer.find(ServiceContainer.java:52) at com.eclipsesource.jaxrs.publisher.internal.JAXRSConnector.cacheFreedResources(JAXRSConnector.java:153) at com.eclipsesource.jaxrs.publisher.internal.JAXRSConnector.doRemoveHttpService(JAXRSConnector.java:145) at com.eclipsesource.jaxrs.publisher.internal.JAXRSConnector.removeHttpService(JAXRSConnector.java:138) at com.eclipsesource.jaxrs.publisher.internal.HttpTracker.removedService(HttpTracker.java:38) at org.osgi.util.tracker.ServiceTracker$Tracked.customizerRemoved(ServiceTracker.java:967)[org.osgi.core-6.0.0.jar:] at org.osgi.util.tracker.ServiceTracker$Tracked.customizerRemoved(ServiceTracker.java:870)[org.osgi.core-6.0.0.jar:] at org.osgi.util.tracker.AbstractTracked.untrack(AbstractTracked.java:341)[org.osgi.core-6.0.0.jar:]...
Hey, We're using the consumer (only the consumer) in our application. We have a GET method that might return null, and a POST method that returns void. Both cases don't...
I have working application using jersey 2.8 and publisher 4.1 I am trying to upgrade jersey to 2.22.2 and publisher to 5.3.1. Now when I run I get this exception:...
It looks like the Jackson JAX-RS provider is included in the jersey-all.jar so I think it is just a matter of registering the provider as a service component.
Jax-Rs works great, thanks a lot for your work :) Now, however, using it in production I see a lot of open sockets on my linux server in state FIN_WAIT2....
Hi, the ConsumerPublisher does not allow to specify a custom client configuration. It will be easy to extend it and allow a ClientConfig when we publish a consumer.The use case...
I need a way to get the root path for the registered resources. I tried registering a ConfigurationListener, and while I get the event when I configure the service root,...
In a Karaf 3.x environment with Jolokia feature installed, I want to enable the Jersey MBeans feature to fetch statistics for all my resources. First, I tried with just exposing...
The example won't get activated until we install the consumer manually like below install mvn:com.eclipsesource.jaxrs/consumer/5.3.1 but the step is not mentioned in the instructions file.