[JBoss-user] [Management, JMX/JBoss] - component lifecycle

2004-05-14 Thread aseembansal
Hi, Is it possible that kernel invokes start() method of my Mbean without invoking create() method. Both start() and create() are exposed in the xmbean file. -A View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3834904#3834904 Reply to the post : http://

[JBoss-user] [Management, JMX/JBoss] - Re: xmbean and jmxdoclet task

2004-05-10 Thread aseembansal
That worked. Thanks -A View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3834387#3834387 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3834387 --- This SF.Net email i

[JBoss-user] [Management, JMX/JBoss] - Re: xmbean and jmxdoclet task

2004-05-07 Thread aseembansal
Here is the ant task target name="xmbean" taskdef name="jmxdoclet" classname="xdoclet.modules.jmx.JMXDocletTask" mkdir dir="xdoclet" jmxdoclet destdir="xdoclet" excludedtags="@version,@author" fileset dir="${src.dir}" include name="**/*.java"

[JBoss-user] [Management, JMX/JBoss] - xmbean and jmxdoclet task

2004-05-07 Thread aseembansal
Hi, I have added the xdoclet tags (like @jmx:mbean) in my java code and am trying to generate the xmbean files using the following ant task. The above ant task does not throw any error (even in debug mode

[JBoss-user] [Management, JMX/JBoss] - Re: Mbean dependency resolution

2004-05-07 Thread aseembansal
Thanks. That was what I was looking for. -Aseem View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3834059#3834059 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3834059 ---

[JBoss-user] [Management, JMX/JBoss] - Re: Mbean dependency resolution

2004-05-07 Thread aseembansal
Thanks for the reply. Is this the only way to resolve the dependencies? In this case, a service has to expose getter/setter methods just to resolve the dependencies of dependents. Is not there any componentRegistry in JBoss which maintains a mapping of objectName Vs objects. -Aseem View th

[JBoss-user] [Management, JMX/JBoss] - Mbean dependency resolution

2004-05-05 Thread aseembansal
Hi, I am looking for a way in which my mbean can retieve its dependent objects. It seems that in the xml, I can specify my dependencies and container passes that objectname (via a setter) in my Mbean. From there how can my mbean retrieve the dependent object instance without using dynamic proxy.