You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the latest SNAPSHOT and doing a feature install openhab-binding-helios the following gets thrown:
2023-06-13 19:53:14.188 [ERROR] [nal.common.AbstractInvocationHandler] - An error occurred while calling method 'ThingHandler.initialize()' on 'org.openhab.binding.helios.internal.handler.HeliosHandler221@47cbdc8c': java.lang.ClassNotFoundException
java.lang.RuntimeException: java.lang.ClassNotFoundException
at javax.ws.rs.client.ClientBuilder.newBuilder(ClientBuilder.java:50) ~[?:?]
at org.openhab.binding.helios.internal.handler.HeliosHandler221.initialize(HeliosHandler221.java:174) ~[?:?]
at jdk.internal.reflect.GeneratedMethodAccessor93.invoke(Unknown Source) ~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
at org.openhab.core.internal.common.AbstractInvocationHandler.invokeDirect(AbstractInvocationHandler.java:147) ~[?:?]
at org.openhab.core.internal.common.Invocation.call(Invocation.java:52) ~[?:?]
at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException
at javax.ws.rs.client.ClientFinder.newInstance(ClientFinder.java:120) ~[?:?]
which indicates that javax.ws.rs.client.ClientBuilder can not be found. This is strange, since this is provided by another feature because used by other bindings
then the only difference between the 2 is on the Require-Capability, which is effectively missing for the SNAPSHOT-4.x binding.
Why is the output from bundle:headers conflicting with the output of bundle:capabilities 62? for the latter it correctly identifies that the helios binding needs the client, but in the headers of the given bundle it is missing?
What am I missing here?
The text was updated successfully, but these errors were encountered:
Using the latest SNAPSHOT and doing a
feature install openhab-binding-helios
the following gets thrown:which indicates that javax.ws.rs.client.ClientBuilder can not be found. This is strange, since this is provided by another feature because used by other bindings
The karaf runtime reports the following:
and
It indicates to me that all is fine
if you now compare this: [316 = the Helios SNAPSHOT-4.0.0 binding]
openhab> bundle:headers 316
and this : [313 = Helios 3.0.x binding, which happens to work]
then the only difference between the 2 is on the Require-Capability, which is effectively missing for the SNAPSHOT-4.x binding.
Why is the output from bundle:headers conflicting with the output of bundle:capabilities 62? for the latter it correctly identifies that the helios binding needs the client, but in the headers of the given bundle it is missing?
What am I missing here?
The text was updated successfully, but these errors were encountered: