Re: Communication between two Karaf containers

2016-04-05 Thread Scott Lewis
On 4/5/2016 3:51 AM, Timothy Ward wrote: One thing to add is that Aries RSA is only one of a variety of OSGi Remote Services Admin implementations. Here's [1] a link to a list of spec implementations. There are multiple Open Source and commercial implementations available, and the entire

Re: Communication between two Karaf containers

2016-04-05 Thread Jean-Baptiste Onofré
Hi, you also have Cellar with DOSGi. Regards JB On 04/05/2016 12:07 PM, Christian2 wrote: Hello! I'd like to know, if it is possible to "communicate" between two seperate Karaf containers. One container would start openHAB and another one universAAL. I know, that this does not sound like a

Re: zk-sandbox war not working in Karaf 4.0.0

2016-04-05 Thread Ken Longnan
Dear all, I just retested it with karaf 4.0.4 and zksandbox 8.0.1.1 war, still same issue. The same issue was also reported in zk forum, it was fixed by change setting in Tomcat, but the detail not posted yet.

Re: Deploy datasource config with feature.xml

2016-04-05 Thread ellirael
Could it be related somehow to: http://karaf.922171.n3.nabble.com/Factory-config-in-feature-xml-td4045530.html -- View this message in context: http://karaf.922171.n3.nabble.com/Deploy-datasource-config-with-feature-xml-tp4045941p4046177.html Sent from the Karaf - User mailing list archive at

Re: Communication between two Karaf containers

2016-04-05 Thread Christian2
Thank you for your recommendation. I'll take a look into it. - Christian -- View this message in context: http://karaf.922171.n3.nabble.com/Communication-between-two-Karaf-containers-tp4046170p4046176.html Sent from the Karaf - User mailing list archive at Nabble.com.

Re: Communication between two Karaf containers

2016-04-05 Thread Christian Schneider
Fully agree. Also the contact between your own code and any Remote Services Admin impl is really small. So you can easily switch. Christian On 05.04.2016 12:51, Timothy Ward wrote: One thing to add is that Aries RSA is only one of a variety of OSGi Remote Services Admin implementations.

Re: Communication between two Karaf containers

2016-04-05 Thread Timothy Ward
One thing to add is that Aries RSA is only one of a variety of OSGi Remote Services Admin implementations. There are multiple Open Source and commercial implementations available, and the entire specification is pluggable, so it’s possible to use discovery from one implementation with the

Re: Communication between two Karaf containers

2016-04-05 Thread Christian Schneider
You can try with Aries RSA. http://aries.apache.org/modules/rsa.html It allows to communicate remotely using OSGi services. The Aries code provides a light weight TCP provider. Alternatively you can use the provider from CXF-DOSGi which supports SOAP and REST but it sounded like you are

AW: Where to get JDBC drivers?

2016-04-05 Thread Walzer, Thomas
install -s mvn:mysql/mysql-connector-java/5.1.26 should also work (substitute the version with a current one). Cheers, Thomas. -Ursprüngliche Nachricht- Von: J_S [mailto:sanzharovskay...@gmail.com] Gesendet: Samstag, 02. April 2016 19:42 An: user@karaf.apache.org Betreff: Re: Where to

Communication between two Karaf containers

2016-04-05 Thread Christian2
Hello! I'd like to know, if it is possible to "communicate" between two seperate Karaf containers. One container would start openHAB and another one universAAL. I know, that this does not sound like a good solution, but I already had several problems getting both together. So what I have in mind

Re: Working WebSocket example?

2016-04-05 Thread Aki Yoshida
Hi, I have just added an osgi (blueprint) version of that cxf websocket sample to cxf's sample distribution. It should work on both karat 3.0.x and 4.0.x out of the box. https://github.com/apache/cxf/tree/master/distribution/src/main/release/samples/jax_rs/websocket_osgi There is also a node.js

Re: Working WebSocket example?

2016-04-05 Thread Vincent Zurczak
Hi, You can also take a look at this implementation [0]. We manually register a web socket servlet in the OSGi service [1] [2]. It is a little more complicated that just an example. The reason is that we need to inject iPojo components in our web sockets. But anyway, it may help. BTW, it works