private void RemoveIWCConnection(string module, string[] cmds)
        {
            string         Url = MainConsole.Instance.CmdPrompt("Url to the connection");
            IWCCertificate c   = FindConnectionByURL(Url);

            if (c == null)
            {
                m_log.Warn("Could not find the connection.");
                return;
            }
            OutgoingPublicComms.DeleteRemoteHost(c);
            RemoveConnection(c);
            IConfigurationService configService = m_registry.RequestModuleInterface <IConfigurationService>();

            //Remove the Urls from the config service
            configService.RemoveUrls(c.Connection.UserName);
        }