// dynamic discovery is turned off - we cannot, therefore, rely on lazy instantiation of our internal services
// since the directory will not see them - let's create them now before registering the directory
m_remotePojoCommandService = new RemotePojoInvocationCommandService();
addCommandService(m_remotePojoCommandService);
m_remoteInputStreamCommandService = new RemoteInputStreamCommandService();
addCommandService(m_remoteInputStreamCommandService);
m_remoteOutputStreamCommandService = new RemoteOutputStreamCommandService();
addCommandService(m_remoteOutputStreamCommandService);
}