コード例 #1
0
ファイル: DPISUserWSFunction.cs プロジェクト: TIT-tech/OPM_BO
    public static bool deleteUser(string username)
    {
        bool ret = false;
        try {
            OpenLdapService ws = new OpenLdapService();
            ws.Url = OPMBOGlobalFunction.GetOPMSysconfig("OpenLDAPURL");
            ws.Timeout = 1000;
            DLLFunction.DLLLogFile.AddInterfaceLog("DPIS", "OpenLdapWebService", "CTLT_EMP", "user_code", "deleteUser user_code=" + username + " OpenLDAPURL=" + ws.Url);

            ret = (ws.deleteUser(username) == "0000");
            ws.Dispose();
        }
        catch (Exception ex) {
            ret = false;
        }

        return ret;
    }