running java app on osgi runtime...
New <[email protected]> Tue, 9 Sep 2008 08:57:56 -0700 (PDT)
| Newsgroups | gmane.comp.mozilla.devel.java |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <091c750f-7f70-4c64-a9d9-e17090709444__37835.2839769379$1220976155$gmane$org@j22g2000hsf.googlegroups.com> |
I have a java program which validates html document and outputs the validation results. The java program uses a few eclipse user interface plugins. Now I want to get rid of the user interface plugins of eclipse and run the java program on OSGi runtime. I managed to get rid of the user interface plugins of eclipse in the java program. Now I am trying figure out OSGi runtime to run the java application without eclipse user interface plugins. Can anyone provide me a few tips on how to figure out OSGi runtime to run the java application? I read the following articles http://www.eclipsezone.com/eclipse/forums/m92245813.html http://docs.codehaus.org/display/GUMTREE/Running+Equinox+OSGi Did not help my situation. Currently i have the following in the config.ini file... #Eclipse Runtime Configuration File osgi.bundles=org.eclipse.equinox.common@2:start, org.eclipse.update.configurator@start, org.eclipse.ui@start, myapp.validation@start org.osgi.framework.bootdelegation=fwk osgi.parentClassloader=boot osgi.bundles.defaultStartLevel=6 Regards --New..