Hi,
I trying to extract the MBeanInfo details as follows:
private static void getMBeanInformation(MBeanServerConnection mcon, ObjectName obj)
{
try
{
MBeanInfo bean = mcon.getMBeanInfo(obj);
System.out.println((bean.getClassName()).toString());
}
catch(Exception e){ System.out.println("Exception -> "+ e);}
}
I am getting the follwong exception:
Exception -> javax.management.InstanceNotFoundException: com.sap.default:* not in repository
Plz any one can help in resolveing this issue.
Thanks in Advance.