Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 74202 invoked from network); 24 Oct 2005 16:36:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 24 Oct 2005 16:36:43 -0000 Received: (qmail 41625 invoked by uid 500); 24 Oct 2005 16:36:26 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 41519 invoked by uid 500); 24 Oct 2005 16:36:26 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 41416 invoked by uid 99); 24 Oct 2005 16:36:25 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2005 09:36:25 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=RCVD_IN_SORBS_WEB,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy includes SPF record at spf.trusted-forwarder.org) Received: from [66.163.169.226] (HELO smtp106.mail.sc5.yahoo.com) (66.163.169.226) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 24 Oct 2005 09:36:19 -0700 Received: (qmail 78895 invoked from network); 24 Oct 2005 12:35:58 -0000 Received: from unknown (HELO ?9.27.152.156?) (spalias78@129.33.49.251 with plain) by smtp106.mail.sc5.yahoo.com with SMTP; 24 Oct 2005 12:35:58 -0000 Message-ID: <435CD531.5050703@gmail.com> Date: Mon, 24 Oct 2005 08:36:01 -0400 From: Sachin Patel User-Agent: Thunderbird 1.4.1 (X11/20051006) MIME-Version: 1.0 To: dev@geronimo.apache.org Subject: Re: loading gbeans References: <435AEFD9.2040006@gmail.com> <4e02092156c7be35b9342bfd1eeff291@yahoo.com> <435C50AD.3010405@gmail.com> <2b67b8c6e6c1946fe851c0fc66471a27@yahoo.com> In-Reply-To: <2b67b8c6e6c1946fe851c0fc66471a27@yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N David Jencks wrote: > First of all... > > configurationManager.load(myURI); //starts the configuration gbean, but > not the gbeans in the configuration > configurationManager.loadGBeans(myURI); //loads but does not start the > gbeans in the configuration Doh! must have overlooked that API. > > will load the configuration whose ID is myURI, and then load but not > start the gbeans in the configuration, so you won't get any port > conflicts. Starting the configuration > (configurationManager.start(myURI) will load and start the gbeans in the > configuration: you don't want to do this. > > Second, does jmx remoting use the jndi naming port? I keep getting > confused about which port jmx remoting connects to. I thought so... but now I'm 100% sure myself. :) In the wiki it does.... deployer:geronimo:jmx:rmi:///jndi/rmi://localhost:1099/JMXConnector (which by the way the path is incorrect) but in my eclipse tooling code... the uri I have is deployer:geronimo:jmx:rmi://localhost/jndi/rmi:/JMXConnector So I'm wondering now myself how its connecting to the correct port, or if not specified it just happens to be defaulting to 1099. > > thanks > david jencks > >