Overview
This webapp lets you manage any number of QuickFIX/J MBeans accross any number of processes.

Live Demo
Try the demo
. The login is fixadmin/fixadmin.
Issues
Please raise any issues in JIRA
Installing
You can find the latest alpha release of the war at https://sourceforge.net/projects/quickfixjadmin/files
. Simply install it in your favourite servlet container.
Configuring
All configuration is currently in the Spring XML WEB-INF/spring-servlet.xml - this is clearly a bad thing and it will move elsewhere shortly.
Each process you wish to monitor must have the QuickFIX/J MBeans enabled
You can set the username/password and the list of host and JMX ports to connect to on the sessionMBeanServiceBean MBean.
<bean id="sessionMBeanServiceBean"
class="org.messageforge.quickfixj.admin.server.beans.SessionMBeanServiceImpl" init-method="init">
<property name="hosts" value="localhost:7777,anotherhost:8888" />
<property name="serviceName" value="QuickFIX/J Admin" />
<property name="pollInterval" value="0" />
<property name="username" value="fixadmin" />
<property name="password" value="fixadmin" />
<property name="messageRenderer" ref="rendererServiceBean"/>
</bean>
Building
The project is under SVN at https://quickfixjadmin.svn.sourceforge.net/svnroot/quickfixjadmin
. Once you've downloaded it, there is an ant build script in the toplevel directory and the eclipse project settings are available in SVN.