Just a guess...
I assume you have packaged everything into a single JAR file that Web
Start downloads, including embedded bundle JARs. Could you simply do a
getResource() specifying the path to the embedded bundle JAR and use the
returned URL to install the bundle?
-> richard
Sebastian Heib wrote:
Hi,
I have a felix application (sip-communicator) that gets started with
webstart.
In the felix.client.run.properties file I refer to the bundles that
should be loaded at startup. Does anybody know a possibility, how I can
refer to the jars (my bundles) that webstart has downloaded? I tried the
following, but neither of them worked:
jar:file://www.mydomain.com/foo/bar.jar!/ (see
http://docs.sun.com/source/819-0913/author/jar.html#jarprotocol)
jar:http://www.mydomain.com/foo/bar.jar!/ (as documented in the javadoc,
JarURLConnection)
Sebastian