diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 4c52e4c..4fbbe1e 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,14 +1,15 @@ - + + + + - - - - + + @@ -463,7 +464,6 @@ - @@ -488,6 +488,7 @@ - \ No newline at end of file diff --git a/Activite.py b/Activite.py index 5412898..3fb2608 100644 --- a/Activite.py +++ b/Activite.py @@ -437,6 +437,144 @@ def Update_activite(diction): return False, " Impossible de mettre à jour l'activité " +""" +Mise à jour du status de l'activité +""" +def Update_activite_status(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', "status",'_id' ] + + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', '_id', 'status' ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", token) + + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + partner_recid = mycommon.get_parnter_recid_from_token(token) + if (partner_recid is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - partner_recid est KO. Les données de connexion sont incorrectes ") + return False, " Vous n'etes pas autorisé à utiliser cette API " + + # Recuperation des données du partenaire + local_status, my_partner = mycommon.get_partner_data_from_recid(partner_recid) + if (local_status is False): + mycommon.myprint(str(inspect.stack()[0][3]) + " - impossible de récupérer les données du partenaire") + return False, str(inspect.stack()[0][3]) + " - impossible de récupérer les données du partenaire. " + + """ + Verification s'il n'existe pas un cient du partenaire qui perte le meme + nom, ou la meme adresse email + """ + + qry_update = {'valide': '1', 'locked':'0', 'partner_recid': str(my_partner['recid']), + '_id':ObjectId(str(diction['_id'])),} + + + + print(" ### qry_update = ", qry_update) + + tmp_count = MYSY_GV.dbname['activite'].count_documents(qry_update) + if (tmp_count <= 0): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de l'activité est invalide ") + + return False, " L'identifiant de l'activité est invalide " + + + + """ + Recuperation des données fournies en entrée + """ + + data_update = {} + """ + Recuperation des données fournies en entrée + """ + + + + status = "" + if ("status" in diction.keys()): + status = diction['status'] + data_update['status'] = diction['status'] + if (status not in MYSY_GV.ACTIVITE_STATUS): + mycommon.myprint( + "- Le statut " + str(status) + " n'est pas autorisé ") + return False, "- Le statut " + str(status) + " n'est pas autorisé " + + + + + data_update['valide'] = '1' + data_update['locked'] = '0' + data_update['date_update'] = str(datetime.now()) + data_update['update_by'] = str(my_partner['_id']) + + + """ + Clés de mise à jour + """ + data_cle = {'valide': '1', 'locked':'0', 'partner_recid': str(my_partner['recid']), + '_id':ObjectId(str(diction['_id'])),} + + + inserted_id = "" + result = MYSY_GV.dbname['activite'].find_one_and_update( + data_cle, + {"$set": data_update}, + upsert=False, + return_document=ReturnDocument.AFTER + ) + if ("_id" not in result.keys()): + mycommon.myprint( + " Impossible de mettre à jour l'activité : related_collection_recid = " + str(diction['related_collection_recid'])) + return False, " Impossible de mettre à jour l'activité " + + return True, " L'activité a été correctement mise à jour" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de mettre à jour l'activité " + + + + """ Recuperation de la liste des activité d'une entité en se basant sur - related_collection @@ -463,12 +601,222 @@ def Get_List_Entity_Activite(diction): if val not in field_list and val.startswith('my_') is False: mycommon.myprint(str( inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") - return False, " Les informations fournies sont incorrectes", + return False, " Les informations fournies sont incorrectes", False """ Verification des champs obligatoires """ field_list_obligatoire = ['token', 'related_collection'] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", False + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", token) + + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide", False + + # Recuperation des données du partenaire + local_status, my_partner = mycommon.get_partner_data_from_token(token) + if (local_status is False): + mycommon.myprint(str(inspect.stack()[0][3]) + " - impossible de récupérer les données de l'utilisateur ") + return False, str(inspect.stack()[0][3]) + " - impossible de récupérer les données de l'utilisateur. ", False + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_recid'] = str(my_partner['recid']) + data_cle['related_collection'] = str(diction['related_collection']) + + if ("related_collection_owner_email" in diction.keys()): + related_collection_owner_email = str(diction['related_collection_owner_email']) + """ + Recuperation du recid associé au related_collection_owner_email dans la collection : related_collection + """ + + local_tmp_val = MYSY_GV.dbname[str(diction['related_collection'])].find_one( + {'email': related_collection_owner_email}) + + if (local_tmp_val is None or "recid" not in local_tmp_val.keys()): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - impossible de récupérer les données de " + str( + related_collection_owner_email) + " dans la collection " + str(diction['related_collection'])) + return False, str(inspect.stack()[0][3]) + " - impossible de récupérer les données de " + str( + related_collection_owner_email) + " dans la collection " + str( + diction['related_collection']) + " . ", False + + data_cle['related_collection_recid'] = str(local_tmp_val['recid']) + + data_cle['locked'] = "0" + + RetObject = [] + val_tmp = 0 + + nb_activite_en_retard = 0 + + for retval in MYSY_GV.dbname['activite'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + + retard = 0 + # On analyse le retard que sur les activité en cours , pas celles annulées ou faite + if( "deadline" in retval.keys() and retval['status'] == "0"): + local_status = mycommon.CheckisDate(retval['deadline']) + if( local_status is not False ): + mytoday = datetime.today().strftime("%d/%m/%Y") + retard = (datetime.strptime(str(retval['deadline']), '%d/%m/%Y') - datetime.strptime(str(mytoday), '%d/%m/%Y')).days + + if (retard < 0): + nb_activite_en_retard = nb_activite_en_retard + 1 + + user['retard'] = str(retard) + + if("employee_assigned_view_statut" not in user.keys() ): + user['employee_assigned_view_statut'] = "" + + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + return True, RetObject, str(nb_activite_en_retard) + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des activités ", False + + +""" +Recuperation des Activité qui sont assigné à : employee_assigned_to_id +""" +def Get_List_Activite_Assign_To(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'employee_assigned_to_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", False + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'employee_assigned_to_id'] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", False + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", token) + + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide", False + + # Recuperation des données du partenaire + local_status, my_partner = mycommon.get_partner_data_from_token(token) + if (local_status is False): + mycommon.myprint(str(inspect.stack()[0][3]) + " - impossible de récupérer les données de l'utilisateur ") + return False, str(inspect.stack()[0][3]) + " - impossible de récupérer les données de l'utilisateur. ", False + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_recid'] = str(my_partner['recid']) + data_cle['employee_assigned_to_id'] = str(diction['employee_assigned_to_id']) + + data_cle['locked'] = "0" + + RetObject = [] + val_tmp = 0 + + nb_activite_en_retard = 0 + + for retval in MYSY_GV.dbname['activite'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + + retard = 0 + # On analyse le retard que sur les activité en cours , pas celles annulées ou faite + if( "deadline" in retval.keys() and retval['status'] == "0"): + local_status = mycommon.CheckisDate(retval['deadline']) + if( local_status is not False ): + mytoday = datetime.today().strftime("%d/%m/%Y") + retard = (datetime.strptime(str(retval['deadline']), '%d/%m/%Y') - datetime.strptime(str(mytoday), '%d/%m/%Y')).days + + if (retard < 0): + nb_activite_en_retard = nb_activite_en_retard + 1 + + user['retard'] = str(retard) + + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + return True, RetObject, str(nb_activite_en_retard) + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des activités ", False + + + +""" +Cette fonction permet de recuperer le nombre de tache en retard pour une personne données +(les taches qui sont assignées) +""" +def Get_Nb_Entity_Activite_Assign_To_Me_En_Retard(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'employee_assigned_to_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'employee_assigned_to_id'] for val in field_list_obligatoire: if val not in diction: mycommon.myprint( @@ -501,55 +849,117 @@ def Get_List_Entity_Activite(diction): """ data_cle = {} data_cle['partner_recid'] = str(my_partner['recid']) - data_cle['related_collection'] = str(diction['related_collection']) - - if ("related_collection_owner_email" in diction.keys()): - related_collection_owner_email = str(diction['related_collection_owner_email']) - """ - Recuperation du recid associé au related_collection_owner_email dans la collection : related_collection - """ - - local_tmp_val = MYSY_GV.dbname[str(diction['related_collection'])].find_one( - {'email': related_collection_owner_email}) - - if (local_tmp_val is None or "recid" not in local_tmp_val.keys()): - mycommon.myprint( - str(inspect.stack()[0][3]) + " - impossible de récupérer les données de " + str( - related_collection_owner_email) + " dans la collection " + str(diction['related_collection'])) - return False, str(inspect.stack()[0][3]) + " - impossible de récupérer les données de " + str( - related_collection_owner_email) + " dans la collection " + str( - diction['related_collection']) + " . " - - data_cle['related_collection_recid'] = str(local_tmp_val['recid']) + data_cle['employee_assigned_to_id'] = str(diction['employee_assigned_to_id']) + data_cle['status'] = "0" data_cle['locked'] = "0" RetObject = [] - val_tmp = 1 + val_tmp = 0 + nb_activite_en_retard = 0 for retval in MYSY_GV.dbname['activite'].find(data_cle): user = retval user['id'] = str(val_tmp) - retard = "0" - if( "deadline" in retval.keys() ): + retard = 0 + if( "deadline" in retval.keys() and retval['status'] == "0" ): local_status = mycommon.CheckisDate(retval['deadline']) if( local_status is not False ): mytoday = datetime.today().strftime("%d/%m/%Y") retard = (datetime.strptime(str(retval['deadline']), '%d/%m/%Y') - datetime.strptime(str(mytoday), '%d/%m/%Y')).days + + if( retard < 0 ): + nb_activite_en_retard = nb_activite_en_retard + 1 + user['retard'] = str(retard) val_tmp = val_tmp + 1 RetObject.append(mycommon.JSONEncoder().encode(user)) - return True, RetObject + print(" ### il y a "+str(nb_activite_en_retard)+" taches en retard ") + + return True, str(nb_activite_en_retard) except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) - return False, " Impossible de récupérer la liste des activités " + return False, " Impossible de récupérer la liste des activités en retard" + + +""" +On traite les retard sur les taches qui me sont assignées +""" +def Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['partner_owner_recid', 'employee_assigned_to_id',] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['partner_owner_recid', 'employee_assigned_to_id',] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_recid'] = str(diction['partner_owner_recid']) + data_cle['employee_assigned_to_id'] = str(diction['employee_assigned_to_id']) + data_cle['status'] = "0" + data_cle['locked'] = "0" + + RetObject = [] + val_tmp = 0 + + nb_activite_en_retard = 0 + for retval in MYSY_GV.dbname['activite'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + + retard = 0 + if( "deadline" in retval.keys() and retval['status'] == "0"): + local_status = mycommon.CheckisDate(retval['deadline']) + if( local_status is not False ): + mytoday = datetime.today().strftime("%d/%m/%Y") + retard = (datetime.strptime(str(retval['deadline']), '%d/%m/%Y') - datetime.strptime(str(mytoday), '%d/%m/%Y')).days + + if( retard < 0 ): + nb_activite_en_retard = nb_activite_en_retard + 1 + + user['retard'] = str(retard) + + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + #print(" ### il y a "+str(nb_activite_en_retard)+" taches en retard ") + + return True, str(nb_activite_en_retard) + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des activités en retard" """ @@ -613,7 +1023,7 @@ def Get_Given_Activite(diction): data_cle['locked'] = "0" RetObject = [] - val_tmp = 1 + val_tmp = 0 #print(" ### data_cle = ", data_cle) for retval in MYSY_GV.dbname['activite'].find(data_cle): @@ -642,6 +1052,21 @@ def Get_Given_Activite(diction): RetObject.append(mycommon.JSONEncoder().encode(user)) #print(" ### RetObject = ", RetObject) + + """ + 05/08/2024 - + Pour gerer les badget : nouvelle tache qui me sont assigné ... + en gros, quand un utilisateur se connectect on lui affiche le nombre + de nouvelles activité. + Une fois qu'il a ouvert l'activité, elle n'est plus 'nouvelle' + """ + if( val_tmp > 0 ): + MYSY_GV.dbname['activite'].find_one_and_update(data_cle, + {"$set": {"employee_assigned_view_statut":"1"}}, + upsert=False, + return_document=ReturnDocument.AFTER + ) + return True, RetObject @@ -650,3 +1075,72 @@ def Get_Given_Activite(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de récupérer l'activité " + +""" +Supprimer une activité +""" +def Delete_Given_Activite(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', '_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', '_id'] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", token) + + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + # Recuperation des données du partenaire + local_status, my_partner = mycommon.get_partner_data_from_token(token) + if (local_status is False): + mycommon.myprint(str(inspect.stack()[0][3]) + " - impossible de récupérer les données de l'utilisateur ") + return False, str(inspect.stack()[0][3]) + " - impossible de récupérer les données de l'utilisateur. " + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['_id'] = ObjectId(str(diction['_id'])) + data_cle['partner_recid'] = str(my_partner['recid']) + + + del_activite = MYSY_GV.dbname['activite'].delete_one(data_cle) + + return True, " L'activité a été correctement supprimée " + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de supprimer l'activité " + diff --git a/GlobalVariable.py b/GlobalVariable.py index 538a240..3b1e7fd 100644 --- a/GlobalVariable.py +++ b/GlobalVariable.py @@ -496,9 +496,10 @@ Variable qui defini les status qui sont acceptés pour une activité encours : 0 fait : 1 annulé : -1 +archivé : 2 """ -ACTIVITE_STATUS = ['0', '-1', '1'] +ACTIVITE_STATUS = ['0', '-1', '1', '2'] """ Les types d'image authorisé a etre stockés en base de données diff --git a/Log/log_file.log b/Log/log_file.log index e06c95a..49425c4 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2770379,3 +2770379,8132 @@ INFO:root:2024-09-04 22:36:04.373202 : Security check : IP adresse '127.0.0.1' INFO:root:2024-09-04 22:36:04.377205 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [04/Sep/2024 22:36:04] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [04/Sep/2024 22:36:04] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-04 22:44:02.329363 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-04 22:44:02.329363 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-04 22:44:02.330459 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-04 22:44:02.330459 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-04 22:44:02.330459 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-04 22:44:14.965938 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-04 22:44:14.965938 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-04 22:44:14.965938 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-04 22:44:14.965938 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-04 22:44:14.965938 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 09:40:06.092652 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 09:40:06.093666 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 09:40:06.093666 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 09:40:06.093666 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 09:40:06.093666 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 09:40:17.091680 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 09:40:17.091680 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 09:40:17.091680 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 09:40:17.091680 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 09:40:17.091680 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 09:43:57.651221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:57.652222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:57.654228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:57.655221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:57.657212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:57.660405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:57.662482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:57.664734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:57.677828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:57.821002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.364077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.367797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.371809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.379367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.383362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.388692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.394823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.399905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.409462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.411457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.418233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.422237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.429657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.435801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.442642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.447017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.456535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.463528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.471529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.479531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.481527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.486781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.494242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.500686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.504247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.509248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.517355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.521888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.527907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.533543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.537977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.542346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.548167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.553158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.557590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.561734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.565917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.569724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.575264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.580117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.585650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.590024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.597701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.603959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.610476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.615214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.619233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.625235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.631239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.637233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.643237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.649227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.652465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.658246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.663456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.669770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.678357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.681689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:43:58.687596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:43:58.697468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:43:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.562580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.670463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.673477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.677818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.681818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.688093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.694216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.696601 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.699621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.708773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.725412 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.803598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.807384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.809927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.813917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.820913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:05.826191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.848721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.855101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.863635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:05.874585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:38.213000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:38.217918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:38.220951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:38] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:38.233570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:38] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:38.241128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:38.247690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:38] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:38] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:38] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:38] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:44:40.396327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:44:40.400375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:40] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:44:40] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:50:12.876492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:50:12.879504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:50:12.884834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:50:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:50:12] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:50:12] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:52:36.650661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:52:36.653228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:52:36.659766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:52:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:52:36] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:52:36] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:56:59.263535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:56:59.270221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:56:59.281891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:56:59] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:56:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:56:59] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:57:40.169437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:57:40.176667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:57:40.183659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:57:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:57:40] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:57:40] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 09:59:59.483106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:59:59.489832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 09:59:59.496088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:59:59] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:59:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 09:59:59] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:01:54.029164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:01:54.037873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:01:54.045901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:01:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:01:54] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:01:54] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:05:39.122080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:05:39.127311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:05:39.133193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:05:39] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:05:39] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:05:39] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:08:55.326131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:08:55.333144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:08:55.340752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:08:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:08:55] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:08:55] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:11:40.617826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:11:40.624343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:11:40.632438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:11:40] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:11:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:11:40] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:19:00.396661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:19:00] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:20:39.495544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:20:39.501545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:20:39.509545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:20:39] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:20:39] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:20:39] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:26:54.016083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:26:54] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:36:22.460004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:36:22.468257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:36:22.479264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:36:22] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:36:22] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:36:22] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:38:29.644112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:38:29.651803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:38:29.660273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:38:29] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:38:29] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:38:29] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:38:36.516558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:38:36.524283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:38:36] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:38:36] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:39:48.796239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:39:48] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:41:01.771926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:41:01.777508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:41:01] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:41:01] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:19.038560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:19.048110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:19.055399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:19] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:19] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:20.342485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:20.348097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:20] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:20] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:23.017005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:23.023453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:23] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:23] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:30.563482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:30.572685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:30.581267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:30.594190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:30.606384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:30.613141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:30.637933 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:30.648996 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:30.771327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:30.775539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:30.781865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:30.787319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:30.797279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:30.817968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:30] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:33.188917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:33.196453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:33] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:33] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:49.908976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:49.914200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:49.918211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:49] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:49] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:49] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:51.162635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:43:51.167678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:51] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:51] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:43:59.039516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:43:59] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:44:33.949002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:44:33.955028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:44:33.961025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:44:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:44:33] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:44:33] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:44:47.720487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:44:47.726449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:44:47.730944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:44:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:44:47] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:44:47] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:45:09.215636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:45:09.219714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:45:09.223558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:45:09] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:45:09] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:45:09] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:45:11.285613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:45:11.291415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:45:11] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:45:11] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:45:38.344444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:45:38] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:46:05.821459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:46:05.824038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:46:05.827453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:46:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:46:05] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:46:05] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:51:17.318592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:17] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:51:48.090538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:51:48.094925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:51:48.098283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:48] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:51:48.111188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:51:48.116936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:51:48.126952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:48] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:51:50.445478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:51:50.448468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:50] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:50] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:51:50.666988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:51:50.671211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:50] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:51:50] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:52:35.915293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:52:35.917290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:52:35.921085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:35] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:35] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:52:58.344737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:52:58.348277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:52:58.350970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:58] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:52:58.369733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:52:58.373744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:52:58.378743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:58] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:58] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:52:58] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:53:00.124783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:53:00.127779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:53:00] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:53:00] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:56:49.841818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:56:49] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 10:56:55.223123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:56:55.225859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 10:56:55.227902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:56:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:56:55] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 10:56:55] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:00:28.836197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:00:28.847062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:00:28] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:00:28] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:01:45.388671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:01:45.391031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:01:45.396845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:01:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:01:45] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:01:45] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:02:08.494129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:02:08.497612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:02:08] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:02:08] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:04:30.634599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:04:30.638024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:04:30.640104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:04:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:04:30] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:04:30] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:04:43.796263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:04:43.799262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:04:43] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:04:43] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:05:48.667554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:05:48.671591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:05:48.674568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:05:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:05:48] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:05:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:06:41.916671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:06:41.921368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:06:41.924382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:06:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:06:41] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:06:41] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:07:12.733364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:07:12.736370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:07:12.740913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:07:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:07:12] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:07:12] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:07:28.220953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:07:28.227048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:07:28] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:07:28] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:07:35.817904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:07:35.820900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:07:35] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:07:35] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:10:25.793482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:10:25.798496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:10:25.804039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:10:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:10:25] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:10:25] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:10:33.567687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:10:33.571685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:10:33.577685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:10:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:10:33] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:10:33] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:15:26.303614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:15:26.309875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:15:26.313408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:15:26] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:15:26] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:15:26] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:16:04.021233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:16:04.024769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:16:04.035714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:16:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:16:04] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:16:04] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:16:45.284807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:16:45.289635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:16:45.295354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:16:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:16:45] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:16:45] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:18:32.639021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:18:32.643049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:18:32.647098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:18:32] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:18:32] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:18:32] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:19:17.954809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:19:17] "POST /myclass/api/Add_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:19:18.242298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:19:18] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:19:23.717935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:19:23.722590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:19:23] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:19:23] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:19:31.088175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:19:31] "POST /myclass/api/Delete_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:19:31.207670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:19:31] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:15.506216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:15.523992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:19.373272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:19.380271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:19.389276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:19.392271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:19.409273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:19.414271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:19.423368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:19.438955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:19.446215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:19.451276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:19.459698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:19.466744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:19.473587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:19.484439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:25.570678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:25.575915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:25.579094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:25.586190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:24:38.492841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:24:38.514365 : - Le statut call n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:24:38] "POST /myclass/api/Add_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:35:19.393338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:35:19.397340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:35:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:35:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:42:18.501327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:42:18.510356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:42:18.515788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:42:18.521963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:42:18.530829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:42:18] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:42:18.541887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:42:18.554816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:42:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:42:18] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:42:18] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:42:18] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:42:18] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:42:18] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:51:08.012777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:51:08.019504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:51:08.025523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:51:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:51:08.048304 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:51:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:51:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:55:39.988545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:55:39.994134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:55:39.998999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:55:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:55:40.021300 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:55:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:55:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:57:02.139122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:57:02.143570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:57:02.149766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:57:02.155745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:57:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:57:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:57:03.602415 : Get_List_Entity_Activite - impossible de récupérer les données de dans la collection partner_client +INFO:root:2024-09-05 11:57:03.602415 : Get_List_Entity_Activite - impossible de récupérer les données de dans la collection partner_client +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:57:03] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:57:03] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:58:35.062530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:58:35.066546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:58:35.067538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:58:35.086998 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:58:35.554155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:58:35.560286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:58:35.564287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:58:35.571295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:58:35.583476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:58:35.585476 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 11:58:35.592524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 11:58:35.597638 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 11:58:35] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:09:44.503204 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:09:44.504236 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:09:44.504236 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:09:44.504236 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:09:44.504236 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 15:09:59.005637 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:09:59.005637 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:09:59.006879 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:09:59.006879 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:09:59.006879 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 15:12:31.026165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.028168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.030525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.032667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.035537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.037547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.042811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.044548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.056906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.194571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.806057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.810434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.816350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.820762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.831521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.833611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.840291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.846283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.851298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.855962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.861550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.865080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.870094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.874529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.878527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.882535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.890071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.894649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.897997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.904359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.908957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.913041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.918720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.922719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.928928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.937509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.940526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.947799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.955073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.961053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.966035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.973461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:31.978502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.983567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.991533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:31.998621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.009612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.014722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:32.019971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.027490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:32.037769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.046704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:32.052889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.063885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.072531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:32.076530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.086529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.095035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.102026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:32.107762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.115284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.118469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:32.124837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.129846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.135170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.141188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.145183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:32.148252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:32.152610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:32.157627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.193200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.299946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.304300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.308295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.312683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.314689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.324688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.329197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.341303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.372519 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.382837 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.457351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.460347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.466145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.471183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:35.477181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.486721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.497844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.504089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.515549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:35.525362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:49.027368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:49.030373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:49.032362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:12:49.039364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:12:49.882022 : Get_List_Entity_Activite - impossible de récupérer les données de dans la collection partner_client +INFO:root:2024-09-05 15:12:49.882022 : Get_List_Entity_Activite - impossible de récupérer les données de dans la collection partner_client +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:12:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:13:27.117993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:13:27.130418 : Add_activite - impossible de récupérer les données de dans la collection partner_client +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:13:27] "POST /myclass/api/Add_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:14:32.774659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:14:32.777654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:14:32.782652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:14:32.786656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:14:32.789669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:14:32.791624 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-05 15:14:32.796647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:32] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:14:32.810552 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:32] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:32] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:32] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:14:33.992899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:14:33.995402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:14:33.997868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:14:34.003389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:14:34.025470 : Get_List_Entity_Activite - impossible de récupérer les données de dans la collection partner_client +INFO:root:2024-09-05 15:14:34.026487 : Get_List_Entity_Activite - impossible de récupérer les données de dans la collection partner_client +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:14:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:21:13.351236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:21:13.354563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:21:13.358586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:21:13.361600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:21:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:21:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:21:13.384346 : Get_List_Entity_Activite -collection names cannot be empty - Line : 512 +INFO:root:2024-09-05 15:21:13.384346 : Get_List_Entity_Activite -collection names cannot be empty - Line : 512 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:21:13] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:21:13] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 15:25:17.944020 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:25:17.945335 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:25:17.945335 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:25:17.945335 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:25:17.945335 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 15:27:28.867840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:28.869417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:28.872434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:28.874435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:28.879429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:28.882892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:27:28.892024 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:27:28.902867 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:27:29.258926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:29.261916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:29.266233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:29.270242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:29.275332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:29.279552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:29] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:27:29.284771 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:27:29.292160 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:29] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:29] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:29] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:27:45.390132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:45.394055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:45.398114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:27:45.404527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:45] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:45] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:27:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:28:12.129825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:28:12] "POST /myclass/api/Add_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:28:12.156202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:28:12] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:28:30.001034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:28:30] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:29:22.620797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:22] "POST /myclass/api/Add_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:29:22.652558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:22] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:29:36.155081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:29:36.157248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:29:36.160492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:29:36.165092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:29:36.171402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:29:36.172418 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:29:36.175979 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:29:36.177998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:36] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:36] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:36] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:36] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:29:37.430612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:29:37.433880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:29:37.435970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:29:37.440380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:37] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:37] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:29:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 15:36:26.295257 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:36:26.296260 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:36:26.296260 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:36:26.296260 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:36:26.296260 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 15:38:16.401708 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:38:16.401708 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:38:16.401708 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:38:16.401708 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:38:16.401708 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 15:39:09.100790 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:39:09.100790 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:39:09.101797 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:39:09.101797 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:39:09.101797 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 15:40:09.625695 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:40:09.625695 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:40:09.625695 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:40:09.625695 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:40:09.625695 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 15:42:12.552925 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:42:12.552925 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:42:12.552925 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:42:12.552925 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:42:12.552925 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 15:44:31.829866 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 15:44:31.829866 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 15:44:31.829866 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 15:44:31.829866 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 15:44:31.829866 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 15:45:11.903726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:45:11.905719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:45:11.909723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:45:11.926502 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:45:12.304173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:45:12.308173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:45:12.312635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:45:12.316113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:45:12.323017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 15:45:12.328286 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:12] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:45:12.335251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:12] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:12] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 15:45:12.382213 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:12] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 15:45:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:09:20.205912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.209386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:09:20.214090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.216084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.221994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:09:20.229989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.234991 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:09:20.242526 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:09:20.585273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.589141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.593150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.597129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.602144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.606130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:09:20.612131 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:09:20.644590 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:09:20] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:11:21.092552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:11:21.096633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:11:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:11:21.100967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:11:21.111456 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:11:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:11:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:12:03.757024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:12:03.761034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:12:03.764024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:12:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:12:03.777456 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:12:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:12:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:15:29.232567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:15:29.237250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:15:29.242261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:15:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:15:29.252429 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:15:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:15:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:18:02.214417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:18:02.216564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:18:02.224597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:18:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:18:02.239575 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:18:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:18:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:19:51.747543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:19:51.754536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:19:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:19:51.758700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:19:51.773106 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:19:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:19:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:20:13.766642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:20:13.778372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:20:13.782364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:20:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:20:13.795178 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:20:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:20:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:20:55.626464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:20:55.629494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:20:55.631967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:20:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:20:55.646743 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:20:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:20:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:21:40.714452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:21:40.721002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:21:40.725009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:21:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:21:40.738696 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:21:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:21:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:21:53.203940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:21:53.206144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:21:53.210318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:21:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:21:53.220317 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:21:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:21:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:22:19.830290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:22:19.834292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:22:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:22:19.838290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:22:19.849023 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:22:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:22:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:22:40.669094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:22:40.671609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:22:40.701152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:22:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:22:40.712552 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:22:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:22:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:25:58.421779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:25:58.426927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:25:58.431950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:25:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:25:58.443954 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:25:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:25:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:26:13.224441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:26:13.229442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:26:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:26:13.234471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:26:13.244668 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:26:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:26:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:26:53.976042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:26:53.979053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:26:53.982062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:26:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:26:53.995828 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:26:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:26:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:28:19.486387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:28:19.491388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:28:19.495390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:28:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:28:19.504384 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:28:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:28:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:29:31.915101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:31.919113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:29:31.923120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:31.927115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:31.932609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:31.937610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:29:31.951164 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:29:31.960479 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:29:32.263455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:32.268451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:32.273454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:32.278971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:32.288974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:29:32.293589 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-05 16:29:32.296048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:32] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:32] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:29:32.327400 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:32] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:29:32] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:30:35.077442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:35.086482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:35.094767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:35.100226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:30:54.107403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.114753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.120752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.126751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:30:54.143758 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:30:54.251088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.263010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.268123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.277184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.291273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:30:54.318352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:30:54.334966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.343089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:30:54.355890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:30:54.378173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:30:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:31:04.835781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:31:04.840159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:31:04.848079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:31:04.860093 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:31:27.468654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:31:27.475678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:31:27.480682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:31:27.489675 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:31:38.783292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:31:38.793104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:31:38.798104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:31:38.803104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:38] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:38] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:31:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:32:47.627102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:32:47.633736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:32:47.637418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:32:47.642215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:32:47.655099 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:32:47.796750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:32:47.802750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:32:47.807896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:32:47.810924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:32:47.819298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:32:47.834315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:32:47.843700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:32:47.856847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:32:47.863628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:32:47.871480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:32:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:33:28.730771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:33:28.736901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:33:28.741729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:33:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:33:28.754405 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:33:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:33:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:33:31.818755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:33:31.822361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:33:31.826872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:33:31.830904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:33:31] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:33:31] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:33:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:33:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.365336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.371539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.377535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.384051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.391911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.402589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.414796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.421726 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.438691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.450157 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.616532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.623997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.631664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.641939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.654407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.660229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.674885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.690176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:25.701902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:25.714517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:35:41.069735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:41.075029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:41.080964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:35:41.088504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:41] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:35:41] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:37:29.564358 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:37:29.564358 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:37:29.564358 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:37:29.564358 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:37:29.564358 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 16:37:31.027208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.031219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.036529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.041418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.047596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.056317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:37:31.075344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:37:31.105332 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:37:31.118227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.133514 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:37:31.279589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.282983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.287407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:37:31.320839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:37:31.347695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.389723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.397873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.407136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.417910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:31.422971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:37:40.118037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:40.120094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:40.125386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:37:40.131629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:40] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:40] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:37:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:38:40.445278 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:38:40.446277 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:38:40.446277 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:38:40.446277 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:38:40.446277 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 16:38:41.134394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.136711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.140258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.145857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:38:41.149490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.159333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:38:41.175121 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:38:41.196631 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:38:41.403633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.407652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.412656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.417669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.425879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.435099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:38:41.452940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:38:41.464693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:41.469661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:38:41.483665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:38:45.535428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:45.539432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:45.545435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:38:45.550431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:45] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:45] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:38:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:39:16.448617 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:39:16.448617 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:39:16.448617 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:39:16.448617 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:39:16.448617 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:40:24.017618 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:40:24.017618 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:40:24.017618 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:40:24.017618 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:40:24.017618 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 16:40:33.374215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.377218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.381218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.387213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.394676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.401778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:40:33.424774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:40:33.444183 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:40:33.452843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:40:33.477297 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:40:33.632957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.637746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.642539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.647935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.652622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:40:33.679213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:40:33.689474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.697750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.703773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:40:33.712772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:40:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:41:16.245131 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:41:16.245131 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:41:16.245131 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:41:16.246122 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:41:16.246122 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 16:41:21.795253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:21.798256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:21.802262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:21.806481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:41:21.815499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:41:21.824497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:21.844500 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:41:21.856497 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:41:22.028322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:22.035337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:22.041558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:22.047198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:41:22.054548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:22.062316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:41:22.075201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:41:22.091038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:41:22.106578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:41:22.115605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:41:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:43:07.396395 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:43:07.396395 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:43:07.396395 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:43:07.396395 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:43:07.396395 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 16:43:29.995822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:30.002229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:30.005360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:30.022281 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.221974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.226981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.230978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.236069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.246060 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.248592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.252973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.266964 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.477767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.481783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.487034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.497699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.505672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.516387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.522385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:37.528377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.535393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:37.543660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:40.931019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:40.934553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:43:40.942452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:40] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:43:40.948585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:40] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:43:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:44:37.534847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.538477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.541681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.545125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:44:37.555907 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:44:37.701744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.705187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.709486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.713491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.718160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:44:37.737229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.739392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.745457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.749443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:44:37.754986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:44:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:19.044430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:19.047421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:19.050431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:19.054426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:20.886737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:20] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:28.537084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:28] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:28.562752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:28] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:48.709671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:48.714107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:48.716140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:48.720137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:48.724133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:48.732264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:48.742281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:48.744284 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:48.752285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:48.762309 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:49.061279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:49.064536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:49.068713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:49.072974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:49.076305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:49.097749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:45:49.104252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:49.110621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:49.113607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:45:49.121052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:45:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:47:10.620889 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:47:10.621898 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:47:10.621898 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:47:10.621898 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:47:10.621898 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:47:24.318891 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:47:24.318891 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:47:24.318891 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:47:24.318891 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:47:24.318891 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:48:48.725372 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:48:48.725372 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:48:48.725372 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:48:48.725372 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:48:48.725372 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:49:14.997914 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:49:14.997914 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:49:14.997914 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:49:14.997914 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:49:14.997914 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 16:49:16.314646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:16.318043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:16.320416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:16.323824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:16] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:16] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:49:21.690058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.693060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.697154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:49:21.702367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.704536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.709561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.715555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.722562 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:49:21.734152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:49:21.752493 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:49:21.866026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.869024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.870021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.875033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.881032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.887565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:49:21.899638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:49:21.907073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:49:21.918583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:49:21.927182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:49:21] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:08.566067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:08.569387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:08.572362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:08.583425 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:15.118612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:15.121716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:15.124768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:15.129799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:16.400008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:16] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:21.120592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:21] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:21.140188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:21] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.154127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.157135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.160707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.166695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.170247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.175247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.182389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.187630 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.193032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.210675 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.343842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.346061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.349513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.353864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.359134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.367150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.379935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.381463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:50:52.389468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:50:52.403450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:50:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:51:06.025173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:51:06.028564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:51:06.032066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:51:06.036503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:51:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:51:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:51:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:51:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:51:22.915264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:51:22] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 16:52:05.783938 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 16:52:05.784454 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 16:52:05.784454 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 16:52:05.784454 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 16:52:05.784454 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 16:52:06.163797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:52:06.167249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:52:06.169690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:52:06.172985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:52:06.175185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:52:06.178614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:52:06.207124 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:52:06.210127 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 16:52:06.873772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:52:06.876770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:52:06.880774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 16:52:06.886031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 16:52:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 17:04:26.582489 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 17:04:26.582489 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 17:04:26.583494 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 17:04:26.583494 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 17:04:26.583494 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 17:04:35.548432 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 17:04:35.548432 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 17:04:35.548432 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 17:04:35.548432 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 17:04:35.548432 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 17:04:35.587404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:35.591391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:35.593393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:35.597393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:35.604405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:35.610397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:35.617028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:35.625041 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-05 17:04:35.627042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:35.630540 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:35.636776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:35.642958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:35.646977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:35.658495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:35.671493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:35.676022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:46.563899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.567409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:46.571461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.574665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.580964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:46.590436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.594439 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:46.606741 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:46.754609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.757615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.759609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.765612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.770141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:46.780144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:46.788776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.801925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:46.804924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:46.816098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:51.415440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:51.417433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:51.420732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:04:51.425347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:04:56.792002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:04:56] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:03.488488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:03] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:03.519982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:04.422103 : Get_List_Entity_Activite -'<' not supported between instances of 'str' and 'int' - Line : 544 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:04] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:20.835965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:20.839952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:20.846298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:20.853869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:20.858884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:20.866149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:20.877489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:20.892524 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:20.898621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:20.922016 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:21.209346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:21.216359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:21.221825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:21.226816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:21.241146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:21.244619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:21.255808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:21.279480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:05:21.291642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:05:21.297645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:05:21] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:06:34.488639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:06:34.494195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:06:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:06:34.498193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:06:34.509644 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:06:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:06:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:04.042275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.046007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:04.051997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.061553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.065720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.071195 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-05 17:07:04.073217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:04.088543 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:04.319293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.323290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.328244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.335485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:04.346510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.359097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:04.367984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.372004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.380882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:04.391520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:09.725958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:09.728964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:09.734511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:07:09.737500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:09] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:09] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:28.917216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:28] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:36.694889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:36] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:36.743829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:42.611167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:42] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:50.711285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:50] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:50.752400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:07:56.734397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:07:56] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:08:14.117477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:08:14] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:08:14.152027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:08:14.184022 : Get_List_Entity_Activite -'<' not supported between instances of 'str' and 'int' - Line : 544 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:08:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 17:09:12.994523 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 17:09:12.994523 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 17:09:12.994523 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 17:09:12.994523 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 17:09:12.994523 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 17:09:48.872656 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 17:09:48.872656 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 17:09:48.872656 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 17:09:48.872656 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 17:09:48.872656 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 17:10:05.250806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.253748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.257151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.261653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:05.273975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.281077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:05.285550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:05.290518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:05.314762 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:05.318203 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:05.594837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.597840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.601839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.604840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.609838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.616839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:05.633844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.639505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:05.646736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:05.651755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:12.838334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:12.841449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:12.847145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:12.851629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:12] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:12] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:14.657172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:14] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:18.804211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:18] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:18.840622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:22.130401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:22] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:26.539236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:26] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:26.568285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:26] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:28.769382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:28] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:34.178581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:34] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:34.209731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:56.766056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.769056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.771057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.776040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:56.788048 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:56.889647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.896917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.902386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.907399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:56.913386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:56.929055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 17:10:56.936617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.942292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.944289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 17:10:56.950331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:56] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 17:10:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 19:58:18.817200 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 19:58:18.817200 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 19:58:18.818186 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 19:58:18.818186 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 19:58:18.818186 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:01:08.676299 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:01:08.676299 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:01:08.676299 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:01:08.676299 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:01:08.676299 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:05:08.906642 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:05:08.907662 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:05:08.907662 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:05:08.907662 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:05:08.907662 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:05:59.201557 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:05:59.201557 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:05:59.201557 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:05:59.201557 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:05:59.201557 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:08:12.666153 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:08:12.666153 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:08:12.666153 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:08:12.666153 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:08:12.667154 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 20:22:59.524913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:22:59.529981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:22:59.534544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:22:59.544829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:22:59.550397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:22:59.552398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:22:59] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:22:59] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:22:59] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:22:59] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:22:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:22:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:27.299935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.303433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.309506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.314687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:27.323552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.325889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.336527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.339813 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:27.352370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:27.375508 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:27.567308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.570319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.574688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.580299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.586841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.590875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:27.604659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.611702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:27.618206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:27.633781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:31.899896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:31.904911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:31.910526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:31.919219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:31.928737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:26:31.932812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:31] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:31] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:31] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:31] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:26:37.868984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:26:37] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:12.099789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.104263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.108782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:12.116873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.123591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:12.132790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.136315 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:12.153938 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:12.466123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.470560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.474957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.479380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.489557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:12.495427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.510759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:12.536662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.537689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:12.547012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:23.251130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.256687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.263435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.275745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.285760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:23.304562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:23.321021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.327672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.340903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.354456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:23.371909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.380286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:23.398252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:23.402246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:25.839899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:25] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:27.398477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:27.414974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:27.425896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:27.428898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:27.447071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:27.469981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:27.482452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:27.491933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:27.507773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:27:27.525446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:27:27.535595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:27:27] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:27.497529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:27.499837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:27.500832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:27.504026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:27.505046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:27.512586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:27.513937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:27.517048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:27] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:27] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:27] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:27] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:27.834007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:27] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:27.965978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:27] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:28.432887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:28.433398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:28.434429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:28.435719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:28.437764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:28.447130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:28.771341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:28.773796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:28.776852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:28.789140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:28.794006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:28.801190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.102904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:29.104912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:29.110249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:29.115682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.130164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.140221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.443351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:29.444599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:29.452285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.462972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.471315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.477310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.764281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:29.771098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.784546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.791918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:29.797234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:29.803235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.091853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:30.097268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:30.101709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.112360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:30.118433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.126163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.428619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:30.429841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:30.435235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.444368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.453066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.457853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.753045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.760481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.769301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:30.774467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:30.782232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:30.787992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:31.076906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:31.082155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:31.090324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:31.094661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:31.105668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:31.107758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:31.388205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:31.397608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:31.406816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:31.412172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:31.421631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:31.426392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:47.075155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:47] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:47.398552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:47.727644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:47.728660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:47.735560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:47.746127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:47.751110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:47.760355 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:47.836088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:47.858172 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:48.069438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:48.089045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:48.100159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:48.178401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:48.182815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:48.425891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:48.441639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:48.521744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:48.526277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:48.769150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:48.817068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:49.313722 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:root:2024-09-05 20:29:49.313722 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:29:53.233192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:53.236318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:53.245850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:53.254702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:53.266709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:29:53.278772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:53] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:53] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:53] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:29:53] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:30:03.000885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:30:03] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:30:51.295921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:30:51.302702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:30:51.309765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:30:51.319959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:30:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:30:51.334522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:30:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:30:51.341014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:30:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:30:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:30:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:30:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:29.407897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:29] "POST /myclass/api/Add_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:29.438549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:29] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:45.792653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:45.793691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:45.794700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:45.799991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:45.809336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:45.819239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:45.837006 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:45.847344 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.115840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:46.152158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:46.153155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:46.156156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.183461 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.197263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.213987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.492191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:46.494222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:31:46.498160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.519276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.539594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.629974 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:31:46.819969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:31:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:34:13.693323 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:34:13.693323 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:34:13.693323 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:34:13.693323 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:34:13.693323 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:37:00.178822 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:37:00.178822 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:37:00.178822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:37:00.178822 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:37:00.178822 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:37:12.435297 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:37:12.435297 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:37:12.435297 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:37:12.435297 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:37:12.436297 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:39:11.211957 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:39:11.211957 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:39:11.211957 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:39:11.211957 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:39:11.211957 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:39:55.518860 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:39:55.518860 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:39:55.519898 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:39:55.519898 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:39:55.519898 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:40:12.708008 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:40:12.709023 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:40:12.709023 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:40:12.709023 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:40:12.709023 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:40:36.564956 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:40:36.565956 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:40:36.565956 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:40:36.565956 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:40:36.565956 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 20:41:25.499697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.503566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.507563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.511691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:25.521458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.524941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.532668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:25.560774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:25.824887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.830473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.835122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.840692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:25.864926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:25.878239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.884216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:25.893731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:25.908104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:25.920128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:26.688578 : Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token Le champ 'related_collection' n'existe pas +INFO:root:2024-09-05 20:41:26.688578 : Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token Le champ 'related_collection' n'existe pas +INFO:root:2024-09-05 20:41:26.692929 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:26.693932 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:59.628762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:59.629818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:59.631460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:59.635479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:59.638921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:59.648004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:59.683031 : Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token Le champ 'related_collection' n'existe pas +INFO:root:2024-09-05 20:41:59.687026 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:59.688025 : Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token Le champ 'related_collection' n'existe pas +INFO:root:2024-09-05 20:41:59.691732 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:59.698335 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:59.699331 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:59.955137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:41:59.971367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:41:59] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:41:59.997240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:42:00.000235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:42:00.018583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:42:00.023580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:42:00.279995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:42:00.304549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:42:00.325821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:42:00.342441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:42:13.209497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:42:13.216671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:42:13.225043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:42:13.231112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:42:13.246647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:13] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:13] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:42:13.258919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:13] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:42:13] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:43:10.105604 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:43:10.105604 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:43:10.106603 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:43:10.106603 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:43:10.106603 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 20:43:27.314016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:43:27.318305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:43:27.322285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:43:27.328782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:43:27.334917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:27.345326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:27.657757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:27.678800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:27.986866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:28.010832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:28.293548 : Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token Le champ 'related_collection' n'existe pas +INFO:root:2024-09-05 20:43:28.294548 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:28.297977 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:root:2024-09-05 20:43:28.297977 : Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token Le champ 'related_collection' n'existe pas +INFO:root:2024-09-05 20:43:28.297977 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:28.303305 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:28.311324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:43:28.345120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:43:28.612330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:43:28.614353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:43:28.619343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:43:28.624319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:43:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 20:44:30.790998 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 20:44:30.790998 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 20:44:30.790998 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 20:44:30.790998 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 20:44:30.792009 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 20:59:06.183969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:06.184971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:06.185997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:06.188998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:06.193292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:06.198267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:59:06.517767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:59:06.533791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:59:06.843394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:06.854944 : Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token Le champ 'related_collection' n'existe pas +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:59:06.858308 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:root:2024-09-05 20:59:06.858308 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:59:06.860526 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:59:06.862588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:59:06.864620 : Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token Le champ 'related_collection' n'existe pas +INFO:root:2024-09-05 20:59:06.869717 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 20:59:07.173670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:07.174683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:07.176706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:07.182346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:07.188098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 20:59:07.193544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:07] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:07] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:07] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:07] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 20:59:07] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 21:01:45.944428 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 21:01:45.944967 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 21:01:45.944967 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 21:01:45.944967 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 21:01:45.944967 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 21:02:49.372566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:49.377222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:49.378230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:49.386611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:49.391766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:49.398920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:02:49.412506 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:02:49.431021 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:02:49.724289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:49.728290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:49.740534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:49.744524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:49] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:49] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:49] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:02:50.059967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:50.083143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:50.087174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:50.092390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:50] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:50] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:50] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:50] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:02:50.429152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:02:50.433180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:50] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:02:50.622815 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:02:50.624798 : LMS_Get_Partner_Data -'mysy_lms_user_id' - Line : 2108 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:02:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\lms_chamilo\\mysy_lms.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 21:05:15.754348 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 21:05:15.754348 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 21:05:15.754348 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 21:05:15.754348 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 21:05:15.754348 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 21:05:30.704670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:30.709662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:30.714101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:30.719109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:05:30.727814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:30.734838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:05:30.749836 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:05:30.760845 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:05:31.183166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:05:31.201178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:31.202175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:31.203204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:31.204728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:31.206730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:05:31.510996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:05:31.543509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:31.545511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:05:31.548509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:05:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-05 21:07:04.433334 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-05 21:07:04.433334 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-05 21:07:04.434334 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-05 21:07:04.434334 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-05 21:07:04.434334 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-05 21:12:04.101581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.106063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.112288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.114734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:04.144726 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:04.352528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.358551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:04.372986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.388101 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:04.417562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.428887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.431936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.436540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.448587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:04.536228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.541227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.546231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.554224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:04.565672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:18.825841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.130915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:19.134917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:19.144962 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.148955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:19.151957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.158545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:19.168542 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.365911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.454948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:19.460539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.475544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:19.478538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.492619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.689195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.777827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:19.780827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:19.794827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:27.641241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:27.643270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:27.645551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:27.656161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:12:27.665774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:27] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:27.676913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:27] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:27] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:27] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:38.287126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:38] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:44.176513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:44] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:44.523436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:44] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:12:55.752826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:12:55] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:13.359529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:13.360615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:13.361670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:13.372989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:13.379544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:13.388538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:13.408472 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:13.686872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:13.701109 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:13.716862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:13.721461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:13.725847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:13.777659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:13.782438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:14.010183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:14.055398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:14.058094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:14.060239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:14] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:14.107193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:14.110743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:14] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:13:18.214673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:18.215705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:18.217813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:18.223529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:18.228069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:13:18.232440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:18] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:18] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:13:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:14:20.146524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:20.147926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:20.151794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:20.157199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:20.162685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:20.171153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:20.187059 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:14:20.200629 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:20] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:20] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:20] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:20] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:14:52.744897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:52] "POST /myclass/api/update_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:14:53.002053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:14:59.565858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:14:59.869124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:59.874071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:59.878715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:59.885274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:14:59.892440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:14:59.911551 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:14:59.925910 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:14:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:00.126275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:00.140058 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:00.219534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:00.223536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:00.236702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:00.243202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:00] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:00.255754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:00] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:00] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:00.307079 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:00] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:11.223742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:11.225048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:11.238076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:11.241519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:11.250121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:11.267077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:14.696522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:14] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:19.457924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:19] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:19.789044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:30.624324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:30.947301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:30.949300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:30.956298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:30.960297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:30.973299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:30.998119 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:31.039201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:31.059832 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:31.274655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:31.301789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:31.306975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:31.313981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:31.379386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:31.383335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:31.609622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:31.647155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:31.651243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:31.655239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:31.708943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:15:34.218672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:34.219663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:34.220666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:34.231743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:34.235733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:15:34.242163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:34] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:34] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:15:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:18:05.276732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:18:05.280363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:18:05.287424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:18:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:18:05] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:18:05.344808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:18:05.351155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:18:05.358840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:18:05] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:18:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:18:05] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:18:05] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:23:02.019865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:23:02.022842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:23:02.028678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:02] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:02] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:23:58.084676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:23:58.100137 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:23:58.399128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:23:58.403687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:23:58.411027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:23:58.416018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:23:58.426639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:58] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:58] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:23:58.474637 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:58] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:23:58] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:24:03.733742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:24:03.737192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:24:03.741836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:24:03.744849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:24:03.749565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:24:03.759044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:24:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:24:03] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:24:03] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:24:03] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:24:03] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:24:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:52:35.043563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:52:35.050860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:52:35.059791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:52:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:52:35] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:52:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:54:01.312401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:54:01.323405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:54:01.337472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:54:01.350293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:54:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:54:01.362216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:54:01.376152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 21:54:01.399256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:54:01] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-05 21:54:01.418776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:54:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:54:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:54:01] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:54:01] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:54:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 21:54:01] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:47.126663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.136354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.145588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:47.159416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.162478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.177703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:47.192104 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:47.203433 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:47.425831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.432189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.441202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:47.454121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.464586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.480596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:47.490963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:47.523650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:47] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:48.170192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:48.176354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:10:48.186167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:10:48.197104 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:10:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:11:06.641047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:11:06.651327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:11:06.660261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:11:06.670266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:11:06.677425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:11:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:11:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:11:06.702384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:11:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:11:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:11:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:11:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:20:30.950672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:30.955929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:30.958143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:30] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:30] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:20:53.438264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:53.442289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:53.448653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:53.458835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:53.466492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:53.483589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:53.493134 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:20:53.524363 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:53] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:53] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:20:55.045678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:55.052674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:55.059939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:55.069951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:20:55.080963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:55] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:55] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:20:55.110983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:55] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:55] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:20:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:09.832380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:09.838313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:09.840528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:09.847799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:09.857841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:09.865717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:09.874622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:09.882640 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:09.894306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:09.909469 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:10.085184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:10.090779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:10.095584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:10.101762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:10.107135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:10.115373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:10.129213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:10.139087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:10.146747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:10.159194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:21:17.281736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:17.288953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:17.296716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:17.305127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:17.310346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:21:17.317688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:17] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:17] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:17] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:17] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:21:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:32:09.780639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:09.792122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:09.799297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:09.809541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:32:09.824168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:09.830776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:09.851466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:09.863554 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:32:09.878165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:09.895350 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:32:10.037826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:10.044009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:10.048162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:10.058324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:10.067583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:32:10.098545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:32:10.113067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:32:10.129573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:32:10.140433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:32:10.149799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:32:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.498014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.504592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.510860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.521901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.534839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.543719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.554394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.563063 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.580412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.598253 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.781867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.787107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.793120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.805443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.818658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.826661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.845418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.858369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:41.867044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:41.881398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:58.559049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:58.566369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:58.585379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:38:58.595220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:58.611439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:38:58.633531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:38:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:39:18.740741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:39:18.749797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:39:18.758245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:18] "POST /myclass/api/get_cust_prices_by_partner/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:39:18.764866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:39:18.771225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:39:18.785165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:18] "POST /myclass/api/get_cust_prices_by_partner/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:39:19.978578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:39:19.985880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:39:19.993653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:39:20.005173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:39:20.023172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:20] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:39:20.045251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:39:20.051765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:39:20.060443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:20] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:20] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:20] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:39:21.135705 : get_linked_customer_to_partner -list index out of range - ERRORRRR AT Line : 519 +INFO:root:2024-09-05 22:39:21.135705 : get_linked_customer_to_partner -list index out of range - ERRORRRR AT Line : 519 +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:21] "POST /myclass/api/get_linked_customer_to_partner/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:39:21] "POST /myclass/api/get_linked_customer_to_partner/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:41:05.486450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:41:05.496445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:41:05.502583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:41:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:41:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:41:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:43:14.474074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:14.478075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:14.485075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:14.489075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:14.493075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:14.503075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:43:41.146555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:41.155292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:41.164003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:41.173545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:41.229046 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:43:41.245339 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_YnywE0UlJk3Enh message='Dashboard link for request' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_IAnBDgejApb0BK message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:42] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:42] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:43:42.340457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:42.347921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:42.354428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:43:42.358047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:42] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:43:42.378571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:42] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:43:42.404959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:42] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:43:42] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:09.675745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:09.679763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:09.684758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:09.690950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:09] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:09] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:21.544675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:21.548445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:21.554466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:21.559796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:21.568379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:21.576557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:21.581519 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:21.596698 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:21.851603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:21.855603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:21.862224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:21.871347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:21.876339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:45:21.885918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:21.896238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:45:21.906084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:45:21] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:46:43.021998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:43.025860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:43.033008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:43.039982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:43.045415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:43] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:46:43.061683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:43] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:43] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:43] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:46:47.772766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:47.778092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:47.789354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:47.800376 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2024-09-05 22:46:47.814521 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2024-09-05 22:46:47.833771 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_01RUZjlBKWEM5S message='Dashboard link for request' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_BV7ZgpBNQR6Aqq message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:48] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:48] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:46:49.087787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:49.092260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:49.098628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:49.107283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:46:49.123225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:46:49.153845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:46:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:01.519024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.523572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.526143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.531158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:01.539942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.543446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.551474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:01.567730 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-05 22:47:01.569805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:01.593688 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:01.760410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.764579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.768289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.772280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.778284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.785007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:01.802084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:01.807091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:01.815874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:01.824304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:06.247636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:06.253967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:06.261318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:06.268469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:47:06.276045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:47:06.291335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:47:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:15.306492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:15.312254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:15.326376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:15.336341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:15] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:15] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:43.201203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:43.205391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:43.211687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:43.218014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:43.222418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:43.229934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:43.240526 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:43.249749 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:43.547045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:43.551048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:43.558298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:43.565255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:43.571913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:51:43.586304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:43.601062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:51:43.611082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:51:43] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:10.524671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:10.528679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:10.533667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:10] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:10] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:12.341209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:12.366403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:12] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:12] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:14.613393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:14.621789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:14.628061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:14.633852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:14.654698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:14.668314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:28.257862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.263486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.268249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.273237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:28.283508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.290955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.299332 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-05 22:54:28.302334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:28.318894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.332691 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:28.530834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.534325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.539769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.547878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.550944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:28.561932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.569343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:28.587640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:54:28.594131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:54:28.601620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:54:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:55:49.295713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:55:49] "POST /myclass/api/Update_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:55:49.373365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:55:49.379468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:55:49.385496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:55:49] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:55:49] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:55:49] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:56:36.928651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:56:40] "POST /myclass/api/Update_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 22:56:40.573942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:56:40.578464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 22:56:40.585236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:56:40] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:56:40] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 22:56:42] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:13.951476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:13.955793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:13.961458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:13.967051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:13.972631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:13.981142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:13.987639 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:13.997165 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:14.191007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:14.194002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:14.198007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:14.203307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:14.207878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:14.213889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:14.229691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:14.239496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:14.256759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:14.262132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:17.837731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:17.843785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:17.851719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:17.855549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-05 23:02:17.865185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:17] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-05 23:02:17.879869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:17] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:17] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:17] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [05/Sep/2024 23:02:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:05:58.769731 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 09:05:58.770732 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 09:05:58.770732 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 09:05:58.770732 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 09:05:58.771901 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 09:06:11.227086 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 09:06:11.227086 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 09:06:11.227086 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 09:06:11.227086 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 09:06:11.227086 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 09:08:15.023152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.025153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.026437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.028773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.028773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.032495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.035114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.036127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.058463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.375820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.728122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.733127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.740118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.747124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.755125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.763206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.770120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.774510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.783022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.786016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.791196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.795396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.805577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.808214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.811230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.818351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.827138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.829425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.837735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.844061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.851059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.858291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.861488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.872405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.874470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.879674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.888122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.896656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.899857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.907155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.910905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.914304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.922306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.925300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.932305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.940298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.945657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.954642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.960651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:15.966891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.979216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.989634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:15.995652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:16.005650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.017596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:16.021596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.028599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.035834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.041401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.048199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:16.052438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.059284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.066900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.074272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:16.078272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.084736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.096328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:16.099520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:16.105178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:16.112423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:40.309033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:40.589827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.596831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.601238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.606222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:40.615293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.618535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.629102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:40.650656 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 09:08:40.652653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.659610 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:40.762948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.766945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.769944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.774944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.781789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:40.793053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:40.808987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:40.820242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.832591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:40.838814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:44.981898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:44.983822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:44.986861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:44] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:45.003131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:45] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:45.008712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:45.013057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:45] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:45] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:45] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:49.475880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:49.478691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:49.482056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:08:49.485629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:49.496403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:08:49.502746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:08:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:12.904162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:12.908722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:12.914650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:12.920669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:12.928308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:12.933850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:12.943104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:12.947998 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 09:09:12.960193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:12.981797 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:13.137753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:13.140167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:13.147369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:13.151385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:13.157761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:13.175192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:13.207549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:13.217570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:13.223661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:13.234794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:48.757653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:48.760844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:48.764646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:48.768049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:48.774429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:48.780753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:09:48.786309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:48] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:09:48.798381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:48] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:48] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:09:48] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:12:56.603733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:12:56.608721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:12:56.614316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:12:56] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:12:56.626568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:12:56] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:12:56.633555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:12:56.639955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:12:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:12:56] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:12:56] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:12:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.173035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.176798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.182644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.191713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.196788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.207800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.218028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.222545 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.239508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.252035 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.497097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.501637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.507777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.513201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.525909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.532408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.549671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.561518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:22.572334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:22.577184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:27.487730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:27.493766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:27.496768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:27.504117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:13:27.506131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:27] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:13:27.514127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:27] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:27] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:27] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:13:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:02.794895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:02.798807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:02.803572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:02.808929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:02] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:02.818532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:02] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:02.824423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:02] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:02] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:36.414918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:36.420939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:36.425937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:36.429938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:36] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:36] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:49.389569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:49.397689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:49.401686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:49.415394 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:49.433084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:49.437156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:49.444444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:49.456449 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:49.663147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:49.668834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:49.674592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:49.681202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:49.686211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:49.702856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:49.704875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:49.720140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:49] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:57.539810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.542435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.545787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.550182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:57.556223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.565317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:57.575605 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 09:15:57.577800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.582190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:57.614649 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:57.761393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.765938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.771078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.777810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.786752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.796146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:57.811671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:15:57.834158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.841347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:15:57.848431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:15:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:16:02.338385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:16:02.341870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:16:02.344888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:16:02.350774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:16:02] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:16:02] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:16:02.365625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:16:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:16:02.370667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:16:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:16:02] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:16:02] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:03.228876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:03.235889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:03.238887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:03.244890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:03] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:03.293901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:03.303178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:03.307463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:03] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:03] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:14.755438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:14.758437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:14.764448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:14.769495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:14.774514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:14.779826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:14.797879 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:14.803877 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:15.020964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:15.024960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:15.029962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:15.039181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:15.055342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:15.059833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:15] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:15.070962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:15] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:15.085904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:15] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:15] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:21.210665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.214177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.219039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.224322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:21.232929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.233926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.241058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:21.258476 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 09:17:21.259781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:21.279554 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:21.413333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.417308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.422639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.425984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.433575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:21.442268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:21.459286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:21.470633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.477441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:21.486255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:21] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:25.014658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:25.018918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:25.023921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:25.030218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:17:25.039849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:25] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:17:25.050924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:25] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:17:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:18:47.435690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:18:47.439732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:18:47.442732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:18:47] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:18:47] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:18:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:08.954330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:08.957443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:08.961424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:08.965840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:08.972050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:08.977420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:08.983419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:08.995506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:09.003775 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:09.022221 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:09.163340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:09.167599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:09.171431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:09.178243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:09.184795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:09.196857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:19:09.206884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:09.222296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:09.231595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:19:09.240008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:19:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:20:07.459388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:20:07.462970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:20:07.466987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:20:07.470995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:20:07.477310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:20:07.487920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:20:51.804404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:20:51.806589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:20:51.811498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:20:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:14.713317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:14.717317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:14.720319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:14.725875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:14.732932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:14.739786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:30.829035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:30.832354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:30.834802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:30.839349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:30.845224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:30.848738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:30.854762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:30.864878 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 09:30:30.871719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:30.895779 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:31.062565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:31.066791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:31.070667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:31.074968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:31.080979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:31.091233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:31.102981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:31.108440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:31.114022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:31.130751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:33.502703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:33.505690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:33.508691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:30:33.513693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:33] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:33.522698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:33] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:30:33.529690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:33] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:33] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:30:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 09:33:04.881973 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 09:33:04.882978 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 09:33:04.882978 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 09:33:04.882978 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 09:33:04.882978 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 09:33:04.932233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:33:04.934237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:33:04.937473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:33:04.941071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:33:04.944548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:33:04.947797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:33:04] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:33:04] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:33:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:33:04] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:33:04] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:33:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:36:41.440684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:36:41.443710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:36:41.445715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:41] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:41] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:36:56.287046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:36:56.291146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:36:56.297164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:36:56.301933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:36:56.306176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:36:56.310839 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 09:36:56.311839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:56] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:56] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:36:56.331148 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:56] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:36:56] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:37:00.382280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:37:00.384776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:37:00.391931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:37:00.397397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:37:00] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:37:00.403807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:37:00] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:37:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:37:00.409812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:37:00] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:37:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:37:00] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 09:40:20.068565 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 09:40:20.068565 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 09:40:20.068565 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 09:40:20.068565 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 09:40:20.068565 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 09:40:29.275866 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 09:40:29.275866 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 09:40:29.275866 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 09:40:29.275866 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 09:40:29.276865 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 09:41:17.544845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:41:17.548859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:41:17.550880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:41:17] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:41:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:41:17] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:43:57.987421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:43:57.990913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:43:57.995569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:43:58.000955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:43:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:43:58.006763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:43:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:43:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:43:58.013776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:43:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:43:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:43:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:08.218875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.221895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.224885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.229781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:08.237010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.247021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.256624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.266107 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:08.276616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.288651 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:08.511501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.521256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.525300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.531539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:08.541595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.552077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:08.560700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.565715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:08.572728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:08.580732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:12.235270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:12.238264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:12.243669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:12] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:12.252899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:12.253894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:12.258896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:12] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:12] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:12] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:36.991212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:36.994512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:44:37.001004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:44:37.006990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:37] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:44:37] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:27.984375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:27.988377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:27.995373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:28.226648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:28.231088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:28.238401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:28.257065 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:28.271314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:28.277947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:28.285070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:28.299090 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:28.579021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:28.582033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:28.586532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:28.592534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:28.596988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:28.602991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:47:28.608526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:47:28.627875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:47:28] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:49:58.411916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:49:58.414917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:49:58.419923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:49:58.425917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:49:58.430915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:49:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:49:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:49:58.439918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:49:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:49:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:49:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:49:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:51:40.697757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:51:40.701760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:51:40.707890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:51:40] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:51:40] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:51:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:54:05.244726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:54:05.248269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:54:05.253577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:54:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:54:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:54:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:55:51.248616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:55:51.253758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:55:51.257746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:55:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:55:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:55:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:56:08.237961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:56:08.251407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:56:08.255092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:56:54.204094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:56:54.210110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:56:54.215104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:56:54.219924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 09:56:54.228922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 09:56:54.236649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 09:56:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:01:01.218299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:01:01.223406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:01:01.228355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:01:01] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:01:01] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:01:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:02:06.812794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:02:06.827206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:02:06.839416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:02:32.515309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:02:32.521145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:02:32.528671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:32] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:32] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:02:59.202210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:02:59.206709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:02:59.213699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:59] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:59] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:02:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:03:25.898163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:03:25] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:12:11.622711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:12:11.627950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:12:11.634916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:12:11.642734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:12:11.652140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:12:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:12:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:12:11.660803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:12:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:12:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:12:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:12:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:19:56.073183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:19:56.079349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:19:56.084672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:19:56.090621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:19:56] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:19:56.098839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:19:56.108240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:19:56] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:19:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:19:56] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:19:56] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:19:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:25:09.191322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:25:09.196655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:25:09.203112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:25:09] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:25:09] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:25:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:25:13.701823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:25:13] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:25:27.817173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:25:27] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:28:29.829655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:28:29.833905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:28:29.839411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:28:29] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:28:29] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:28:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 10:31:34.169896 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 10:31:34.169896 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 10:31:34.169896 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 10:31:34.169896 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 10:31:34.169896 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 10:32:33.675020 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 10:32:33.675020 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 10:32:33.675020 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 10:32:33.675020 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 10:32:33.675020 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 10:37:57.690544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:37:57.693648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:37:57.697162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:37:57.700626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:37:57.704084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:37:57.710247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:37:57] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:37:57] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:37:57] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:37:57] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:37:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:37:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 10:39:16.500665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:39:16.503676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 10:39:16.507666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:39:16] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:39:16] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 10:39:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:24:58.318725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:24:58.332635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:24:58.345818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:24:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:24:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:24:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:27:07.310909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:27:07.316927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:27:07.321150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:27:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:27:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:27:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:27:35.024373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:27:35.032052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:27:35.040073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:27:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:27:35] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:27:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:28:54.046390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:28:54.054403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:28:54.059177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:28:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:28:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:28:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:30:40.896539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:30:40.901786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:30:40.907247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:30:40] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:30:40] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:30:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:30:58.978523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:30:58.982827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:30:59.003081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:30:59] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:30:59] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:30:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:31:50.003841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:31:50.008439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:31:50.012770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:31:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:31:50] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:31:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:32:19.754797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:32:19.765294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:32:19.771805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:19] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:32:36.782179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:32:36.792106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:32:36.797269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:32:49.772023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:32:49.777692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:32:49.781994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:32:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:34:51.391507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:34:51.396553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:34:51.400624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:34:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:34:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:34:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:39:17.256722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:39:17.261958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:39:17.264975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:39:17] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:39:17] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:39:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:40:43.101467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:40:43.105465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:40:43.107453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:40:43] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:40:43] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:40:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:40:59.806501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:40:59] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:44:23.202254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:44:23.205295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:44:23.209602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:44:23] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:44:23] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:44:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:44:40.233839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:44:40.241613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:44:40.247268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:44:40] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:44:40] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:44:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:45:55.972998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:45:56] "POST /myclass/api/Update_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:45:56.125617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:45:56.130749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:45:56.142266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:45:56] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:45:56] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:45:56] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:03.542461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:03.551013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:03.555601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:03.559675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:03] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:12.895640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:12.904369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:12.917565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:12.927951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:12.935379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:12.945958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:12.961480 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:12.970740 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:13.214300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:13.218796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:13.233234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:13.249880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:13.256891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:13] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:13.262892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:13.272411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:13.286284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:13] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:13] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:13] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:16.989657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:17] "POST /myclass/api/Update_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:46:17.022103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:17.026216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:46:17.032030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:17] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:17] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:46:17] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 12:48:53.611708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:48:53.616835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:48:53.623042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:48:53] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:48:53] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:48:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 12:58:07.537184 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 12:58:07.538183 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 12:58:07.538183 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 12:58:07.538183 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 12:58:07.538183 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 12:59:49.542802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:59:49.546244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 12:59:49.549469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:59:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:59:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 12:59:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:00:36.766990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:00:36.769340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:00:36.774985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:00:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:00:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:00:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:00:43.470143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:00:43] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:00:43.490670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:00:43.493929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:00:43] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:00:43] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:07.422912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:07] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:07.442624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:07.456273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:08.929678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:01:08.933064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:01:08.937489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:15.328339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:15] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:15.355340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:01:15.358497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:15] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:21.276757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:21] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:21.302322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:01:21.304915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:21] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:21] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:23.039105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:23] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:23.062570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:01:23.066252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:23] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:23] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:39.608291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:39] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:01:39.626221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:01:39.629246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:39] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:01:39] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:02:46.737927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:02:46.741925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:02:46.746440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:02:46.755908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:02:46] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:02:46] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:02:46.763416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:02:46.766382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:02:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:02:46] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:02:46] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:02:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:03:26.114532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:03:26.120944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:03:26.124947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:03:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:03:26.129636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:03:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:03:26] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:03:26] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.662841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.668920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.673577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.682731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.687846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.695846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.768488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.772491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.776670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.782640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.788298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.790301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.796722 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.809726 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.966524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.973455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:29.979513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.984514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:29.990142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:30.000145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:30.010896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:30] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:30.017635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:30] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:30] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:30] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:54.115432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:54] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:54.134997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:54.138778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:55.178880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:55] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:04:55.197005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:04:55.200018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:55] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:04:55] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:15.104364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:15.108369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:15.111370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:15.116371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:15.122543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:15.124559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:15.135518 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:15.147016 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:15.342803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:15.349171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:15.353274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:15.358918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:15.368282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:15.375133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:15.387900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:15.401003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:15] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:52.380413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:52] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:52.399474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:52.403008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:55.668611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:55] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:05:55.693329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:05:55.696359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:55] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:05:55] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:18.630187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:18.634195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:18.638201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:18] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.073377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.077676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.080070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.084579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.092551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.095780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.100154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.113820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.115312 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.126630 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.329656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.332736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.336726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.337717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.344646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:30.351585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.371990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.381075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.386316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:30.395525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:07:33.711492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:33.714762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:33.717781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:33.722587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:33.727611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:07:33.732692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:33] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:33] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:33] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:33] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:07:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:10:36.324949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:10:36] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:10:41.988156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:10:41.991170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:10:41.994239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:10:42] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:10:42] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:10:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:15:20.443993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:15:20] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:00.147101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:00.151204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:00.158257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:00] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:00] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:02.359421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:02] "POST /myclass/api/Get_Given_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:08.368066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.373064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.378118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.385885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.396263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.397274 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:08.403528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:08.416733 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:08.916173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.917965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.922978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.928628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:08.935617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:08.948128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:11.297613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:11] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:40.069151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:40] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:40.154983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:40.162978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:40] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:40] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:51.828300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:51] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:51.846664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:16:51.851848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:16:52.996357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:16:53] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:03.636746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:03] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:03.675480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:03] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:03.697517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:03] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:18.274076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:18] "POST /myclass/api/Get_Given_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:30.394321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:30] "POST /myclass/api/Update_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:30.517995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:17:30.524002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:30] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:30] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:33.489396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:33] "POST /myclass/api/Get_Given_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:36.207932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:36] "POST /myclass/api/Update_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:36.228936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:17:36.232937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:17:36.238931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:36] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:36] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:36] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:17:54.105756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:17:54] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:18:36.459289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:18:36.466679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:18:36.474750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:18:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:18:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:18:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:04.322750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:04.325994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:04.330994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:04.335231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:04.341361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:04.344982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:04] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:04.358558 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:04] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:04.369754 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:04] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:04] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:05.071178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:05.076175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:05.081375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:05.083392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:05.092326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:05.107334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:06.316706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:06] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:26.652159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:26.657066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:26.661694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:26.665249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:26.669072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:26.675537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:26.676526 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:26] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:26.686166 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:26] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:26] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:26] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:27.106413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:27.109403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:27.116413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:19:27.120414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:27] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:27.128428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:27] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:27.137501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:27] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:27] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:19:43.869845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:19:43] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:20:49.364653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:20:49.374313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:20:49.378305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:20:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:20:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:20:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:21:04.407226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:21:04.411228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:04] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:04] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:21:05.410718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:21:05.414123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:21:05.417152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:21:05.421146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:21:05.426438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:21:05.431437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:21:06.544849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:21:06] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:26:11.250881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:26:11] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:26:34.052047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:26:34.055043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:26:34.059045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:26:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:26:34] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:26:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:26:37.146331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:26:37.149332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:26:37.154879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:26:37] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:26:37] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:26:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 13:35:21.616287 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 13:35:21.616287 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 13:35:21.616287 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 13:35:21.616287 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 13:35:21.616287 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 13:35:45.007797 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 13:35:45.008797 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 13:35:45.008797 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 13:35:45.008797 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 13:35:45.008797 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 13:36:33.299456 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 13:36:33.300637 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 13:36:33.300637 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 13:36:33.300637 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 13:36:33.300637 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 13:39:58.114248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:39:58.116613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:39:58.119648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:39:58.122632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:39:58.126167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:39:58.130170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:39:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:39:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:39:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:39:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:39:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:39:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:40:53.398891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:40:53] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:02.374298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:02] "POST /myclass/api/Delete_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:02.423293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:02] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:02.448410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:02] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.542584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.545886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.548888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.552894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.556955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.563416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.585418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.588825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.588825 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.604407 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.749363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.752375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.754771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.759475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:14.768294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.772321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.778186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.788909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.798418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:14.819069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:20.632186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:20.634188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:20.639312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:20.643302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:20] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:20] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:20.651383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:41:20.653390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:20] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:20] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:22.098503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:22] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:29.583024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:29] "POST /myclass/api/Delete_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:29.683703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:29] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:41:29.718161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:41:29] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 13:42:27.736934 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 13:42:27.736934 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 13:42:27.736934 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 13:42:27.736934 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 13:42:27.736934 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 13:42:27.782605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:42:27] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:42:28.575924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:42:28] "POST /myclass/api/Delete_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:42:28.608351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:42:28] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:42:28.620026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:42:28] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:43:27.201165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.204162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.208176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.210685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:43:27.215697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.223698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:43:27.233852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.242130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.254975 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:43:27.268637 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:43:27.374627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.378072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.382464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.385967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.389812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:43:27.398384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.405083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:43:27.418565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:43:27.426953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:43:27.432956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:43:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 13:43:57.787915 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 13:43:57.788917 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 13:43:57.788917 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 13:43:57.788917 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 13:43:57.788917 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 13:44:35.945611 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 13:44:35.945611 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 13:44:35.945611 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 13:44:35.945611 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 13:44:35.945611 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 13:44:36.004966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:36.007964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:36.011961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:36.015971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:36.023178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:36.030891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:44:38.510899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.514554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.518844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.522866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:44:38.527862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.534032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.539120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.542131 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:44:38.557680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.570772 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:44:38.686100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.689097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.693094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.696920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.702411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:44:38.708926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.719653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:44:38.735845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.739354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:44:38.742889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:44:38] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:45:11.326993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:45:11.330233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:45:11.333659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:45:11.338624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:45:11.341975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:45:11.348140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:45:12.664251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:12] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:45:32.261656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:32] "POST /myclass/api/Delete_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:45:32.299874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:45:32.304707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:32] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:45:32] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 13:46:28.196745 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 13:46:28.196745 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 13:46:28.196745 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 13:46:28.196745 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 13:46:28.196745 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 13:46:29.213671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:46:29] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:46:35.928293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:46:35] "POST /myclass/api/Delete_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:46:35.970926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:46:35.974940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:46:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:46:35] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 13:46:57.019389 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 13:46:57.019389 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 13:46:57.019389 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 13:46:57.019389 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 13:46:57.019389 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 13:46:57.062166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:46:57.065196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:46:57] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:46:57] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:46:59.683478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:46:59] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:47:52.866721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:47:52.869934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:47:52.874448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:47:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:47:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:47:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:47:57.584487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:47:57] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:48:36.004481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:48:36.007843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:48:36.012415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:48:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:48:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:48:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:48:59.239669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:48:59.242075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:48:59.245409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:48:59] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:48:59] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:48:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:50:06.193549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:50:06] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:50:14.751114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:50:14] "POST /myclass/api/Get_Given_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:50:32.709339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:50:32] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:50:51.776177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:50:51.780171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:50:51.784282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:50:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:50:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:50:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:51:19.950545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:51:19.954562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:51:19.957560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:51:19] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:51:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:51:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:58:04.310450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:58:04.314442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:58:04.317464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:04] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:04] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:58:24.995410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:58:24.999422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:58:25.003721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:25] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:58:42.928631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:58:42.932044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:58:42.935079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:42] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:58:42] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 13:59:06.217069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:59:06.222623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 13:59:06.227646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:59:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:59:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 13:59:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:00:27.628626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:00:27.636413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:00:27.639526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:00:27] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:00:27] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:00:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:01:11.028672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:01:11.031673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:01:11.035671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:01:15.652579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:15] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:01:15.673927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:01:15.676926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:15] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:01:18.266234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:18] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:01:18.285106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:01:18.287680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:01:18] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:03:11.108285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.113697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.119936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.124938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:03:11.155424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.168440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.179835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.183849 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:03:11.197469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:03:11.204464 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:03:11.386162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.389883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.425714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.433543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:03:11.449191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.461263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:03:11.473486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:03:11.490838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.493994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:03:11.506906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:03:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.040694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.044296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.048493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.056510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.063084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.074054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.091278 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:04:23.093671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.137270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.153609 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.200041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.206097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.243725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.251988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.279389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.308219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.350691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.354009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:23.369694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:23.407327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:23] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:47.801158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.806156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.809159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.819688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.822692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:47.839694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.844260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.853477 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:47.868363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:47.891244 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:47.929412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.935884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.942418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.948921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.956276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:47.963393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:47.976722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:48.000793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:48.005244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:48.014853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:48.914270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:48.919129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:04:48.925138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:04:48.935952 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:04:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:06:57.953083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:57.962014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:57.970010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:57.993271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.001581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.005988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:06:58.138831 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:06:58.146850 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:06:58.271258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.287491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.349421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.414452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:06:58.434208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.441297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.449293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:06:58.465301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.473812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:06:58.486608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:06:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:08:55.189961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.201744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.209796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.219908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:08:55.230775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.240978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.254979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.260981 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:08:55.282183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.300654 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:08:55.553204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.560900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.568428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.577331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:08:55.593714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:08:55.606381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:08:55.621381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:08:55.635782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.645096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:08:55.655274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:08:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:09:40.643127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.649605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.655069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.661832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:09:40.671970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.683809 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:09:40.685206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.690238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:09:40.710880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.721904 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:09:40.805261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.810370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.815282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.820540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.824547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:09:40.835548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:09:40.845083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:09:40.862931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:09:40.872773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:09:40.880879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:09:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:10:06.070837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.073850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.078241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.085621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:10:06.092558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.098421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.111460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.119906 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:10:06.136785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.155649 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:10:06.337697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.343695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.346700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.356800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.362493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:10:06.370943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:10:06.379779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:10:06.395767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:10:06.409230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:10:06.415227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:10:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:12:35.963084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:35.968535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:35.975436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:12:35.980441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:35.985887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:35.994334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:36.005562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:12:36.011697 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:12:36.019018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:36.026802 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:12:36.167396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:36.170902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:36.175335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:36.180366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:36.187013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:36.201219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:12:36.218995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:12:36.231295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:12:36.235295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:12:36.247200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:12:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:13:25.196422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.204456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.209243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.214284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:13:25.224702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.230703 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:13:25.236233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.244239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:13:25.251236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.273211 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:13:25.469830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.474681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.478766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.485026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:13:25.505016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:13:25.513740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.515147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.524214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.532336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:13:25.539620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:13:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:14:58.535062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.537446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.543661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.546117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:14:58.555731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.562271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.572408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:14:58.579480 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:14:58.587783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.604339 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:14:58.716256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.720018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.723304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.727913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.733959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.741837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:14:58.757637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:14:58.770441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:14:58.780456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:14:58.790124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:14:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:15:41.581792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.587917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.592310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:15:41.601400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.606860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.612879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.619404 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:15:41.620411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:15:41.636745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:15:41.656389 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:15:41.733965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.738954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.743960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.750960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:15:41.755958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.762964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.771498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:15:41.789624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:15:41.797871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:15:41.802431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:15:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:47.154348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.159395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.163785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:47.169325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.176322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.183158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.191157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:47.192150 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:47.206608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.216053 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:47.327668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.331032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.336376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.341514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.347123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:47.354306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:47.362675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.372432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:47.390485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:47.397493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:52.056017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:52.067881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:52.071923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:52.079402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:16:52.090475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:16:52.096121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:16:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:35.845623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:35.850051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:35.853234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:35.859239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:35.867772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:35.874587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:35.880965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:35.882498 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:35.897423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:35.908877 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:36.008850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:36.011843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:36.015440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:36.022102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:36.026493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:36.036594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:36.058987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:36.064603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:36.069158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:36.088110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:39.448974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:39.452973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:39.458994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:39.463545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:17:39.469119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:39] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:17:39.476671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:39] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:39] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:39] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:17:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:15.898315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:15.902244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:15.911454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:15.915589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:15.920991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:15.926084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:15.934732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:15.937732 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:15.951305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:15.964514 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:16.076696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:16.079712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:16.084621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:16.090310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:16.092324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:16.104305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:16.114677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:16.123237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:16.128634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:16.141218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:19.144438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:19.147919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:19.151963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:19.157198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:18:19.164219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:19] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:18:19.169354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:19] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:18:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:19:07.193211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:07.196225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:07.200234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:19:10.971983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:10.977272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:10.984041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:10.986533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:10.993212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:10.995290 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:19:10.999785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:11.012584 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:11] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:11] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:11] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:11] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:19:13.340390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:13.352793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:19:13.359438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:19:13.362613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:13] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:19:13.369931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:13] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:19:13.375755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:13] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:19:13] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:20:52.362474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.370465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.375471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:20:52.382472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.393713 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:20:52.406418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.411498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.417553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:20:52.429695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.440950 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:20:52.674179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.677219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.681421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:20:52.694405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.702475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:20:52.721950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.727376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.730154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.738475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:20:52.745798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:20:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.096807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.100743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.106183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.114651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.127148 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:21:33.128479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.132966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.144144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.154108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.168984 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.303149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.307148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.311149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.319159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.324143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.332624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.343781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.352672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:33.361626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:33.368625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:37.984665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:37.987978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:37.993582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:38.000770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:38] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:38] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:38.011547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:38.018772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:38] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:38] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:49.114573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:49] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:53.543912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:53.547501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:53.550499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:53.555497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:53.564310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:53.566319 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:53.571966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:53.577278 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:53] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:53] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:54.099816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:54.102278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:54.107294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:54.114855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:54.120611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:21:54.125688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:21:55.283900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:21:55] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:22:23.200691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:22:23.204690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:22:23.209168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:22:23] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:22:23] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:22:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:22:41.536963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:22:41.541352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:22:41.545395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:22:41] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:22:41] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:22:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:23:45.486291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:23:45.490290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:23:45.494287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:23:45] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:23:45] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:23:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:20.468262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:20.471740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:20.474384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:20] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:20] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:28.438109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.442128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.446497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.451344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:28.457866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.464345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.469369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:28.485214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:28.529722 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:28.538732 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:28.702362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.705422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.709387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.713918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.720458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.730572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:28.743940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:28.753373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.758305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:28.762306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:56.371708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:56.377456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:56.380784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:56.385785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:25:56.390786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:56] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:56] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:25:56.399212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:56] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:56] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:25:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:26:29.912281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:29.916318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:29.920323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:26:29.928432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:29.934732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:29.939248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:29.944815 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:26:29.947931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:26:29.965389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:26:29.984917 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:26:30.135205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:30.138207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:30.141719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:30.146032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:30.150909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:30.158336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:26:30.178728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:26:30.188593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:30.192817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:30.198220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:26:59.224461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:59.228461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:59.231452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:59.234713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:59.241423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:26:59.246440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:59] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:59] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:59] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:59] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:26:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ressources_humaines.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 14:30:24.642458 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 14:30:24.643458 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 14:30:24.643458 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 14:30:24.643458 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 14:30:24.643458 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 14:31:10.719351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:10.723357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:10.727360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:10.732352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:10.738367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:10.746183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:10.764905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:10.784285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:10.789104 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:10.806603 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:11.120284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:11.124292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:11.130285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:11.136805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:11.148820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:11.155403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:11.178680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:11.192576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:11.203057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:11.206339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:14.136315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:14.140413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:14.144640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:14.153676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:14.155698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:14.158417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:50.096705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.103154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.108162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:50.804901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.809801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.813822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.818635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.827222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.831720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:50.842720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:50.857803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:50.875679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:50.881908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.892361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.905474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.925290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.931765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:50.944504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:50.967366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:50.987549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:50] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:51.003158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:51] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:51] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:51] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:52.961978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:52.964972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:52.969972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:52.977975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:52.983953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:31:52.986977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:53] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:53] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:31:54.412814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:31:54] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:33:49.926241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:33:49.930375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:33:49.933375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:33:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:33:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:33:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:34:03.077089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:34:03.080954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:34:03.086352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:34:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:34:03] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:34:03] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:34:32.555419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:34:32.562990 : - Le statut call n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:34:32] "POST /myclass/api/Add_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:40:55.051267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.055082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.059113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.067103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:40:55.085543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.091842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.103290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.118450 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:40:55.131448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.137448 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:40:55.272138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.276445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.281473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.286186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.292480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:40:55.301560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:40:55.307438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.316453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:40:55.330412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:40:55.331422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:40:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:41:36.415829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.421112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.426443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.433787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:41:36.446065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.452060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.458063 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:41:36.459061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:41:36.477126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.489339 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:41:36.690860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.696066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.700058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.707652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.711647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:41:36.721171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:41:36.743436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:41:36.754391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:41:36.767390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:41:36.773105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:41:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.391981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.401416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.411214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.417352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.423615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.434597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.471585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.476572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.625941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.625941 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:44:27.628077 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.643031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.658229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.674658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.687077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.698229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.722217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.729983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:27.743651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:27.750323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:34.315391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:34.319488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:34.338352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:34.344636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:34.356502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:34.361507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:34] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:34] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:36.206228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:36] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:44:57.686873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:44:59.158042 : CheckisDate -time data 'Mon Sep 09 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 14:44:59.159038 : Add_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:44:59] "POST /myclass/api/Add_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:47:51.328827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:47:51.334323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:47:51.339356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:47:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:47:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:47:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:09.368125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:09.375667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:09.381664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:09] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:09] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:30.297514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.303922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.309455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.315243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:30.322986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.329765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.336255 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:49:30.340028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:30.362376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:30.375313 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:30.502750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.506329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.512433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.517428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.525174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:30.534039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.544525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:30.564950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:49:30.576286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:49:30.582115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:49:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:50:39.946908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:50:39.950925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:50:39.958170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:50:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:50:39.967197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:50:39.970732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:50:39] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:50:39] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:50:39.982721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:50:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:50:39] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:50:39] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:30.180723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.185790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.190879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.199346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:30.212234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.216573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.220724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.223128 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:30.244975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:30.251969 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:30.346716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.352322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.357353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.364346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.373346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:30.388698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.395705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:30.417617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:30.424060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:30.436092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:33.664108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:33.676466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:33.681466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:33] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:33.691460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:33.693467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:33.700133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:33] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:33] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:33] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:51.448104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:51] "POST /myclass/api/Add_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:51.498008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:51.529121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:59.549183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:59] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:52:59.567930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:52:59.571468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:59] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:52:59] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:53:01.285334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:53:01] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:54:43.909954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:54:43.915072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:54:43.919418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:43] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:43] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:54:48.492951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:48] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:54:48.542016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:48] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:54:48.567755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:48] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:54:52.961672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:52] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:54:52.985793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:54:52.989801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:54:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:55:03.994655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:55:04] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:55:09.413642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:55:09.429653 : CheckisDate -time data 'Mon Sep 02 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 14:55:09.431074 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:55:09] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:55:26.203229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:55:26] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:55:33.154716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:55:33] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:56:22.760476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:56:22.773471 : CheckisDate -time data 'Mon Sep 02 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 14:56:22.776468 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:56:22] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:57:12.592112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:57:12.594133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:57:12.598025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:57:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:57:12] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:57:12] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:57:22.601808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:57:22] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:57:50.843334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:57:50.846336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:57:50.850335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:57:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:57:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:57:50] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:44.541218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:58:44.545622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:58:44.549109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:44] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:44] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:46.602515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:58:46.609517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:58:46.615515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:58:46.623630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:58:46.630055 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 14:58:46.631318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:46.639088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:46] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:46.652964 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:46] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:46] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:46] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:47.309452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:58:47.313445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 14:58:47.317445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:47.324445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:47] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:47] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:47.332720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:47.339236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:47] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:47] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 14:58:51.217770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 14:58:51] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:09.882287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:00:09.889861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:09.896567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:09] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:09] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:15.043460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:00:15.049624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:00:15.054922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:00:15.062072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:00:15.066727 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 15:00:15.067729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:15.073809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:15] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:15.086650 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:15] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:15] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:15] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:16.195788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:00:16.198871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:00:16.204069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:00:16.208596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:16.214592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:16] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:16.222589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:16] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:16] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:16] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:00:19.340151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:00:19] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:01:50.333602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:50.337602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:50.343481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:50] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:01:51.373543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:51.376572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:51.382246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:51.389869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:51.389869 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:01:51.396047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:51.404890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:51] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:01:51.412548 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:51] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:51] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:51] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:01:52.188094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:52.191367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:52.196382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:01:52.199569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:01:52.208565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:01:52.218893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:01:54.351599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:01:54] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:15.279173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:15.281164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:15.283902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:15] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:17.560142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:17.564280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:17.567890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:17.574523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:17.581836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:17.581836 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:17] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:17.589960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:17] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:17.625099 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:17] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:17] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:18.099196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:18.102746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:18.107883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:18.111890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:18.120520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:18] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:18.130180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:18] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:19.312671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:19] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:44.943114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:44.947507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:44.951182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:44] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:44] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:47.359302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:47.362304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:47.366311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:47.372306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:47.377703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:47.384250 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 15:02:47.386332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:47] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:47] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:47] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:47.427350 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:47] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:48.435061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:48.438695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:48.442816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:48.450393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:48.454669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:48] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:48.461484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:48] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:48] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:48] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:49.536608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:49] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:59.764422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:59.767447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:59.770645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:59.777111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:02:59.783104 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:59.785109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:59] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:59.791103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:59] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:02:59.821380 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:59] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:02:59] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:03:00.249223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:03:00.252654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:03:00.256214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:03:00.260799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:03:00.269138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:00] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:00] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:03:00.281712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:00] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:00] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:03:00.987256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:00] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:03:19.541582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:03:19.543581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:03:19.547582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:19] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:03:53.129389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:03:53.133387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:03:53.136638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:53] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:03:53] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:12.077195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:12.082195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:12.087194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:12.885084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:12.890088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:12.894087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:12.900105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:12.905265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:12.908724 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:12.911341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:12.949697 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:12] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:20.290926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.295578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.299598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:20.306650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.316255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.317272 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:20.324922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:20.336536 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:20.615082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.619392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.623926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.630922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.635919 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 15:04:20.637924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:20.648449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:20.671651 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:20] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:24.800150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:24.804158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:24.809937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:24.814908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:04:24.822828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:24] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:24.833914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:24] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:24] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:24] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:04:25.910290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:04:25] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:14.838892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:14.845994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:14.849200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:14.855615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:14.857620 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:14.860082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:14.864519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:14] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:14.875140 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:14] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:14] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:14] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:15.416144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:15.419466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:15.422498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:15.426616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:15.432026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:15.439935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:15] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:15] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:16.373896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:16] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:47.935220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:47.940245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:47.944402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:47] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:47] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:48.597872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:48.601858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:48.604787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:48.613502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:48.617436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:48] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:48.623328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:48.628388 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:48] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:48.662671 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:48] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:48] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:49.134182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:49.137410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:49.143701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:05:49.148709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:49.159199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:49.166575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:49] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:05:50.791839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:05:50] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:03.844407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:03.848468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:03.852808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:03.858876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:03.861045 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:03.864259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:03.868725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:03] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:03.882563 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:03] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:03] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:03] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:04.323655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:04.326604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:04.331070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:04.336065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:04.340441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:04.345466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:04] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:04] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:04] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:04] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:06.912525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:06] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:24.447993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:24.452086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:24.458689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:24.465095 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 15:06:24.466090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:24.471716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:24] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:24.475573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:24.490829 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:24] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:24] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:24] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:25.240711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:25.246351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:25.250913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:25.254482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:25.259494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:25.265992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:25] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:25] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:27.251347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:27] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:31.340143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:31.343132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:31.346131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:31] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:31] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:48.349085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:48.352084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:48.356078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:48.362072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:48.365058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:48.366046 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:48] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:48.375298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:48.403053 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:48] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:48] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:48] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:50.407813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:50.411253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:50.415409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:06:50.419698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:50.426858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:50] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:50.441206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:50] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:06:55.113713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:06:55] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 15:08:08.378800 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 15:08:08.378800 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 15:08:08.378800 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 15:08:08.378800 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 15:08:08.379320 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 15:08:08.433261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.436265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.438769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.442298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.445638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.450854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.455340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.460518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.464922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.466922 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:08:08.490907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:08:08.512030 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:08:08.521500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:08:08.526037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:08:14.796510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:08:14] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:09:10.527203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:10.531592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:10.537770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:10] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:10] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:09:11.143167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:11.149212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:11.155006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:11.160837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:11.161851 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:09:11.166943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:11.175052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:09:11.187125 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:09:11.479504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:11.483011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:11.487032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:09:11.493186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:09:11.498744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:09:11.508191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:09:13.492659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:09:13] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:04.814992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:04.822292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:04.824341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:04] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:04] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:06.986540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:06.991707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:06.996974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:07.002847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:07.003846 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:07.008854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:07.019860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:07.044996 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:07.515523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:07.518523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:07.523134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:07.527149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:07.533993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:07.540438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:08.734995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:08] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:10.746580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:10.752117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:10.756119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:10.762478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:10.766785 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:10.770015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:10] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:10.777186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:10.786553 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:10] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:10] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:10] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:11.728273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:11.731274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:11.735284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:11.740297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:11.745293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:11.754858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:15.211449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:15] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:34.158845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:34.163847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:34.165865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:34.172050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:34.179326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:34.180343 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:34] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:34.187120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:34] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:34.220023 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:34] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:34] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:35.390840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:35.393153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:35.397590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:35.403019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:35.407074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:35] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:35.413089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:35] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:36.505653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:36] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:38.991565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:38.994571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:39.001566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:39.009569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:39.011570 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:39.016569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:39.030292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:39.054953 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:39.460812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:39.463918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:10:39.467936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:39.473945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:39.480356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:39.485886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:39] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:40.801261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:40] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:10:56.449917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:10:56] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:11:07.589660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:11:07] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:11:07.637057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:11:07.640192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:11:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:11:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:11:13.337416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:11:13] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:11:23.241355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:11:23] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:11:23.347128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:11:23.350407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:11:23] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:11:23] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:11:26.612176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:11:26] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Activite.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-06 15:12:26.282223 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-06 15:12:26.282223 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-06 15:12:26.283226 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-06 15:12:26.283226 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-06 15:12:26.283226 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-06 15:13:42.199370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:13:42.202929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:13:42.206588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:13:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:13:42] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:13:42] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:13:54.011114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:13:54] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:13:54.116644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:13:54.120287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:13:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:13:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:13:59.751843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:13:59] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:04.292902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:14:04.296901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:04] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:04] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:05.447911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:14:05.451432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:14:05.457174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:05.462640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:05.469757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:14:05.473016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:07.898103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:07] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:16.645401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:14:17.545585 : CheckisDate -time data 'Mon Sep 02 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 15:14:17.547691 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:17] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:35.234252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:35] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:39.731814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:14:39.742813 : CheckisDate -time data 'Mon Sep 02 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 15:14:39.745244 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:39] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:14:45.387680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:14:45] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:15:00.721172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:15:00] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:15:02.180686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:15:02.192998 : CheckisDate -time data 'Mon Sep 02 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 15:15:02.195991 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:15:02] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:15:07.654005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:15:07] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:16:32.237063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:16:32.243146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:16:32.249169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:32] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:32] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:16:34.022970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:16:34.034855 : CheckisDate -time data 'Mon Sep 02 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 15:16:34.036865 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:34] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:16:52.227866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:16:52.237887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:16:52.249419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:52] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:52] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:16:54.709338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:54] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:16:57.737390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:16:57.750710 : CheckisDate -time data 'Thu Sep 05 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 15:16:57.754307 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:16:57] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:17:58.092954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:17:58.097889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:17:58.101552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:17:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:17:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:17:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:18:01.902900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:18:01] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:18:04.281923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:18:04.292921 : CheckisDate -time data 'Thu Sep 05 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 15:18:04.294920 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:18:04] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:22:15.088989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:22:15.094456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:22:15.099973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:22:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:22:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:22:15] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:22:15.623854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:22:15] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:22:18.422815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:22:18.434235 : CheckisDate -time data 'Thu Sep 05 2024 00:00:00 GMT+0200 (heure d’été d’Europe centrale)' does not match format '%d/%m/%Y' - ERRORRRR AT Line : 779 +INFO:root:2024-09-06 15:22:18.436246 : Update_activite - La date deadline n'est pas au format jj/mm/aaaa +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:22:18] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:37.094589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:23:37.099927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:23:37.104347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:37] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:37] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:39.706518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:39] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:42.736134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:42] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:42.781092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:42] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:42.812599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:42] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:45.522627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:45] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:48.903506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:48] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:48.957551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:48] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:49.000236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:49] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:23:52.430676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:23:52] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:01.629868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:01] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:01.707402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:01] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:01.723204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:01] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:04.643977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:04] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:06.862712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:06] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:06.913592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:06.944598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:08.985661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:08] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:35.333524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:35.340186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:35.347527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:35.352532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:35.361520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:35.368331 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-06 15:24:35.370714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:35] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:35.420400 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:35] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:35] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:35] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:36.138223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:36.146396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:36.154308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:36.158827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:36.170044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:36.176421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:24:38.853732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:38.860108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:24:38.864619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:38] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:24:38] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:26:14.563253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:26:14.568269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:26:14.571654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:26:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:26:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:26:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:26:30.213652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:26:30.222649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:26:30.230644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:26:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:26:30] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:26:30] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:26:30.967982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:26:30] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:11.457959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:11.464442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:11.468881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:14.117336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:14.122988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:14.129504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:14.137972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:14.139999 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:14.148564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:14.153907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:14.197099 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:14.607396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:14.611362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:14.616488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:14.625804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:14.637969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:14.647986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:14] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:16.611109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:16] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:20.934773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:20] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:20.995926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:20.998763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:21] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:21] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:22.804402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:22] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:25.902974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:25] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:25.958577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:25.966620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:25] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:27.987306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:27] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:31.697856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:31] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:29:31.730123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:29:31.733786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:31] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:29:31] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:30:09.177801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:30:09.181341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:30:09.186330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:09] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:09] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:30:13.261148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:13] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:30:15.398052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:15] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:30:20.368334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:20] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:30:20.405916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:20] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:30:20.419898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:20] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:30:51.341983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:30:51.346996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:30:51.355006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:51] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:30:51] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:31:08.057086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:31:08.063332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:31:08] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:31:08] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:31:11.331075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:31:11.338987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:31:11] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:31:11] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:31:16.004135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:31:16.065657 : Delete_Given_CRM_Opportunite -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 890 +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:31:16] "POST /myclass/api/Delete_Given_CRM_Opportunite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:31:25.666678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:31:25.673904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:31:25] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:31:25] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:22.342478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:22.349331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:22.353331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:22.359321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:22] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:22] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.404232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:30.414232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:30.417230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.430734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:30.433268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:30.445557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.459697 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.468911 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.597707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:30.602575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:30.607092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:30.614266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.623313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.635973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.653044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:30.658288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:30] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:32:33.373051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:32:33.377671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:33] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:32:33] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:34:08.136987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:34:08.142024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:34:08.146015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:34:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:34:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:34:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:35:38.112904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:35:38.118312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:35:38.125393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:35:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:35:38] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:35:38] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:37:06.373846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:37:06.378843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:37:06.383842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:37:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:37:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:37:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:38:07.234011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:38:07.236541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:38:07.247411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:38:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:38:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:38:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:38:29.735772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:38:29.742324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:38:29.747482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:38:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:38:29] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:38:29] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:40:53.444830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:40:53.448986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:40:53.455138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:40:53.458857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:40:53.468738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:40:53.475708 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:40:53.479049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:40:53.499011 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:53] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:53] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:40:55.665716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:40:55.670593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:40:55.675110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:40:55.680405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:40:55.688307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:55] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:40:55.694779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:55] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:55] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:40:55] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:41:03.660203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:41:03] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:41:13.409081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:41:13] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:41:13.427325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:41:13.431353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:41:13] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:41:13] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:41:17.277216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:41:17] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2024-09-06 15:41:17.305714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-06 15:41:17.307708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:41:17] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Sep/2024 15:41:17] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - diff --git a/lms_chamilo/mysy_lms.py b/lms_chamilo/mysy_lms.py index 637095f..0679871 100644 --- a/lms_chamilo/mysy_lms.py +++ b/lms_chamilo/mysy_lms.py @@ -2104,7 +2104,7 @@ def LMS_Get_Partner_Data(diction): lms_part_recid = "" lms_virtualhost_url = "" lms_url = "" - if( lms_account == "1"): + if( lms_account == "1" and 'mysy_lms_user_id' in connected_user_data.keys() ): lms_user_id = connected_user_data['mysy_lms_user_id'] lms_user_name = my_partner['email'] #lms_pwd_mask = my_partner['pwd'] diff --git a/main.py b/main.py index 591db2e..67687a9 100644 --- a/main.py +++ b/main.py @@ -4529,6 +4529,22 @@ def Update_activite(): return jsonify(status=localStatus, message=message) + +""" +API qui met à jour une activité (juste statut) +""" +@app.route('/myclass/api/Update_activite_status/', methods=['POST','GET']) +@crossdomain(origin='*') +def Update_activite_status(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Update_activite_status : payload = ",payload) + localStatus, message = Activite.Update_activite_status(payload) + return jsonify(status=localStatus, message=message) + + + """ API qui recupere la liste des activités d'une entité """ @@ -4538,10 +4554,39 @@ def Get_List_Entity_Activite(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) print(" ### Get_List_Entity_Activite : payload = ",payload) - localStatus, message = Activite.Get_List_Entity_Activite(payload) + localStatus, message, nb_activite_en_retard = Activite.Get_List_Entity_Activite(payload) + return jsonify(status=localStatus, message=message, nb_activite_en_retard = nb_activite_en_retard) + + + +""" +API de Recuperation des Activité qui sont assigné à : employee_assigned_to_id +""" +@app.route('/myclass/api/Get_List_Activite_Assign_To/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_List_Activite_Assign_To(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_List_Activite_Assign_To : payload = ",payload) + localStatus, message, nb_activite_en_retard = Activite.Get_List_Activite_Assign_To(payload) + return jsonify(status=localStatus, message=message, nb_activite_en_retard = nb_activite_en_retard) + + + +""" +API qui recupere le nombre d'activité en retard +""" +@app.route('/myclass/api/Get_Nb_Entity_Activite_Assign_To_Me_En_Retard/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Nb_Entity_Activite_Assign_To_Me_En_Retard(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Nb_Entity_Activite_En_Retard : payload = ",payload) + localStatus, message = Activite.Get_Nb_Entity_Activite_Assign_To_Me_En_Retard(payload) return jsonify(status=localStatus, message=message) + """ API qui recupere activité donnée """ @@ -4555,6 +4600,20 @@ def Get_Given_Activite(): return jsonify(status=localStatus, message=message) + +""" +API qui supprime une activité donnée +""" +@app.route('/myclass/api/Delete_Given_Activite/', methods=['POST','GET']) +@crossdomain(origin='*') +def Delete_Given_Activite(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Delete_Given_Activite : payload = ",payload) + localStatus, message = Activite.Delete_Given_Activite(payload) + return jsonify(status=localStatus, message=message) + + """ Cette API permet de publier/mettre à jour une formation du LMS Search vers MySy LMS diff --git a/partners.py b/partners.py index 8d3e62d..62136ae 100644 --- a/partners.py +++ b/partners.py @@ -18,6 +18,8 @@ import json from bson import ObjectId import re import numpy as np + +import Activite import ela_index_bdd_classes as ela_index import email_mgt as mail from datetime import datetime @@ -1162,6 +1164,20 @@ def get_partner_account(diction): user['mysy_lms_user_id'] = mysy_lms_user_id + """ + 05/09/2024 : Recuperer le nombre d'activité en retard pour la personne connectée + """ + local_diction = {} + local_diction['partner_owner_recid'] = str(partnere_recid) + local_diction['employee_assigned_to_id'] = str(retVal['ressource_humaine_id']) + + local_activite_status, local_activite_retval = Activite.Get_Nb_Entity_Activite_Assigne_To_Me_En_Retard_No_token(local_diction) + if( local_activite_status is True): + user['nb_activite_retard'] = local_activite_retval + else: + user['nb_activite_retard'] = "0" + + """ update du 01/05/2024 Pour distinguer si le partenaire est a lié à une formation initiale ou continue @@ -1170,8 +1186,6 @@ def get_partner_account(diction): Volontairement, on ne descend pas ce paramettre sur les utilisateurs associée au partenaire """ - - admin_partnair_account = MYSY_GV.dbname['partnair_account'].find_one({'recid':retVal['recid'], 'active':'1', 'locked':'0', @@ -1216,8 +1230,10 @@ def get_partner_account(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " WARNING : Impossible de mettre à jour du firstconnexion et/ou lastconnexion du partner recid = "+str(partnere_recid)+". ") + return True, RetObject + except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) diff --git a/ressources_humaines.py b/ressources_humaines.py index 479ff24..b2e2249 100644 --- a/ressources_humaines.py +++ b/ressources_humaines.py @@ -1783,9 +1783,12 @@ def Get_List_Ressource_Humaine_no_filter(diction): user['user_login'] = "" val_tmp = val_tmp + 1 + + """06/09 /2024 - peut etre ne pas exclure les comptes admin is_admin_account_count = MYSY_GV.dbname['partnair_account'].count_documents({'ressource_humaine_id':str(retval['_id']), 'is_partner_admin_account':'1'}) # exclure les comptes admin if( is_admin_account_count <= 0 ): - RetObject.append(mycommon.JSONEncoder().encode(user)) + """ + RetObject.append(mycommon.JSONEncoder().encode(user)) return True, RetObject