Skip to main content
Skip table of contents

Chapter 11: FioranoMQ JMX API's

FioranoMQ exposes a lot of JMX APIs which the user can invoke at runtime to change the configuration and behavior of the MQ server in online mode. These APIs can be executed either from Fiorano Studio or from a Java program as shown in the samples provided under <FIORANO_HOME>/fmq/samples/JMX/

The sample code snippet below shows the basic steps for creating a JMX connection and invoking an operation.

JAVA
JMXConnector connector = JMXConnectorFactory.newJMXConnector(address, environment);
MBeanServerConnection conn = connector.getMBeanServerConnection();
ObjectName mem = new ObjectName ("Fiorano.etc:ServiceType=AdminService,Name=AdminService");
Object returnValue = conn.invoke(mem, "printServerInfo", new Object[]{}, new String[]{});


This document lists the set of MBeans exposed through JMX, and the attributes and operations within the MBean which the user may want to invoke.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.