// create the CORBA server and bind to iiop
if (iiopHost != null && iiopHost.value != null && iiopHost.value.length() > 0) {
if (iiopPort != null && iiopPort.value != null && iiopPort.value.length() > 0) {
try {
corbaServer = new SharkCORBAServer(engineName.value, iiopHost.value, iiopPort.value, shark);
orbThread = new Thread(this);
orbThread.setDaemon(false);
orbThread.setName(this.getClass().getName());
orbThread.start();
Debug.logInfo("Started Shark CORBA service", module);