active questions tagged osgi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:57:00Zhttp://stackoverflow.com/feeds/tag/osgihttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1614215/is-there-a-maven-build-for-eclipselink-that-makes-the-osgi-bundles-run-in-felix-a5Is there a Maven build for eclipselink that makes the OSGi bundles run in Felix and others?Hanno Fietz2009-10-23T15:28:15Z2009-11-30T22:04:21Z
<p>The Eclipselink OSGi bundles seem have trouble working in some OSGi containers, notably Felix, because they fail to import packages (and that are exported by the system) that they actually require. One example is the missing import of <code>javax.xml.namespace</code> in the <code>core</code> bundle of the current 1.1.3 release.</p>
<p>The eclipselink team has targeted this type of issues by using the BND tool for the build process in versions 1.2 and 2.0, so once these are out, we can expect this problem to be gone.</p>
<p>In the meantime, has anybody set up and published a Maven build from the eclipselink sources that does the bundling right?</p>
http://stackoverflow.com/questions/1818778/what-is-the-underline-theme-in-osgi0What is the underline theme in OSGi?hardik2009-11-30T09:34:56Z2009-11-30T09:34:56Z
<p>OSGi - dynamic modular system for Java. Ok, but what is the base line theme, why OSGi has been developed? What are the benifits of using OSGi? What is the main story of developing the OSGi? Why it is?</p>
<p>Waiting for kind response.</p>
http://stackoverflow.com/questions/1816606/what-does-tool-bundle-name-export-package-etc-mean-in-a-jar-manifest1What does Tool/Bundle-Name/Export-Package etc. mean in a jar manifestleeeroy2009-11-29T20:03:54Z2009-11-30T09:23:12Z
<p>I'm looking at the manifest.mf for some apache libraries. While I can guess what Export-Package means, I can't find any documentation for these attributes ? Could anyone point me in the right direction.
Here.s an example:</p>
<pre><code>Manifest-Version: 1.0
Created-By: 1.6.0_07 (Sun Microsystems Inc.)
Built-By: pemben
Implementation-Title: Commons BeanUtils
Implementation-Vendor: The Apache Software Foundation
Implementation-Vendor-Id: org.apache
Implementation-Version: 1.8.2
Specification-Title: Commons BeanUtils
Specification-Vendor: The Apache Software Foundation
Specification-Version: 1.8.2
Export-Package: org.apache.commons.beanutils.locale.converters;
Private-Package: org.apache.commons.collections;version="1.8.2"
Ignore-Package: org.apache.commons.collections
Tool: Bnd-0.0.238
Bundle-Name: Commons BeanUtils
Bundle-Vendor: The Apache Software Foundation
Bundle-Version: 1.8.2
Bnd-LastModified: 1257775355133
Bundle-ManifestVersion: 2
Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt
Bundle-Description: BeanUtils provides an easy-to-use but flexible wra
pper around reflection and introspection.
Import-Package: org.apache.commons.beanutils;version="1.8.2"
Bundle-SymbolicName: org.apache.commons.beanutils
Bundle-DocURL: http://commons.apache.org/beanutils/
</code></pre>
http://stackoverflow.com/questions/1817214/i-want-to-load-my-osgi-jar-files-from-a-database-or-other-source0I want to load my OSGI jar files from a database or other source.mP2009-11-30T00:01:13Z2009-11-30T09:18:31Z
<p>Do i need to supply a custom ClassLoader ? Thinking out loud this does not appear to be the right approach because inside the classloader one does not know the required version.</p>
http://stackoverflow.com/questions/1818160/with-osgi-how-does-one-pass-parameters-from-a-host-to-a-embedded-bundle0With OSGI how does one pass parameters from a host to a embedded bundle.mP2009-11-30T06:29:32Z2009-11-30T06:29:32Z
<p>In the end i will perhaps provide a helper so that the activator can import and export services and other types of meta data about the system.</p>
http://stackoverflow.com/questions/1491783/split-away-selection-service-from-o-e-ui-workbench-bundle0Split away Selection Service from o.e.ui.workbench bundleSuraj Chandran2009-09-29T10:37:30Z2009-11-28T01:53:56Z
<p>I want to use <strong>Selection Service</strong> feature from the eclipse RCP in my swing project. Currently the o.e.ui.workbench bundle which contains the related interface is around 3.7 MB, that's way too huge for our requirement</p>
<ol>
<li>Is there any way to split it the workbench to get only the selection service</li>
<li>Are there distros already for this</li>
<li>Is it leagal to do so. Are there any licencse issues?</li>
</ol>
http://stackoverflow.com/questions/1798381/is-there-a-way-to-secure-access-to-bundles-in-osgi2Is there a way to secure access to bundles in OSGi?Hanno Fietz2009-11-25T17:00:00Z2009-11-26T17:51:33Z
<p>I have an application consisting of several OSGi bundles. I would like to enforce that some of them only provide other bundles access to their services if a valid token (e. g. a license key) has been presented.</p>
<p>Here's why I would want to restrict access to those bundles:</p>
<ul>
<li>Security: They don't have their own access policies because these depend on what application is using the bundle. This means they have to trust in the client bundle to have verified the permissions of the application or user they are representing. I would like to keep control over what access control schemes I trust.</li>
<li>Reliability: I allow and encourage the development of third-party modules to add functionality to my system. To be able to guarantee some reliability, I want to control at which level those extensions interact with my system. Also, I want to make sure that my own bundles are only used in combinations that have been tested.</li>
<li>Licensing: There might be functionality in some modules that can only be used with the proper license, or, I might want to ensure that customers can't swap bundles between different installations.</li>
</ul>
<p>I have read some about the <code>ServicePermission</code> class and related from the OSGi framework, but it appears to me that these let the site administrator control the access policy, as opposed to the bundle manufacturer, which is what I want.</p>
http://stackoverflow.com/questions/1705521/can-eclipse-3-5-discover-all-bundles-in-the-plugins-dir1Can Eclipse 3.5 discover all bundles in the plugins dir?inger2009-11-10T03:50:40Z2009-11-26T12:18:11Z
<p><strong>Simple usecase</strong>: assemble an Eclipse product using simple scripts, <em>just dumping bundles into the plugins dir</em>.
This used to work with 3.3 - with 3.5 it's broken: my application doesn't start as the app plugin is not found.</p>
<p><strong>Question</strong>: what's the easiest way to fix that? This seems to be the only pain in the whole upgrade process for me.</p>
<p><hr></p>
<p><strong>Attempts</strong>:
I guess this is a no-no for P2: it maintains the bundles.info file instead, which is probably very smart.. a bit too smart for me.</p>
<p>Some ideas I had:</p>
<ol>
<li>can I just skip P2 altogether and get back to plain old, simple -dirty- discovery mechanism? </li>
<li>can I set up plugins dir as a 'watched directory'
<ul>
<li>looks like I need to use the p2.reconciler for that.. oh wait, it's deprecated already :-( <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=251561#c18" rel="nofollow">bug 251561</a>.. (thanks VonC for the pointer)</li>
</ul></li>
<li>can this old setting in the config.ini still work? (which is now replaced with the 'simpleconfigurator') <code>osgi.bundles=org.eclipse.equinox.common@2:start, org.eclipse.update.configurator@3:start, org.eclipse.core.runtime@start</code></li>
<li>should I call the (p2) director?
"please pick my plugins up" :)</li>
<li>I'd avoid the dropin folder for this - that's more for the
end-users.</li>
<li>I'd avoid messing with the bundles.info if possible.</li>
</ol>
<p>I don't care about all those smart features in my product yet- actually the users don't use the built-in update mechanism at all.
So I'd like to KISS (ie: just to start up), and add more advanced support <em>when needed</em>.</p>
<p>I've asked this on <a href="http://www.eclipse.org/forums/index.php?t=tree&goto=336485&S=7746358f2b8b65fd82a1cb376a57c9ed#page%5Ftop" rel="nofollow">Eclipse forums</a>, but no answer yet, so would really be grateful for some enlightenment.
Also, feel free to correct me on the assumptions - I've just read the <a href="http://wiki.eclipse.org/Category%3AEquinox%5Fp2" rel="nofollow">P2 docs</a>, which seem confusing at times.
Thanks!</p>
<p><hr></p>
<p><strong>Answer</strong>: actually option 3 above seems to work after all - thanks <a href="http://stackoverflow.com/users/80906/francis-upton">Francis</a> for confirming this! (it didn't work originally, but that was probably caused by some missing deps).
My only issue with that now is, some Eclipse bundles actually require simpleconfigurator. So I wonder if swapping it out will cause problems down the line.</p>
http://stackoverflow.com/questions/1749667/osgi-like-framework-without-the-import-export-restrictions0osgi-like framework without the import/export restrictions?IttayD2009-11-17T15:31:01Z2009-11-20T01:38:50Z
<p>I like OSGi, but the import/export restrictions and the lack of context class loader creates havoc when trying to use 3rd party libraries (e.g., some libraries try to find file.xml in META-INF, expecting for all such files in all jars to be returned, other libraries use ServiceLoader).</p>
<p>I want OSGi's dynamic loading, ability for handling several versions of the same library, and service framework.</p>
<p>So what are my alternatives? I know of JPF, looking for something less xmlish.</p>
http://stackoverflow.com/questions/1755757/how-to-restrict-program-resources-rights-in-jvm-osgi0How to restrict program resources + rights in JVM/OSGi?stephanos2009-11-18T12:50:15Z2009-11-19T09:41:40Z
<p>I want to create a website where people can solve programming tasks and eventually upload their solution (in any JVM-language) in order to verify it and share it with others.</p>
<p>I figured <strong>OSGi</strong> (learning it right now) might be a good tool to handle this task (is it?). But obviously I'm a little anxious about letting other people executing their code on my host (btw, a input/output-based solution is no alternative).</p>
<p>So I figured I need to find out</p>
<p><strong>a) how to allow/restrict certain Java functionality</strong> (e.g. starting a thread, sending a mail, writing a file etc.)</p>
<p>and </p>
<p><strong>b) how to limit a program's/bundle's CPU/RAM resources</strong> so no one could bring the host down with an endless loop for example.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1751918/when-to-use-servicetracker-vs-servicereference1When to use ServiceTracker vs ServiceReferencekts2009-11-17T21:27:01Z2009-11-17T22:26:25Z
<p>I am just starting with OSGI programming and have come across two ways to listener for services being activated.</p>
<p>The first way, from an EclipseRCP book, uses ServiceReference:</p>
<pre><code>String filter="(objectclass="+IModelCreator.class.getName()+")";
context.addServiceListener(this, filter);
modelCreators = Collections.synchronizedMap(
new HashMap<ModelID, List<IModelCreator>>());
ServiceReference references[] = context.getServiceReferences(null, filter);
if(references==null) return;
for(int i=0;i<references.length;++i) {
this.serviceChanged(new ServiceEvent(ServiceEvent.REGISTERED,
references[i]));
}
</code></pre>
<p>The second, from internet examples, uses ServiceTracker:</p>
<pre><code>ServiceTracker logReaderTracker = new ServiceTracker(context,
org.osgi.service.log.LogReaderService.class.getName(), null);
logReaderTracker.open();
Object[] readers = logReaderTracker.getServices();
if (readers != null) {
for (int i = 0; i < readers.length; i++) {
LogReaderService lrs = (LogReaderService) readers[i];
m_readers.add(lrs);
lrs.addLogListener(m_logger);
}
}
logReaderTracker.close();
</code></pre>
<p>Which one of these is the correct and/or best way of holding a register of all the services that implement a given Interface? Is there another way of accomplishing this? Why does there seem to be two ways of doing the same thing?</p>
http://stackoverflow.com/questions/1649841/using-guice-with-osgi1Using Guice with OSGistjowa2009-10-30T13:35:18Z2009-11-16T18:16:01Z
<p>I have a project that I am trying to convert to OSGi. However, this project has been built with Guice as its dependency injection manager. It's a large project with Guice interwoven all throughout. Guice has been giving me many fits with the conversion process. Specifically, it has been given me a NoClassDefFoundError for com.google.inject.internal.cglib.reflect.FastClass. I have made sure that nothing is package-private and I also downloaded and used the guice-2.0-customloader.jar. Still, to no avail.</p>
<p>Is there any advice from anyone that has gone down this path? It is worth mentioning that I use peaberry to get dynamic services from the OSGi environment (for a plugin-type architecture) that I then use in the program later on.</p>
<p>Thanks a lot,
Steve</p>
http://stackoverflow.com/questions/1594337/how-do-i-deploy-a-webapp-into-apache-felix1How do I deploy a webapp into Apache Felix?Hanno Fietz2009-10-20T12:43:08Z2009-11-13T14:12:59Z
<p>What bundles do I need to install? At least, this would have to be a servlet container / web server such as Jetty, but will the basic <code>org.apache.felix.http.jetty</code> bundle do, or is there anything else needed to discover the <code>web.xml</code> in other bundles?</p>
<p>Do I put the webapp in a standard WAR, add OSGi headers and am done? Or are there any webapp specific headers required for the OSGi environment?</p>
<p>What other configuration has to be done?</p>
<p>What are options to automate these steps using Maven?</p>
<p>I have tried deploying the <code>org.apache.felix.http.jetty</code> bundle, and I get a Jetty answering with 404 on localhost:8080. Next, I tried a simple webapp with nothing but a static HTML file configured as a <code>welcome-file</code>. As far as I can tell, Jetty doesn't even notice the deployment descriptor, at least deploying the test webapp into Felix doesn't change anything at all.</p>
http://stackoverflow.com/questions/1725066/federated-identity-management0Federated Identity ManagementCarl2009-11-12T20:15:37Z2009-11-13T13:56:51Z
<p>I'm looking for a way to pull user (eg. inetOrgPerson) information in a federated way. For the most part, this information will come from LDAP but could come from secondary systems. I've looked at things like Jasig's Person Directory (married to Spring and we don't use it) and ArisID (no examples of use, yet). I'm working inside of OSGi and would like something that is already bundled but am willing to bundle things myself. What other IM libraries out there should I consider?</p>
http://stackoverflow.com/questions/662986/osgi-hibernate3OSGi + Hibernate2009-03-19T16:39:02Z2009-11-12T21:21:58Z
<p>Instead of having database actions scattered in four (osgi) bundles, all doing there slightly different things. I want to create a (simple) OSGi bundle that is responsible for all persistance issues. I feel that this is not as simple as it sounds because of the "unique classloader per bundle" thing.
So what I really would appreciate is if someone knows the solution(s) to this kind of problem. </p>
http://stackoverflow.com/questions/1700764/new-urlstreamhandlers-in-glassfish0New URLStreamHandlers in glassfishRoyce2009-11-09T12:43:44Z2009-11-12T12:47:56Z
<p>I have a legacy application that I'm trying to port to Java EE. Presently this application calls URL.setURLStreamHandlerFactory() to register some custom URL protocol handlers. This call fails under Glassfish v 2.1 and 3 because glassfish has already registered a factory.</p>
<p>I've tried using the java.protocol.handler.pkgs system property, but that doesn't work for me due to classloader issues. The handler classes are all part of the application and I'm not keen on trying to extract them and put a jar in the container's classpath.</p>
<p>I've got a whiff of osgi bundles - apparently I could write a Bundle that'll deal with the new protocols. I'm not keen on making this web application an osgi bundle (one step at a time! EE first, then osgi if the need arises). </p>
<p>Is it possible to pop a bundle jar in to my WEB-INF/lib directory and have Glassfish load it as a bundle? The bundle will need to import packages from the web applications (another jar in WEB-INF/lib or in WEB-INF/classes). I'm willing to package this app as an EAR if that'll work, I just can't justify osgifying the entire application without knowing more.</p>
http://stackoverflow.com/questions/1705720/java-dynamically-load-multiple-versions-of-same-class3Java: Dynamically Load Multiple Versions of Same ClassJonLeah2009-11-10T05:02:40Z2009-11-10T08:47:32Z
<p>I've looked all around and I haven't been able to figure out how to accomplish this.</p>
<p>What I'd like to be able to do is to load set of classes, probably all in the same folder. All of which implement the same interface and are the same class, then in my code I'd like to be able to call functions on those classes.</p>
<p>Any help you can give, or even just a push in the right direction would be great. Thanks!</p>
http://stackoverflow.com/questions/1559048/how-can-i-make-jdbc-drivers-pluggable-in-an-osgi-environment0How can I make JDBC drivers pluggable in an OSGi environment?Hanno Fietz2009-10-13T09:05:26Z2009-11-09T21:09:46Z
<p>I have an OSGi project that, among others, contains one bundle with JPA annotated domain models and another which uses Eclipselink as persistency provider. The latter instantiates the <code>EntityManager</code> using a configuration parameter to determine the JDBC driver's class name.</p>
<p>Now, the bundle with the models needs to be able to see the JDBC driver, I think, that is because eclipselink uses the classloader of the model classes to load it. This has the unwanted side effect that I need to explicitly declare an <code>Import-Package</code> directive in the model's bundle to pull in the driver. Swapping out the driver via OSGi then isn't easy anymore (I need to regenerate the manifest), which defeats the purpose of using OSGi in the first place.</p>
<p>Since JDBC drivers all implement the same interface, what I would like to do is put database drivers in their own bundle, register them with the OSGi container under their common interface name and have eclipselink use whatever is available. But I can't see how to do that, because it seems the driver is instantiated by eclipselink, meaning I can't instatiate it elsewhere and have eclipselink be oblivious of the actual class name.</p>
<p>This seems like a very typical thing to do. I guess there's already a solution out there?</p>
<p><a href="http://dev.eclipse.org/mhonarc/lists/eclipselink-users/msg02013.html" rel="nofollow">This post</a> by Shaun Smith of Oracle from earlier this year suggests that there maybe isn't, but it also indicates that the demand for it seems to be quite real.</p>
http://stackoverflow.com/questions/1663147/jpa-entity-in-multiple-persistence-unit-in-osgi-spring-dm-environnement-is-co0JPA Entity (in multiple persistence-unit) in OSGi (Spring DM) Environnement is confusing me.Vincent Demeester2009-11-02T19:22:34Z2009-11-05T17:05:25Z
<p>Hi,</p>
<p>I'm a bit confused about a strange behavior of my JPA's related objects.
I have three bundle : </p>
<p><strong>The User bundle</strong> does contain some user-related objects, but mainly the <code>User</code> object.</p>
<p><strong>The Energy bundle</strong> does contain some energy-related objects, and particularly a <code>ConsumptionTerminal</code> which contains a List of User.</p>
<p><strong>The Index bundle</strong> does contain an Index object that has no dependency at all.</p>
<p>My OSGi environment is the following :</p>
<ul>
<li><p>A DataSource bundle that provide 2 <em>services</em> : dataSource and jpaVendorAdapter.</p>
<p></p>
<p></p></li>
<li><p>The three bundles. They consume <code>dataSource</code> and <code>jpaVendorAdapter</code>.</p>
<p>Their <code>module-context.xml</code> file look like :</p>
<p>
</p>
<p>And they all have a <code>persistence.xml</code> file :</p>
<ul>
<li><p>User</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<persistence>
<persistence-unit name="securityPU" transaction-type="JTA">
<jta-data-source>java:/securityDataSourceService</jta-data-source>
<class>net.nextep.amundsen.security.domain.User</class>
<!-- [...] -->
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="eclipselink.logging.level" value="INFO" />
<property name="eclipselink.ddl-generation" value="create-tables" />
<property name="eclipselink.ddl-generation.output-mode" value="database" />
<property name="eclipselink.orm.throw.exceptions" value="true" />
</properties>
</persistence-unit>
</persistence>
</code></pre></li>
<li><p>Energy</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<persistence>
<persistence-unit name="energyPU" transaction-type="JTA">
<jta-data-source>java:/securityDataSourceService</jta-data-source>
<class>net.nextep.amundsen.security.domain.User</class>
<class>net.nextep.amundsen.energy.domain.User</class>
<!-- [...] -->
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="eclipselink.logging.level" value="INFO" />
<property name="eclipselink.ddl-generation" value="create-tables" />
<property name="eclipselink.ddl-generation.output-mode" value="database" />
<property name="eclipselink.orm.throw.exceptions" value="true" />
</properties>
</persistence-unit>
</persistence>
</code></pre></li>
<li><p>Index : This one has the most simple persistence.xml with just the Index class (no shared Class).</p></li>
</ul></li>
</ul>
<p>I'm using named <code>@PersistenceUnit</code> annotation like <code>@PersitenceUnit(name = 'securityPU')</code> (for the User bundle).</p>
<p>And finally, I'm using EclipseLink as Jpa provider and Spring DM (+ Spring DM Server in the development process)</p>
<p>The problem is the following :</p>
<ol>
<li>When the User bundle is deployed, I'm able to persist User objects.</li>
<li>When the User bundle and Energy bundles are both deployed, I'm not able to persist User objects (neither the Energy object). <strong>But I don't have any exception at all</strong> !</li>
<li>There is no problem at all with the Index bundle.</li>
</ol>
<p>The bug is dataSource independent (I tried with PostgreSQL and MySQL so far).</p>
<p>My first conclusion was that the <code><class>net.nextep.amundsen.security.domain.User</class></code> in both persistence unit was causing the trouble. I tried without it (and hiding the User dependent object in the Energy bundle) but it failed too.</p>
<p>I'm a bit confused about that bug. I'm also not quite sure about the transaction management in this context.</p>
<p>I wasn't the one who <em>designed</em> this architecture (but I tell my intern OK without testing it.. shame on me) but if I could understand this bug and maybe fix it without rewrite the bundle (and break my intern work), I would appreciate. Am I doing something wrong ? (it's obvious, but what..) Did I miss something while reading documentation ?</p>
<p>By the way, I'm also looking for some best practices or advices when it comes to JPA, EclipseLink (or whatever JPA Provider) and Spring DM (and OSGi in general). I found interesting slides from Mike Keith about this topic (by browsing Stackoverflow).</p>
http://stackoverflow.com/questions/1613935/java-plugin-framework-choice5Java plugin framework choiceMarcus Leon2009-10-23T14:43:19Z2009-11-03T02:15:31Z
<p>We're trying to determine how to implement a simple plugin framework for a service we are implementing that allows different types of calculators to be "plugged-in".</p>
<p>After reading a <a href="http://stackoverflow.com/questions/tagged/plugin-architecture">number</a> of posts about Java plugin frameworks, it seems like the most common options are:</p>
<ul>
<li><a href="http://www.osgi.org/Main/HomePage" rel="nofollow">OSGI</a></li>
<li>"<a href="http://stackoverflow.com/questions/465099/best-way-to-build-a-plugin-system-with-java/465143#465143">Rolling your own</a>" plugin framework</li>
<li>The <a href="http://jpf.sourceforge.net/about.html" rel="nofollow">Java Plugin Framework</a> (JPF)</li>
<li>The <a href="http://code.google.com/p/jspf/" rel="nofollow">Java Simple Plugin Framework</a> (JSPF)</li>
</ul>
<p>OSGI seems to be more than we need.</p>
<p>"Rolling your own" is ok but it would be nice to reuse a common library.</p>
<p>So we're down to the JPF and JSPF. JPF seems to not be in active development right now.</p>
<p>JSPF seems very simple and really all we need. However I haven't heard much about it. I've only seen one <a href="http://stackoverflow.com/questions/81495/best-technology-for-adding-plugin-support-to-a-j2se-application/82108#82108">post</a> on StackOverflow about it. Does anyone else have any experience with JSPF? Or any other comments on this design choice?</p>
<p><hr /></p>
<p><strong>Update</strong>: There isn't necessarily a correct answer to this.. however we're going to go with Pavol's idea as we need just a really, really simple solution. Thanks EoH for the nice guide.</p>
http://stackoverflow.com/questions/1082690/how-to-configure-felix-obr-repositories-list0How to configure Felix OBR repositories list?Alexander Azarov2009-07-04T18:02:17Z2009-11-02T13:00:01Z
<p>Is there any way to specify a number of OBR repositories in Felix's <code>config.properties</code> file? I do can add a repository at runtime, but I have to do it after restart.</p>
<p>"Prefrences Service" does not help, it seems "Bundle Repository" does not use it.</p>
http://stackoverflow.com/questions/1555197/where-should-i-put-shared-testing-utilities-in-a-multi-module-maven-project0Where should I put shared testing utilities in a multi-module Maven project?Hanno Fietz2009-10-12T15:21:29Z2009-10-31T16:35:05Z
<p>I probably sholdn't obsess about this too much, but my project has a very structured layout that I have become very fond of. Having that much structure has actually proven to be useful, this time, so I don't really want it to become messy again.</p>
<p>To start with, each module consists of several Java packages:</p>
<pre><code>com.mycompany.mysoftware.modulename
com.mycompany.mysoftware.modulename.impl
com.mycompany.mysoftware.modulename.osgi
com.mycompany.mysoftware.modulename.test
</code></pre>
<p>The main code lives in <code>.impl</code>. Interfaces, some enums and some data container classes that are used by other modules live in the package with no suffix. There's OSGi specific code (<code>BundleActivator</code>s etc.) in the <code>.osgi</code> package and unit tests in the <code>.test</code> package.</p>
<p>Now I have classes that fake a module to be used in testing others. I'm wondering whether I should put those in the <code>.test</code> package of a <code>common</code> module that already contains shared libraries for the main code, or whether I should have a new module <code>test</code> that I can set up a different dependency scope for in Maven.</p>
<p><strong>ETA</strong>: One problem I'm having is that I get circular dependencies: if I have two modules and the unit tests in each require a fake of the other, the module containing the fake has a dependency on the module containing the interface, which is the same module that contains the unit test. So, the fake should be together with the test, but that leads to a lot of code duplication. Or, for each module I make a fake module, but that makes me feel it's getting out of hand...</p>
http://stackoverflow.com/questions/1570633/choosing-between-impala-and-osgi0Choosing between Impala and OSGiKief2009-10-15T06:37:37Z2009-10-30T13:27:00Z
<p>I've been investigating <a href="http://www.osgi.org" rel="nofollow">OSGi</a> for my company's software, but have recently been recommended to take a look at Impala. According to its web page, <a href="http://code.google.com/p/impala/" rel="nofollow">Impala</a> is "a dynamic module framework for Java-based web applications, based on the Spring Framework."</p>
<p>At a glance, and looking at this <a href="http://impalablog.blogspot.com/2007/11/impala-and-osgi.html" rel="nofollow">blog post</a> about the differences, the key differences I can see are that Impala is simpler than OSGi, does not manage versioning of third party components, and is far less widely used/known (I do not see a single question about it on Stack Overflow).</p>
<p>I wonder whether people who have direct experience with Impala and OSGi (i.e. those who have investigated it more deeply than reading blog posts and online docs), have any more insights into the practical differences between the two, and/or suggestions about what types of projects each one may be more or less suitable for.</p>
<p><strong>Edit:</strong> It may also be interesting to include <a href="http://blog.springsource.com/2009/06/22/modular-web-applications-with-springsource-slices/" rel="nofollow">Springsource Slices</a> into the comparison, although it is as yet an early prototype. At a glance, it appears to only work in DM Server.</p>
http://stackoverflow.com/questions/688651/osgi-and-j2ee-josgiee2OSGi and J2EE - JOSGiEE?Everton2009-03-27T05:26:21Z2009-10-29T23:45:11Z
<p>After reading <a href="http://itknowledgeexchange.techtarget.com/soa-talk/osgi-and-future-directions-for-enterprise-java/" rel="nofollow">this article</a>, one question came to my mind: 'Is OSGi becoming a J2EE? Is OSGi going to replace J2EE? Is OSGi incrementing J2EE?'
It's true that historically OSGi is totally different from J2EE, but considering now the resulting work from the EEG, some of these services are J2EE services.
Another fact is that who uses J2EE uses it for its APIs in contradiction to OSGi which is supposed to be API agnostic.
I am not sure where is it going to get, what about you guys?</p>
http://stackoverflow.com/questions/1612120/osgi-what-are-the-differences-between-apache-felix-and-apache-karaf1OSGi: What are the differences between Apache Felix and Apache Karaf?bugspy.net2009-10-23T08:37:56Z2009-10-23T13:01:25Z
<p><a href="http://felix.apache.org/site/apache-felix-karaf.html" rel="nofollow">Apache Karaf</a> is a sub project of <a href="http://felix.apache.org/site/index.html" rel="nofollow">Apache Felix</a>. It is defined as "a lightweight OSGi container".</p>
<p>I don't understand when should I use the heavyweight and when to use the lightweight. Their site doesn't explain this too much</p>
http://stackoverflow.com/questions/1607229/achieving-eclipse-like-osgi-launcher0Achieving Eclipse-like OSGi launcherstjowa2009-10-22T13:31:31Z2009-10-23T08:14:07Z
<p>Hello All,</p>
<p>I am building an OSGi application and need to create an Eclipse-like OSGi application launcher.</p>
<p>For those who do not know, when an OSGi application is run through Eclipse's OSGi framework, Equinox launches and automatically manages the order of bundles being started and stopped. From what I have experienced so far, it seems to be very efficient in what it does.</p>
<p>I want a similar piece of software to be able to create powerful distributable OSGi applications that can take a dynamic group of bundles, and without rewriting any code, start the application correctly and in the right bundle order. </p>
<p>I am curious to know how Eclipse achieves this result efficiently and how I can achieve the same result.</p>
<p>Thank you,</p>
<p>Steve</p>
http://stackoverflow.com/questions/1599161/how-do-i-avoid-having-to-manually-tweak-import-package-headers-with-maven-bundle0How do I avoid having to manually tweak Import-Package headers with Maven bundle-plugin?Hanno Fietz2009-10-21T07:01:03Z2009-10-22T13:06:55Z
<p>I'm happily using the Maven bundle-plugin to create OSGi manifest headers for my modules. However, when there are configuration files that pull in classes which aren't referenced directly in the code, the plugin can't tell which packages it's going to need.</p>
<p>One example is a bundle with domain models that constitute a Persistence Unit for JPA. The driver class is part of the PU configuration and either set in an XML file or at runtime when the <code>EntityManager</code> is instantiated. I have to manually add an <code>Import-Package</code> header for the driver class that I want to load, or I get CNF errors.</p>
<p>Another example is a Struts war, where the <code>web.xml</code> pulls in the Struts dispatcher that's otherwise not found anywhere in the code and has to be manually added to the headers.</p>
<p>How can I avoid this?</p>
<p>I tried adding the required packages as dependencies with a <code>provided</code> scope, but that didn't help.</p>
http://stackoverflow.com/questions/698568/osgi-plugin-wont-start-in-tomcat0OSGi plugin won't start in tomcat.Jerry2009-03-30T18:54:18Z2009-10-22T06:00:02Z
<p>I have an OSGi plugin with an activator that I am requesting to start under my tomcat jsf project.</p>
<p>Based on: <a href="http://www.eclipse.org/equinox/documents/quickstart.php" rel="nofollow">http://www.eclipse.org/equinox/documents/quickstart.php</a> and some other docs, I have placed this structure under my WEB-INF directory to start the equinox implementation of osgi. I have been able to access plugins directly, but not programatically by referencing it from another plugin. This is that example.</p>
<p>MyProject
configuration/
config.ini
org.eclipse.osgi_3.3.0.jar
org.eclipse.equinox.common_3.3.0.jar
org.eclipse.update.configurator_3.2.100.jar
plugins/
com.fnet.tts.service_1.0.0.jar</p>
<p>I have placed the following two lines in the config.ini</p>
<p>osgi.bundles=org.eclipse.equinox.common@2:start, org.eclipse.update.configurator@start, org.eclipse.equinox.registry@3:start, com.fnet.tts.service@4:start
osgi.bundles.defaultStartLevel=4</p>
<p>However I am getting this error, when I attempt to activate the bundle that calls the tts.service.</p>
<p>Details:
com.fnet.runtime.KSException: Fail to start bundle 'com.fnet.tts.service.viewSchedule_2.0.0.jar'
at com.runtime.impl.RuntimeServiceImpl$KSImpl
.loadKnowledgebase(RuntimeServiceImpl.java:190)
at com..loadKnowledgebaseHandle(InterviewContext.java:83)
Caused by: org.osgi.framework.BundleException: The bundle could not be resolved.
Reason: Missing Constraint: Require-Bundle: com.fnet.tts.service; bundle-version="1.0.0"
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(Bundl
eHost.java:305)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(Abstrac
tBundle.java:265)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(Abstrac
tBundle.java:257)
at com.fnet.runtime.impl.RuntimeServiceImpl$KSImpl
.loadKnowledgebase(RuntimeServiceImpl.java:188)
... 3 more</p>
<p>I have been looking at this for hours, and I am looking for a clue, hint, or answer so I can move forward.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1559537/what-are-reasons-for-eclipselink-failing-to-autodetect-entity-classes0What are reasons for eclipselink failing to autodetect entity classes?Hanno Fietz2009-10-13T11:03:26Z2009-10-21T15:34:28Z
<p>I'm running eclipselink in an OSGi container and my entity classes are in their own bundle.</p>
<p>I have repeatedly run into the problem that Eclipselink fails to autodetect the entity classes, resulting in "Xyz is not a known entity type" messages. This is painful to debug and my somewhat helpless approach is to more or less randomly tweak configuration files until it works.</p>
<p>I wish I knew a more systematic approach, but I don't seem to know enough about possible reasons for the problem. What could they be? Is there an overview of what happens in autodetection and what is required for it to work?</p>
<p>So if you ran into the problem yourself and were able to determine one specific reason, post it here, or vote it up when you already see it. That way we could produce a list of typical issues sorted by frequency. I'll add the ones I actually solved.</p>
<p>Facts I know:</p>
<ul>
<li>eclipselink uses the OSGi extender pattern to listen for bundles registering and then sets them up</li>
<li>it supposedly uses the class loader for the bundle that defines the persistence unit, if you're using a <code>persistence.xml</code> for configuration, this is the bundle where that file is located.</li>
</ul>
http://stackoverflow.com/questions/1593074/how-can-i-combine-war-packaging-and-osgi-bundle-creation-in-maven0How can I combine WAR packaging and OSGi bundle creation in Maven?Hanno Fietz2009-10-20T07:58:36Z2009-10-20T19:53:53Z
<p>I want to deploy one of my OSGi bundles with a war package structure so it is recognized as a web application by Struts. I use Maven, so I get WAR packaging built-in and I have the Maven bundle-plugin to create the OSGi compatible manifest for me.</p>
<p>The problem is, the two don't work together, so the bundle plugin is not aware that the class files are now in the subfolder <code>classes/</code> and the bundled jars are in <code>lib/</code>, so it creates a wrong <code>Bundle-classpath</code> header. I could manually add the correct header to my <code>pom.xml</code>, but I'd like to have that don eautomatically. How can I do that?</p>