diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2012-07-11 15:11:05 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2012-07-11 15:11:05 +0200 |
| commit | 7c3f4c2cfce2a017f23e2943622abe7f19a96157 (patch) | |
| tree | b6012a71de439027449342502a1f21e2e87fc0e2 | |
| parent | b53164978a9a264fbe26679c07e32731a4d495f9 (diff) | |
Commented out ItemHTTPServer
| -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)
|
