{
showMBean(_mbean);
}
else if(NODE_TYPE_SERVER.equals(mbeanType))
{
ServerRegistry serverReg = ApplicationRegistry.getServerRegistry(_server);
//check the server is connected
if(serverReg != null)
{
//post a message if the server supports a newer API version.
ApiVersion serverAPI = serverReg.getManagementApiVersion();
int supportedMajor = ApplicationRegistry.SUPPORTED_QPID_JMX_API_MAJOR_VERSION;
int supportedMinor = ApplicationRegistry.SUPPORTED_QPID_JMX_API_MINOR_VERSION;
if(serverAPI.greaterThan(supportedMajor, supportedMinor))
{