Return-Path: Delivered-To: apmail-felix-dev-archive@www.apache.org Received: (qmail 83104 invoked from network); 17 Jul 2008 18:59:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Jul 2008 18:59:20 -0000 Received: (qmail 74649 invoked by uid 500); 17 Jul 2008 18:59:19 -0000 Delivered-To: apmail-felix-dev-archive@felix.apache.org Received: (qmail 74610 invoked by uid 500); 17 Jul 2008 18:59:19 -0000 Mailing-List: contact dev-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list dev@felix.apache.org Received: (qmail 74599 invoked by uid 99); 17 Jul 2008 18:59:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Jul 2008 11:59:19 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: 67.222.38.23 is neither permitted nor denied by domain of heavy@ungoverned.org) Received: from [67.222.38.23] (HELO outbound-mail-123.bluehost.com) (67.222.38.23) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 17 Jul 2008 18:58:23 +0000 Received: (qmail 5504 invoked by uid 0); 17 Jul 2008 18:58:44 -0000 Received: from unknown (HELO host118.hostmonster.com) (74.220.207.118) by outboundproxy4.bluehost.com with SMTP; 17 Jul 2008 18:58:44 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=ungoverned.org; h=Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding:X-Identified-User; b=qqqzfJZNJUSvk4Q62SuweABp3C05hHb34kBcb/Fc1B7CKdi39g1remaii+zyw1b9Qj893fYnpsaBZriG7+JIl8kIidxlsx1yBM7m+LKTJRsru9T0+lsYqssk6Oes8hyx; Received: from nat-02.eecs.tufts.edu ([130.64.23.202] helo=heavy.glastender.com) by host118.hostmonster.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1KJYgd-0005jl-Hq for dev@felix.apache.org; Thu, 17 Jul 2008 12:58:44 -0600 Message-ID: <487F960E.3080700@ungoverned.org> Date: Thu, 17 Jul 2008 14:57:18 -0400 From: "Richard S. Hall" User-Agent: Thunderbird 2.0.0.14 (X11/20080501) MIME-Version: 1.0 To: dev@felix.apache.org Subject: Re: Java webstart - loading bundles References: <487F4CD2.1090009@synyx.de> In-Reply-To: <487F4CD2.1090009@synyx.de> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Identified-User: {1027:host118.hostmonster.com:ungovern:ungoverned.org} {sentby:smtp auth 130.64.23.202 authed with heavy@ungoverned.org} X-Virus-Checked: Checked by ClamAV on apache.org 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 > > >