QuickFIX/J provides FIX engine monitoring and control using standard Java JMX MBeans. See the Java 6 Monitoring and Management information for more details about JMX. Java 5 also includes built-in support for JMX. External libraries must be used with JDK 1.4 applications. However, this is an option feature so no changes to existing JDK 1.4 application are required if JMX is not desired.
JmxExporter utility class.
acceptor = new SocketAcceptor
(application, messageStoreFactory, settings, logFactory, messageFactory);
JmxExporter jmxExporter = new JmxExporter();
jmxExporter.export(acceptor);
acceptor.start();
By default, the exporter will try to use the Java 5+ platform MBean server. You can also
create an exporter for an MBeanServer created by the application.
Use Java 5, you must add the -Dcom.sun.management.jmxremote system
property when running your QFJ application. This will enable a connector
included with Java 5 that will allow MBeans to be viewed in JConsole
(only on the local machine).
Java 1.4 applications must use a separate library to expose the QFJ MBeans. One very popular option is to use the MX4J library. MX4J includes standard RMI connector and several other options for exposing MBeans (including HTTP). See the MX4J documentation for more details.
| Tool | Type | Description |
|---|---|---|
| MX4J | Open Source | Includes an HTTP adapter that can be embedded in your QFJ process and then accessed through a browser. |
| MC4J | Open Source | A management UI build on the NetBeans platform. |
| JManage | Open Source | A web-based management console with alerting and monitoring capabilities. It also provides a command line interface. |
| WebJMX | Open Source | JSP tag library |
| AdventNet | Commercial | See product site. |
| HP OpenView | Commercial | See product site. |