JDiagnose - Web

The JDiagnose Web project is an example web application for running remote Diagnostics. It uses the Spring Framework and can be configured using the Spring XML beans configuration file. Here is an excerpt:


<bean id="runtimeDiagnosticRunner" class="org.jdiagnose.runtime.DiagnosticRunner">
  <constructor-arg>
    <bean class="org.jdiagnose.Diagnostics">
      <property name="diagnostics">
        <list>
          <bean class="org.jdiagnose.library.SucceedingDiagnostic"/>
          <bean class="org.jdiagnose.library.FailingDiagnostic"/>
        </list>
      </property>
    </bean>
  </constructor-arg>
</bean>