Matt: The one real world application of JMX that I have seen is the admin console for Tomcat. This is a web application that manages the Tomcat server via a web UI - all through JMX.
You might consider downloading Tomcat and exploring it. The JMX tutorial is a great place to get started. BTW: Do not feel embarassed about losing the thread of conversation - I've read a lot about JMX, but have coded a single line of code yet. Best of luck, -- Sriram Object Edge Software India Pvt. Ltd. --- Matt Kurjanowicz <[EMAIL PROTECTED]> wrote: > It's good to know that all this JMX stuff fits together well, and looks > easily doable... > > BUT, and this is embarrassing to admit, I've lost you guys in > converstation. Is there any place where I can go to get basic > documentation into all this stuff. I'm working through the J2EE > tutorial on the Sun website right now...is that the best place? > > Thanks, > Matt > mkurjano at cc.gatech.edu > > -----Original Message----- > From: Aaron Mulder [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 02, 2003 9:25 PM > To: [EMAIL PROTECTED] > Subject: Re: JMX Management Console > > Thanks you again. Am I right that in order to extract the > "j2eeType" property from the String supplied by J2EEServer, we could do > something like this: > > new ObjectName(name).getKeyProperty("j2eeType") > > Thanks, > Aaron > > On Wed, 3 Sep 2003, gianny DAMOUR wrote: > > This is a possible implementation. However, J2EEServer.getResources > returns > > an array of OBJECT_NAME/String identifying the available resources. A > name > > contains a "j2eeType" property which can be used to infer the type of > the > > Manageable Object. > > > > For instance, the names returned by J2EEServer.getResources could be: > > > geronimo.j2ee.management:j2eeType=JDBCResource,name=Oracle,J2EEServer=se > rver > > > geronimo.j2ee.management:j2eeType=JMSResource,name=OpenJMS,J2EEServer=se > rver > > > > By using the value of the j2eeType property, one knows that the first > one is > > a JDBCResource and the second one is JMSResource. > __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com
