cancel
Showing results for 
Search instead for 
Did you mean: 

View JMX MBeans

Former Member
0 Kudos

Hello

I am registering MBeans as described in documentation like

ObjectName name = ObjectNameFactory.getNameForServerChildPerNode
("SAP_MyMBean", "MyBean", null, null);
mbs.registerMBean(mbean, name);

It works fine. I see my bean when I connect as client

MBeanServerConnection mbsc = JmxConnectionFactory.getMBeanServerConnection(JmxConnectionFactory.PROTOCOL_ENGINE_P4, connectionProperties);
ObjectName objectName = ObjectNameFactory.getPatternForServerChildPerNode("SAP_MyMBean", null, null);
Set names = mbsc.queryNames(objectName, null);

But NWA and Visual Administrator don't show these beans.

There is another way to register MBeans through BroadcastingStandardMBeanWrapper.

But I cannot use it.

Is it possile to set up NWA or Visual Admin that they will show my mbeans which are registered as descibed above?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Or is there another JMX Console that could be integrated with SAP WAS?

I have used MC4J but I cannot configure it sucessfully.