1
vote
2answers
72 views
How do I deploy a webapp into Apache Felix?
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 org.apache.felix.http.jetty bundle do, or is t …
0
votes
1answer
171 views
How to configure Felix OBR repositories list?
Is there any way to specify a number of OBR repositories in Felix's config.properties file? I do can add a repository at runtime, but I have to do it after restart.
"Prefrences Se …
1
vote
1answer
79 views
OSGi: What are the differences between Apache Felix and Apache Karaf?
Apache Karaf is a sub project of Apache Felix. It is defined as "a lightweight OSGi container".
I don't understand when should I use the heavyweight and when to use the lightweigh …
1
vote
2answers
149 views
In an OSGi environment, how are the classpaths and classloaders set up?
I'm confused about class visibility in OSGi. I'm running Apache Felix and loading the following bundles:
the antlr, asm, jpa and core bundles from eclipselink
an OSGi-fied jar fo …
1
vote
1answer
88 views
Apache Felix Bundle Repository - Calling from another bundle
I have a simple test program which is designed to consume the Apache Felix Bundle Repository bundle service however I am having trouble configuring it through eclipse.
I am using …
3
votes
4answers
359 views
Need to read own Jar’s manifest, and not root-classloaders’ manifest
Hi,
i need to read the Manifest file, which delivered my class.
but it seems that when i use
getClass().getClassLoader().getResources(...)
i end up getting the MANIFEST from …
0
votes
1answer
99 views
OSGi in Netbeans, ClassCastException when retrieving service
Hi,
im having a ClassLoader issue.
Since im quite an osgi newby, hopefully the answer isn't that hard :)
I think it has to do with Compile vs. Runtime libraries.
in Netbeans 6. …
0
votes
1answer
40 views
mangen adds ‘Bundle-ManifestVersion: 1’ to manifest, but felix doesn’t seem to accept value 1
Hi,
I've used 'Mangen' to process my jar, which works but it adds the next line to the manifest
Bundle-ManifestVersion: 1
after which Felix 1.8.0 complains with
-> install …
0
votes
1answer
33 views
Felix ‘pref’ bundle requires ‘log version >=1.3’, but D/L ‘log’ bundle version = 1.0
Hi,
the Felix download page shows
Log bundle version 1.0.0
Preferences bundle version 1.0.2
But preferences requires log-bundle version >= 1.3
It just want to get an …
0
votes
2answers
37 views
How do i register the OSGIhost jar(itself) with DS ?
Hi,
Im trying to create an application which can fire-up felix,
and also publish services to the 'Declarative Services' bundle.
But with my 'felix-starter' and services effectiv …
1
vote
3answers
129 views
getting started with osgi + felix
Which packages of Felix do I need to get started? There are a zillion of them on the downloads page.
(p.s. is the name a reference to the Odd Couple + in contrast to OSGI's "Oscar …
0
votes
2answers
328 views
Why can’t JAXB find my jaxb.index when running inside Apache Felix?
It's right there, in the package that it should be indexing. Still, when I call
JAXBContext jc = JAXBContext.newInstance("my.package.name");
I get a JAXBException saying that
…
1
vote
1answer
114 views
pax-run using Maven Plugin in pom.xml
How can I execute Pax-Runner tasks using a Maven Plugin, which I can specify in the pom.xml file?
i.e. I can do the following in command line using Pax-Runner (to convert a war fi …
2
votes
2answers
503 views
How do you build a JAR in eclipse with a custom manifest file?
I am trying to to build a Felix bundle in Eclipse. This basically includes having Eclipse create a JAR (through export) and adding my custom manifest file, however, I can't seem to …
2
votes
1answer
184 views
OSGi felix: Sharing a class between the host application and a bundle possible?
Hi there!
Inside my host application I tried implement a simple pushService, which
shall be used to transfer an instance of a class named Vehicle to the OSGi
world, by providing a …
