Reputation: 408
Can I write a kura program that uses in kaa?
I want to use kura and kaa together in a project.
can i do that?
Upvotes: 0
Views: 253
Reputation: 74
I've tried to use Kaa in a Kura bundle and it did work. Just import the SDK jar into your kura project, and
In active(), you initialize Kaa and call
kaaClient.start();
In deactivate(),
kaaClient.stop()
Upvotes: 1
Reputation: 461
Unfortunately, no one has attempted to use Kaa+Kura that I know of. You would have to supply more information on what it is you are trying to do. Also, it may be worth while asking the Kaa community if Kaa works well in a Java/OSGi environment.
Thanks,
--Dave
Upvotes: 1