I'm looking for toward evolving my app to use an OSGi framework. Eclipse Equinox appears to be a good choice as implementation... and I'm interrested by the Virgo server.

But what do you think of this implementation? Have you ever used it? Pain or gain?

Regards,

Eric

link|improve this question

69% accept rate
feedback

closed as not constructive by Bill the Lizard Apr 30 at 12:45

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 3 down vote accepted

I would say that it does not matter much which OSGi framework implementation you choose. All of them implement the same specification and work fine. In fact, I would encourage you to test anything you build on all of them, to make sure you're not getting locked in to extensions or behavior that might be container specific. So either Eclipse Equinox, Apache Felix or Knopflerfish (these are the best known open source implementations).

I have built lots of systems on OSGi over the last eight years, and I like the modularity, dynamics and especially service layer it provides. You do need to spend some effort learning to use it correctly, but once you do, you'll never look back (okay, I never did, others might have a different opinion :) ).

link|improve this answer
feedback

Yes, Equinox is widely used (besides Virgo, Eclipse RCP, to list just two) and very reliable. We rely on it within a number of critical systems. If you have decided to go with OSGi, then Equinox is a safe choice.

link|improve this answer
feedback

I've used Equinox on a number of projects and find it a very good choice. Recently we started evaluating Virgo (in a development environment) and thus far no real issues yet.

What I find really interesting about Virgo is it's bundle pickup directory, which makes it very easy to quickly (re)deploy bundles. You just have to copy the bundle to the pickup directory and Virgo detects changes and redeploys it. Really useful, especially in a development environment when you frequently want to deploy and test your changes.

Also the vsh (an Equinox Console Extension in Virgo) offers more insights and helps analyzing what might be wrong with a bundle when it don't gets started.

So I'd definitely recommend to give Virgo a try, it has some nice features that make it really easy to work with. And AFAIK, it seems stable.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.