--- projects/cms/source/server/uk/org/iscream/cms/server/rootfilter/RootFilter.java 2002/05/21 16:47:18 1.40 +++ projects/cms/source/server/uk/org/iscream/cms/server/rootfilter/RootFilter.java 2002/09/06 15:10:48 1.41 @@ -37,7 +37,7 @@ import uk.org.iscream.cms.server.clientinterface.*; * RootFilter services. * * @author $Author: tdb $ - * @version $Id: RootFilter.java,v 1.40 2002/05/21 16:47:18 tdb Exp $ + * @version $Id: RootFilter.java,v 1.41 2002/09/06 15:10:48 tdb Exp $ */ public class RootFilter implements Component { @@ -46,7 +46,7 @@ public class RootFilter implements Component { /** * The current CVS revision of this class */ - public static final String REVISION = "$Revision: 1.40 $"; + public static final String REVISION = "$Revision: 1.41 $"; //---STATIC METHODS--- @@ -94,11 +94,11 @@ public class RootFilter implements Component { ClientInterface ciReal = null, ciDB = null; // get reference to the client interfaces - the real time one if (realInterface != null) { - ciReal = ClientInterfaceHelper.narrow(_refman.getCORBARef("iscream.ClientInterface." + realInterface)); + ciReal = ClientInterfaceHelper.narrow(_refman.getCORBARef("iscream.ClientInterface\\." + realInterface)); } // get reference to the client interfaces - and the db one if (dbInterface != null) { - ciDB = ClientInterfaceHelper.narrow(_refman.getCORBARef("iscream.ClientInterface." + dbInterface)); + ciDB = ClientInterfaceHelper.narrow(_refman.getCORBARef("iscream.ClientInterface\\." + dbInterface)); } // setup a queue @@ -161,7 +161,7 @@ public class RootFilter implements Component { _logger.write(toString(), Logger.DEBUG, "starting Root Filter"); RootFilterServant filterServant = new RootFilterServant(queue); // bind to the naming service as a filter - _refman.bindToOrb(filterServant, "iscream.Filter." + RootFilter.NAME); + _refman.bindToOrb(filterServant, "iscream.Filter\\." + RootFilter.NAME); _logger.write(toString(), Logger.SYSINIT, "started"); @@ -194,7 +194,7 @@ public class RootFilter implements Component { // first check the client interface try { String cli = cp.getProperty("RootFilter", "RootFilter.realtimeInterfaceName"); - obj = _refman.getCORBARef("iscream.ClientInterface." + cli); + obj = _refman.getCORBARef("iscream.ClientInterface\\." + cli); } catch(ComponentCORBAException e) { System.err.println(toString() + ": Dependency Failure: "+e); return false; @@ -204,7 +204,7 @@ public class RootFilter implements Component { // second check the database interface try { String dbi = cp.getProperty("RootFilter", "RootFilter.dbInterfaceName"); - obj = _refman.getCORBARef("iscream.ClientInterface." + dbi); + obj = _refman.getCORBARef("iscream.ClientInterface\\." + dbi); } catch(ComponentCORBAException e) { System.err.println(toString() + ": Dependency Failure: "+e); return false;