--- projects/cms/source/server/uk/org/iscream/cms/server/clientinterface/ClientInterfaceMain.java 2001/01/28 05:58:46 1.15 +++ projects/cms/source/server/uk/org/iscream/cms/server/clientinterface/ClientInterfaceMain.java 2001/02/03 00:41:04 1.16 @@ -14,7 +14,7 @@ import uk.ac.ukc.iscream.util.*; * real time information. * * @author $Author: tdb $ - * @version $Id: ClientInterfaceMain.java,v 1.15 2001/01/28 05:58:46 tdb Exp $ + * @version $Id: ClientInterfaceMain.java,v 1.16 2001/02/03 00:41:04 tdb Exp $ */ public class ClientInterfaceMain implements Component { @@ -23,7 +23,7 @@ public class ClientInterfaceMain implements Component /** * The current CVS revision of this class */ - public static final String REVISION = "$Revision: 1.15 $"; + public static final String REVISION = "$Revision: 1.16 $"; //---STATIC METHODS--- @@ -73,6 +73,12 @@ public class ClientInterfaceMain implements Component // Startup the TCPListener TCPClientListener tcpClientListener = new TCPClientListener(listenPort, ps); tcpClientListener.start(); + + // Startup the CORBA Listener + _logger.write(toString(), Logger.DEBUG, "starting servant for inbound clients"); + CorbaClientListenerServant corbaServant = new CorbaClientListenerServant(ps); + // !!! verify this name is correct at some point !!! + _refman.bindToOrb(corbaServant, "iscream.ClientInterface.CorbaListener"); _logger.write(toString(), Logger.SYSINIT, "started"); }