// Look for the connector class and create an instance.
try
{
Class clazz = Class.forName( className );
DefaultInstrumentManagerConnector connector =
(DefaultInstrumentManagerConnector)clazz.newInstance();
// Initialize the new connector
connector.setInstrumentManager( this );
ContainerUtil.enableLogging( connector, connLogger );
ContainerUtil.configure( connector, connectorConf );
ContainerUtil.start( connector );
if ( connector instanceof Instrumentable )
{