* @throws java.rmi.RemoteException If a networking error occurs.
* @see flux.Factory#makeConfigurationFromProperties(String)
* @see flux.xml.XmlFactory#makeXmlEngine(flux.Configuration)
*/
public XmlEngineBean(String configurationPropertiesFile) throws EngineException, RemoteException {
Factory factory = Factory.makeInstance();
Configuration config = factory.makeConfigurationFromProperties(configurationPropertiesFile);
xmlEngine = XmlFactory.makeInstance().makeXmlEngine(config);
} // constructor