public class HttpConfigServlet extends HttpServlet //implements SingleThreadModel
{
  // DB Client Implementation Object properties
  protected ConfigFile m_ClientProperties;

  /**
    * <p>Initialize the servlet. This is called once when the
    * servlet is loaded. It is guaranteed to complete before any
    * requests are made to the servlet
    *
    * @param cfg Servlet configuration information
    */
  public void init(ServletConfig cfg)
    throws ServletException
  {
    super.init(cfg);

    try {
      // Load Client configuration
      m_ClientProperties = new ConfigFile();
      m_ClientProperties.Load(SessInfo.CONFIG_TMSCCLIENT);

      //Svr_Client_Config clImpl = new Svr_Client_Config();
      //m_ClientProperties = clImpl.getClientProp();

    } catch(Exception e) {
      Utils.trace(this,cfg,e);
      throw new ServletException(e.getMessage());
    }
  }

  public void destroy() {
    m_ClientProperties = null;

    super.destroy();
  }