Hi
IIRC the JMX whiteboard is a separate bundle
Regards
Felix
Matt Madhavan <[email protected]> wrote:
Hello,
I'm trying to instrument one of my Blueprint bean as follows:
package com.hcsc.ccsp.dupcheck.jms.tester;
public interface SendMsgServiceMBean {
public void sendMsg();
}
public class AMQSendMsgService implements SendMsgServiceMBean{
.....
}
<bean id="amqSendMsgServiceBean"
class="com.hcsc.ccsp.dupcheck.jms.tester.internal.AMQSendMsgService"
init-method="init" destroy-method="destroy">
<property name = "connectionFactory" ref="connectionFactory"/>
</bean>
<service id = "amqSendMsgService"
ref="amqSendMsgServiceBean"
interface="com.hcsc.ccsp.dupcheck.jms.tester.SendMsgServiceMBean">
<service-properties>
<entry key="jmx.objectname" value="domain:name=sendMessage" />
</service-properties>
</service>
I have deployed this in Karaf (Felix). I see that Karaf has Aries JMX and JMX
Blueprint bundes.
In JConsole I not see my instrumented bean.
Any ideas please? Am I missing some bundles?
Thanks in advance!
Matt