private transient CmpTcpServer cmpTcpServer; // HttpServlet implements Serializable
public void init(final ServletConfig config) throws ServletException {
super.init(config);
LOG.info("Starting CMP TCP Service..");
cmpTcpServer = new CmpTcpServer();
try {
cmpTcpServer.start();
} catch (UnknownHostException e) {
throw new ServletException(e);
}