diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/java/com/c2kernel/process/Gateway.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/main/java/com/c2kernel/process/Gateway.java b/src/main/java/com/c2kernel/process/Gateway.java index 4cba4ba..7e59a6f 100644 --- a/src/main/java/com/c2kernel/process/Gateway.java +++ b/src/main/java/com/c2kernel/process/Gateway.java @@ -25,7 +25,6 @@ import com.c2kernel.utils.FileStringUtility; import com.c2kernel.utils.Language;
import com.c2kernel.utils.Logger;
import com.c2kernel.utils.Resource;
-import com.c2kernel.utils.server.SimpleTCPIPServer;
/**************************************************************************
@@ -57,8 +56,8 @@ public class Gateway static private TransactionManager mStorage;
static private EntityProxyManager mProxyManager;
static private CorbaServer mCorbaServer;
- static private SimpleTCPIPServer mHTTPServer;
static private CastorXMLUtility mMarshaller;
+ //static private SimpleTCPIPServer mHTTPServer;
@@ -329,9 +328,9 @@ public class Gateway if (mCorbaServer != null)
mCorbaServer.close();
mCorbaServer = null;
- if (mHTTPServer != null)
- mHTTPServer.stopListening();
- mHTTPServer = null;
+// if (mHTTPServer != null)
+// mHTTPServer.stopListening();
+// mHTTPServer = null;
// disconnect from storages
if (mStorage != null)
|
