From f8feacdb006dda16653e8e13c346215f95174248 Mon Sep 17 00:00:00 2001 From: cherif Date: Sun, 2 Feb 2025 16:30:54 +0100 Subject: [PATCH] qsdsq --- .idea/workspace.xml | 28 +- Inscription_mgt.py | 50 +- Log/log_file.log | 5179 ++++++++++++++++++++++++++++++++++++++ Session_Formation.py | 712 +++++- email_inscription_mgt.py | 109 +- main.py | 93 + partner_client.py | 2 +- 7 files changed, 6104 insertions(+), 69 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index f5f5aa2..a38a686 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,16 +1,14 @@ - + - - - + - + @@ -466,7 +464,6 @@ - @@ -491,6 +488,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 25e3dc8..9d2ddbb 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -1553,6 +1553,21 @@ def GetAllClassStagiaire(diction): if( str( user['civilite']) not in MYSY_GV.CIVILITE): user['civilite'] = "neutre" + lms_account_expiration_date = "" + if ("lms_account_expiration_date" in retval.keys()): + lms_account_expiration_date = retval['lms_account_expiration_date'] + user['lms_account_expiration_date'] = lms_account_expiration_date + + lms_class_code = "" + if ("lms_class_code" in retval.keys()): + lms_class_code = retval['lms_class_code'] + user['lms_class_code'] = lms_class_code + + lms_user_id = "" + if ("lms_user_id" in retval.keys()): + lms_user_id = retval['lms_user_id'] + user['lms_user_id'] = lms_user_id + RetObject.append(mycommon.JSONEncoder().encode(user)) return True, RetObject @@ -5549,8 +5564,7 @@ def RefuseAttendeeInscription_with_motif(diction): history_event_dict['action_date'] = str(now) local_session_info = "" - if ("_id" in local_session.keys()): - local_session_info = "_Id Session : " + str(local_session["_id"]) + if ("code_session" in local_session.keys()): local_session_info = local_session_info + ", Code Session : " + local_session["code_session"] @@ -6699,8 +6713,7 @@ def AcceptAttendeeInscription(diction): history_event_dict['action_date'] = str(now) local_session_info = "" - if ("_id" in local_session.keys()): - local_session_info = "_Id Session : " + str(local_session["_id"]) + if( "code_session" in local_session.keys() ): local_session_info = local_session_info+ ", Code Session : "+local_session["code_session"] @@ -7241,6 +7254,10 @@ def Send_LMS_Credentials_to_particpants(diction): email_data['lms_url'] = str(lms_virtualhost_url) email_data['course_owner_email'] = my_partner['email'] email_data['partner_recid'] = my_partner['recid'] + email_data['token'] = str(mytoken) + email_data['inscription_id'] = str(local_inscription[0]['_id']) + email_data['session_code'] = str(local_session['code_session']) + #split_mail_tab = str(email).split('@') #email_data['login'] = split_mail_tab[0] @@ -9502,9 +9519,11 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): history_event_dict['related_collection_recid'] = str(diction['inscription_id']) history_event_dict['action_date'] = str(now) - local_session_info = "Id Session : " + str(session_data['_id']) + local_session_info = "" if ("code_session" in session_data.keys()): local_session_info = local_session_info + ", " + session_data["code_session"] + else: + local_session_info = "Id Session : " + str(session_data['_id']) history_event_dict['action_description'] = "Convention envoyée par email à la liste : "+str(tab_emails_destinataire)+" pour la session "+str(local_session_info) local_status, local_retval = mycommon.Collection_Historique.Add_Historique_Event(history_event_dict) @@ -10031,9 +10050,12 @@ def Sent_Convention_Individuelle_Stagiaire_By_Email(tab_files, Folder, diction): history_event_dict['related_collection_recid'] = str(diction['inscription_id']) history_event_dict['action_date'] = str(now) - local_session_info = "Id Session : " + str(session_data['_id']) + local_session_info = "" if ("code_session" in session_data.keys()): local_session_info = local_session_info + ", " + session_data["code_session"] + else: + local_session_info = "Id Session : " + str(session_data['_id']) + history_event_dict['action_description'] = "Convention envoyée par email à la liste : " + str( tab_emails_destinataire) + " pour la session " + str(local_session_info) @@ -11466,9 +11488,12 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat history_event_dict['related_collection_recid'] = str(inscription['_id']) history_event_dict['action_date'] = str(now) - local_session_info = "Id Session : " + str(session_data['_id']) + local_session_info = "" if ("code_session" in session_data.keys()): local_session_info = local_session_info + ", " + session_data["code_session"] + else: + local_session_info = "Id Session : " + str(session_data['_id']) + history_event_dict['action_description'] = "Convention envoyée par email à la liste : " + str( tab_emails_destinataire)+" pour la session "+str(local_session_info) @@ -13953,6 +13978,17 @@ def Update_LMS_Inscrition_End_Date(diction): inspect.stack()[0][3]) + " La date de fin n'est pas au format jj/mm/aaaa.") return False, " La date de fin n'est pas au format jj/mm/aaaa." + mytoday = datetime.today().strftime("%d/%m/%Y") + if (datetime.strptime(str(diction['end_date'])[0:10], '%d/%m/%Y') < datetime.strptime(str(mytoday).strip(), + '%d/%m/%Y')): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La date de fin d'accès au LMS " + str( + diction['end_date']) + " est antérieure à la date du jour ") + + return False, " La date de fin d'accès au LMS " + str( + diction['end_date']) + " est antérieure à la date du jour " + # Verifier que la session est valide is_session_id_valide = MYSY_GV.dbname['session_formation'].count_documents( diff --git a/Log/log_file.log b/Log/log_file.log index 43c4b53..176018a 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -3023003,3 +3023003,5182 @@ INFO:root:2025-02-01 20:04:09.260963 : Security check : IP adresse '127.0.0.1' INFO:werkzeug:127.0.0.1 - - [01/Feb/2025 20:04:09] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - INFO:root:2025-02-01 20:04:17.644214 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [01/Feb/2025 20:04:17] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 08:55:18.888421 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 08:55:18.888421 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 08:55:18.888421 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 08:55:18.888421 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 08:55:18.888421 : ++ LMS_BAS_URL mysy-hosting.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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 08:55:55.193116 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 08:55:55.194125 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 08:55:55.194125 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 08:55:55.194125 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 08:55:55.194125 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 08:59:06.021332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.215499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.218735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.223489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.229489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.233492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.240460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.270684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.272683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.321727 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.322857 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.418214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.422547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.427800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.433870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.469640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.490558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.504049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.520791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:06.536022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:06.537019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.343300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.347667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.350723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.356123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.361138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.369503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.379681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.383940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.390564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.397841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.403991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.411014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.417783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.422928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.436448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.451553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.457385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.467260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.473764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.479624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:08.488034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:08.493036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:12.439921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:12.443071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:12.446645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:12.453644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 08:59:12.458649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:12.463652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:12] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:12.471652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:12] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 08:59:16.630911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 08:59:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.665568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:34.670771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:34.676120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:34.682217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:34.685523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.695602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.702015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.715703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.719702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:34.724132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.734600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.748020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.761283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:34.767655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.776863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.792284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.798278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:34.809290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.828897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.845384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:34.855189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:34.868008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:49.385357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:51.304650 : Delete_List_SessionFormation1 Document supprimé. La session_id 679e1f8486671de6de2b0cfb a été correctement supprimée +INFO:root:2025-02-02 09:04:51.308651 : Delete_List_SessionFormation1 Document supprimé. La session_id 679e1f8486671de6de2b0cf9 a été correctement supprimée +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:51] "POST /myclass/api/Delete_List_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:51.313914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:56.307254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:56.310978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:56.314994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:04:56.318000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:56.326016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:56.334446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:56.340319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:04:59.881623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:04:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:06:37.010331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:06:37.014331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:06:37.019330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:06:37.029036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:06:37.036080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:06:37.041211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:06:37.048435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:06:37.056094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:06:37.062228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:06:37.073532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:06:37.079449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:06:37] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:26.281624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:26.286854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:26.293175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:26.298750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:26.308048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:26] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:26.316267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:26] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:26] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:26.331787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:26] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:29.872844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.597746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.601915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.604519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.614564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.619281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.630861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.642467 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.646522 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.891925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.896125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.902913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.905911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.914693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.923907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.933902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.943933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.950951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.956381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.966873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.973937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:40.982070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.988266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:40.995471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:41.005478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:41.010505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:41.026425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:41.033514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:41.039684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:41.043680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:41.056322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:45.658073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:45.661317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:45.665891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:08:45.670773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:45] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:45.677891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:45.685884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:45.692985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:45] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:08:48.984755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:08:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.316958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.322264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.326461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.331768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.338146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.345155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.359192 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.365628 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.561560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.570750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.576678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.586121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.590534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.606492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.626319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.631866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.644516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.664356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.672588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:12:29.680582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.699146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.724149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.737689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.754080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.779251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.796249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.806369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:12:29.825569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:12:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 09:19:32.416679 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 09:19:32.416679 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 09:19:32.416679 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 09:19:32.416679 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 09:19:32.416679 : ++ LMS_BAS_URL mysy-hosting.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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 09:20:51.588715 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 09:20:51.589719 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 09:20:51.589719 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 09:20:51.589719 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 09:20:51.589719 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 09:21:52.247372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:21:52.251456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:21:52.252890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:21:52.257415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:21:52.260784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:21:52.272398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:21:52.278414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:21:52.286455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:21:52.295954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:21:52.306060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:21:52.311952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:21:53] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:23:49.046381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:23:49.049383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:23:49.052379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:23:49.056378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:23:49.064384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:23:49.070381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:23:49.077383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:23:49.089857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:23:49.095213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:23:49.167553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:23:49.173550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:23:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:23.528915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:23.534363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:23.560031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:23.566392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:23.573698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:23.579738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:23.594009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:23.604250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:23.614545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:23.617866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:23.627592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.116418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.123698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.128081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.140350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.149265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.157248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.182748 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.185913 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.441696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.446247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.450277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.456464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.462652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.470926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.472940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.481059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.486960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.497240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.499264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.504266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.520274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.530465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.536933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.547763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.565360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.580137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.587779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.597617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:35.620844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:35.629377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:42.037542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:42.045543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:42.052546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:25:42.062739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:42.083729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:42.098728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:42] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:42.111741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:25:46.213879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:25:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:26:53.812873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:53.824788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:53.830949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:26:53.840664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:26:53.844211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:53.849309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:26:53.859927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:53.863074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:53.874733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:26:53.888931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:53.896173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:26:56.434973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:56.439972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:56.446703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:56.451455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:56.456888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:26:56.463904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:26:56.469896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:26:59.329310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:26:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.153863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.155371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.192738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.238502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.331264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.330267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.513717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.575537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.607530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.617674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.629118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.640632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.658853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.671389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.682235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.690934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.704177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.728203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.744250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.751243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:31:55.761670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:31:55.777490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:31:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:02.904219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:02.909721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:02.914927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:02.922170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:02.927455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:02.933007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:02.939742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:02.947256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:02.963368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:02.966685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:02.973780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:02.979242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:02.987002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:02.995654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:02] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:03.001073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:03.008281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:33:03.015282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:03.024540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:33:06.176932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:33:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:01.334490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:01.338483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:01.347016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:01.354015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:01.362566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:01.370344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:01.375430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:01.383829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:01.390359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:01.408652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:01.416717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:04.928112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:04.933634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:04.940870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:34:04.947249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:04] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:04.954277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:04.964655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:04] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:04.968193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:04] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:04] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:34:08.483947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:34:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:35:32.253558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:35:32.259066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:35:32.265067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:35:32.274069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:35:32.278072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:35:32.290066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:35:32.294261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:35:32.306196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:35:32.314766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:35:32.319315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:35:32.325485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:35:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:18.801218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:36:18.806942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:36:18.813703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:36:18.820748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:18.831842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:18.837715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:18.842754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:36:18.849240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:36:18.852425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:18.860963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:18.872399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:22.011963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:36:22.015962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:36:22.020959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:22] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:22.029957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:36:22.033961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:22.041300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:22] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:22] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:22.049616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:22] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:36:26.771406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:36:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:37:50.440079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:37:50.444403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:37:50.448403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:37:50.451400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:37:50.460404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:37:50.466417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:37:50.473420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:37:50.477418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:37:50.482204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:37:50.486217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:37:50.493732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:37:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.613441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.616603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.622297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.626303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.639084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.644835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.648308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.661744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.668712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.676796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.681627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.687663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.696631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.721012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.724497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.734193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.743216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.759114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.766913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.773334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:24.777335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:24.794574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:28.659155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:28.664513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:28.669392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:28.674813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:43:28.680082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:28.686554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:28.695361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:43:31.751525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:43:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:10.397315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:45:10.401315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:45:10.406598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:10.411526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:45:10.416653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:10.425182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:10.432957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:45:10.439325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:10.445565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:10.453084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:10.457079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:14.466181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:45:14.472801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:45:14.477180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:14.482181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:45:14.486702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:14.493090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:45:14.498618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:45:17.733294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:45:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.389240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:12.392738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:12.398902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.404520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:12.409051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.418156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.425593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.430592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:12.435883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.444220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:12.447732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.456251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.469271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.480753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.489276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.497186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.508167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.516456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.524034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:12.530253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.545193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:12.556024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:30.559180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:30.561722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:30.566729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:30.573515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:30.577065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:30.583900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:30.589001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:30.603528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:30.610282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:30.615988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:30.619281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:32.833020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:32.838637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:32.844314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:32.851783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:47:32.856344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:32.865920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:32.870920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:47:36.529007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:47:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:56.725451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:56.730454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:56.735451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:56.808732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:56.812783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:56.816627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:56.843802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:56.853593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:56.856593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:56.867591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:56.872926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:57.952234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:57.958233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:57.962276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:57.968224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:57.974449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:57.981311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:57.989851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:57.996143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:58.005613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:48:58.011615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:48:58.024293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:48:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:00.419555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:49:00.423098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:49:00.427838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:00.435271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:49:00.438771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:00.449136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:00.466025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:04.888100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:14.682744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:49:14.687316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:49:14.691313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:49:14.692664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:14.699491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 09:49:14.727080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:14.730905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 09:49:17.666083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 09:49:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 09:54:24.449223 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 09:54:24.450225 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 09:54:24.450225 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 09:54:24.450225 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 09:54:24.450225 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 09:54:50.793868 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 09:54:50.793868 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 09:54:50.793868 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 09:54:50.793868 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 09:54:50.793868 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 09:57:39.542289 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 09:57:39.542289 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 09:57:39.542289 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 09:57:39.542289 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 09:57:39.542289 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 09:58:29.184894 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 09:58:29.184894 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 09:58:29.185894 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 09:58:29.185894 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 09:58:29.185894 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 09:58:55.860755 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 09:58:55.860755 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 09:58:55.860755 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 09:58:55.860755 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 09:58:55.861747 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 09:59:46.493039 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 09:59:46.493039 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 09:59:46.493039 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 09:59:46.493039 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 09:59:46.493039 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 10:00:56.260902 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 10:00:56.260902 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 10:00:56.261902 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 10:00:56.261902 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 10:00:56.261902 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 10:01:21.881368 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 10:01:21.882364 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 10:01:21.882364 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 10:01:21.882364 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 10:01:21.882364 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 10:03:21.142005 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 10:03:21.142005 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 10:03:21.142005 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 10:03:21.142005 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 10:03:21.142005 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 10:06:31.822599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:06:31.827228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:06:31.831480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:06:31.834813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:06:31.842937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:06:31.850916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:06:31.861451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:06:31.870006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:06:31.879935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:06:31.888454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:06:31.892543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:06:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.668358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.684224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.688111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.695617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.705419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.712155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.720636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.729230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.736755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.743248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.758363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.760770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.771395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.781314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.799410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.807408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.817056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.821101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.842436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.851754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:08:57.860753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:08:57.875254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:08:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:09:38.577421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:09:38.582881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:09:38.588542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:09:38.595103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:09:38.600245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:09:38.608075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:09:38.612733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:09:38.617741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:09:38.629280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:09:38.635591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:09:38.643341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:09:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:13:39.718629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:13:39.724631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:13:39.730626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:39] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:13:39.736223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:13:39.742222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:13:39.750228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:13:39.757665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:39] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:39] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:39] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:13:43.221543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:13:56.163189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:13:59] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:06.528692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:14:06.537112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:06.542905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:14:06.547667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:14:06.553581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:06.563065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:06] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:06.571009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:09.088388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:50.507310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:14:50.511305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:14:50.516304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:14:50.521326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:50.533572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:50.539583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:14:50.546677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:14:56.392005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:14:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:02.438988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:03.261752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:04.778330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:04.783330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:04.788612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:04.796014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:04.799174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:04.802758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:04.815435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:04.823798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:04.826798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:04.841611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:04.844610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:05.383822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:05.389412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:05.394773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:05.402935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:05.409803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:05.417357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:05.424894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:05.435133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:05.445939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:15:05.452002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:15:05.466310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:15:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:08.063871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:28.136474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:16:28.142047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:16:28.146606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:28.153813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:16:28.156805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:28.166322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:28.174693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:28.180769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:28.191571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:28.200766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:16:28.212137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:16:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:17:11.355945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:17:11.360945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:17:11.364947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:17:11.374188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:17:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:17:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:17:11.384190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:17:11.391190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:17:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:17:11.399191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:17:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:17:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:17:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:17:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:17:15.164702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:17:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:14.357684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:14.362684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:14.368679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:14.376464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:14.386514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:14.394910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:14.402902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:14.411909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:14.418911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:14.425901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:14.433913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:49.482885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:49.493153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:49.500457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:49.506789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:49.517792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:49.522788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:49.531077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:49.537864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:49.544862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:49.559753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:49.570469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:58.640246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:58.646245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:58.650255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:58.656256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:58.662519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:23:58.673299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:23:58.681715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:23:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:24:03.126483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:24:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:24:51.241128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:25:02.786142 : Update_LMS_Inscrition_End_Date -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 13993 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:02] "POST /myclass/api/Update_LMS_Inscrition_End_Date/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:25:21.799326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:25:21.804328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:25:21.810450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:25:21.819986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:25:21.826255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:25:21.831974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:25:21.843593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:25:21.847525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:25:21.857822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:25:21.866823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:25:21.871827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:25:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.298284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.302284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.306283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.314357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.317648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.326947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.337720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.347727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.356219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.360222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.367295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.369540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.378099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.401245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.411248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.418738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.425115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.429114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.442951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.449953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:47.466368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:47.472363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:52.453491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:52.457833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:52.462336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:52.468762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:52] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:52.476843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:32:52.480995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:52] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:52.486991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:52] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:52] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:32:55.590743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:32:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:33:19.803715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:33:19.814743 : Update_LMS_Inscrition_End_Date -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 13993 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:33:19] "POST /myclass/api/Update_LMS_Inscrition_End_Date/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:03.630582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:03.640039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:03.654003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:03.656013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:03.662051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:03.666875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:03.683801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:03.696033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:03.707650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:03.721239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:03.730281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:14.546556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:14.552335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:14.559507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:14.588061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:14.591599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:14.599391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:14.606304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:17.599889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:38:36.102424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:38:36.125609 : Update_LMS_Inscrition_End_Date -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 13993 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:38:36] "POST /myclass/api/Update_LMS_Inscrition_End_Date/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:39:39.529243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:39:39.548940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:39:39.553662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:39:39.558679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:39:39.564905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:39:39.569902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:39:39.573369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:39:39.578387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:39:39.584372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:39:39.601713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:39:39.604730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:39:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:41:47.072878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:41:47.117473 : Update_LMS_Inscrition_End_Date -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 13993 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:41:47] "POST /myclass/api/Update_LMS_Inscrition_End_Date/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:07.501749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:44:07.506749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:44:07.512749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:07.519928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:07.526005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:44:07.533404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:44:07.541437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:07.554055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:44:07.560826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:07.566174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:07.571168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:45.933517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:45] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:45.944591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:44:45.949631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:44:45.954631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:44:45.958630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:45.967357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:45.973322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:45] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:44:48.885340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:44:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:45:09.598192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:45:09.608013 : Update_LMS_Inscrition_End_Date -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 13993 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:45:09] "POST /myclass/api/Update_LMS_Inscrition_End_Date/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:04.597907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:04.608599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:04.614649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:04.621145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:04.627943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:04.633652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:04.640661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:04.653204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:04.660761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:04.666079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:04.673728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:06.929192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:06.940609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:06.945628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:06.952037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:06.961419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:47:06.963594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:06] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:06.969483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:47:10.808490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:47:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:00.776033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:50:00.782686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:50:00.787039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:50:00.793528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:50:00.803268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:00.813198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:00.824897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:00.834045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:00.842804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:50:00.848083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:00.856281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:12.338741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:12] "POST /myclass/api/Update_LMS_Inscrition_End_Date/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:12.771637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:46.657663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:46] "POST /myclass/api/Update_LMS_Inscrition_End_Date/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:50:47.086073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:50:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 10:52:38.717332 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 10:52:38.717332 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 10:52:38.717332 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 10:52:38.717332 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 10:52:38.717332 : ++ LMS_BAS_URL mysy-hosting.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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 10:53:27.807930 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 10:53:27.807930 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 10:53:27.807930 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 10:53:27.807930 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 10:53:27.807930 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 10:53:37.578603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:37.582629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:37.585887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:37.587904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:37.593207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:37.597738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:53:37.604716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:37] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:37] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:53:41.811029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:53:55.917248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:55.920254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:55.921895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:55.927994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:55] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:53:55.935366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:53:55.941660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:53:55.946117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:55] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:55] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:55] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:53:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:54:00.646880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:54:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:54:08.316195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:54:09.063624 : Update_LMS_Inscrition_End_Date La date de fin d'accès au LMS 26/01/2025 est antérieure à la date du jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:54:09] "POST /myclass/api/Update_LMS_Inscrition_End_Date/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:54:46.030428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:54:47] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:55:29.391870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:55:30] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.614281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.617345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.620810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.625104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.632078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.637103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.649663 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.657572 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.864707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.867727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.871980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.878108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.882794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.887795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.903781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.909310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.920652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.933612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.952952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:38.956981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.973330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:38.994830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:39.010051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:39.022440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:39.040158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:39.055106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:39.058615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:39.075762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:56:42.708766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 10:56:42.710765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:42] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:56:42] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 10:57:46.402463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 10:57:46] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 10:58:26.729557 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 10:58:26.729557 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 10:58:26.729557 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 10:58:26.729557 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 10:58:26.729557 : ++ LMS_BAS_URL mysy-hosting.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\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 10:58:41.924366 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 10:58:41.924366 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 10:58:41.924366 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 10:58:41.924366 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 10:58:41.924366 : ++ LMS_BAS_URL mysy-hosting.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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:03:26.529311 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:03:26.529311 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:03:26.530312 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:03:26.530312 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:03:26.530312 : ++ LMS_BAS_URL mysy-hosting.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\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:05:11.023076 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:05:11.023076 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:05:11.023076 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:05:11.023076 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:05:11.023076 : ++ LMS_BAS_URL mysy-hosting.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\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:05:24.110450 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:05:24.110450 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:05:24.110450 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:05:24.110450 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:05:24.110450 : ++ LMS_BAS_URL mysy-hosting.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\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:06:35.568414 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:06:35.568414 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:06:35.568414 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:06:35.568414 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:06:35.568414 : ++ LMS_BAS_URL mysy-hosting.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\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:07:47.705712 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:07:47.705712 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:07:47.706712 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:07:47.706712 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:07:47.706712 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 11:08:05.343543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:06.545986 : LMS_Credential_Sending_mail -module 'datetime' has no attribute 'now' - ERRORRRR AT Line : 2058 +INFO:root:2025-02-02 11:08:06.548281 : Send_LMS_Credentials_to_particpants - WARNING : Impossible d'envoyer le mail de notification pour mysy1000formation+01@gmail.com +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:06] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.688321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.690564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.694150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.699091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.704148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.708174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.720471 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.726394 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.902762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.905843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.910422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.914890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.919126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.925127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.937132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.946134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.953137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.966662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:12.971659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.983218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:12.997781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:13.018005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:13.032008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:13.043987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:13.062990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:13.077989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:13.082000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:13.097985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:08:15.400722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:08:15.404973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:15] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:08:15] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:09:12.488504 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:09:12.488504 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:09:12.488504 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:09:12.488504 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:09:12.488504 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 11:09:18.186126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:18] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.202385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.206273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.209337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.215486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.218505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.222486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.231631 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.247701 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.403129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.406125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.410128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.417495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.421769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.425998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.438036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.449352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.454387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.470706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.479319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:31.486759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.505070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.527282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.543309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.556332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.576210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.586046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.592965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:31.605817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:09:33.722935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:09:33.726267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:33] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:09:33] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:11:04.565019 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:11:04.566019 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:11:04.566019 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:11:04.566019 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:11:04.566019 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 11:11:04.620951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:05] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.500385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.503125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.506164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.512426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.517260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.521488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.532620 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.543382 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.698223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.701233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.704809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.709576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.714921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.719140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.731890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.741462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.746527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.757525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.767525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.778540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.793334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.811487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.824881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.837886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.858674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.871762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:13.875036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:13.890095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:11:16.142522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:11:16.145641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:16] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:11:16] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:16:24.558351 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:16:24.558351 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:16:24.558351 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:16:24.558351 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:16:24.558351 : ++ LMS_BAS_URL mysy-hosting.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\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:21:04.046491 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:21:04.047493 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:21:04.047493 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:21:04.047493 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:21:04.047493 : ++ LMS_BAS_URL mysy-hosting.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\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:23:56.149286 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:23:56.149286 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:23:56.149286 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:23:56.149286 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:23:56.149286 : ++ LMS_BAS_URL mysy-hosting.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\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 11:24:41.056157 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 11:24:41.056157 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 11:24:41.057162 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 11:24:41.057162 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 11:24:41.057162 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 11:28:10.870252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:28:10.890978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:28:10.894788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:28:10.898788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:10] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:10] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:10] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:10] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:28:16.293002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:16] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:28:16.296354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:28:16.312057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:28:16.315235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:16] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:16] "POST /myclass/api/Get_List_Partner_Document_Super_Admin_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:16] "POST /myclass/api/Get_List_Partner_Document_Super_Admin_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:28:18.992742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:28:18.995870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:19] "POST /myclass/api/Get_Given_Partner_Document_Super_Admin/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:28:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:29:16.638045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:29:16] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:31:41.902997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:31:41] "POST /myclass/api/Update_Partner_Document_Super_Admin/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:31:42.133053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:31:42] "POST /myclass/api/Get_Given_Partner_Document_Super_Admin/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.670646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.674642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.678640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.683644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.691655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.699657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.702184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.706705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.716495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.721253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.727262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.732523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.740403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.744404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.750701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.760705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:17.768107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.775123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.782549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.791553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.799712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:17.810393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:21.315689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:21.319100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:21.321621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:21.327243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:21.329245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:21.338386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:21.343461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:25.824278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:35.370631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:36] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.340148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.343475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.346905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.350899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.355285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.363176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.364755 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.374630 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.772239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.774244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.778246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.785360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.790363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.793365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.804612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.815061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.818481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.831995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.840031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.846023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.860497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.880604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.891992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.905005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.921897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.935152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:49.938283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:49.950459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:33:52.275915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:33:52.279913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:52] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:33:52] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:34:47.388030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:34:47] "POST /myclass/api/LMS_Credential_Sending_mail/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:36:35.540975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:36:35.545458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:36:35.550090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:36:35.554093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:36:35.560094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:36:35.567095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:36:35.573091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:36:35.579465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:36:35.583824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:36:35.588318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:36:35.592847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:36:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:42:01.400198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:01.405188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:01.408190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:01.413597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:01.423592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:42:01.440958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:01.448205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:42:01.457739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:01] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:01] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:01] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:01] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:01] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:01] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:42:07.608395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:42:09.256093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:09.259999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:09.263395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:09.267655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:42:09.273184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:09.279448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:09.286383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:42:09.291869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:42:10.784781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:42:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:43:33.071967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:43:33.076224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:43:33.080702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:43:33.085967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:43:33.093105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:43:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:43:33.102843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:43:33.114009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:43:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:43:33] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:43:33.122030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:43:33] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:43:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:43:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:43:33] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:43:33] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.112523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.118367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.123549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.130724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.135722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.143748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.152650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.162884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.169891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.178202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.180206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.184286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.189284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.208380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.220299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.228705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.233708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.254473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.261003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.267027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:46:18.274112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:46:18.288767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:46:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.671635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.678534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.685777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.691781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.698321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.704920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.712305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.722306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.736674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.743901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.746901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.753364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.762620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.782925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.789352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.793045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.801105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.815004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.825450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.832675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:51:29.842192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:51:29.854532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:51:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:54:58.291080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:54:58.294867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:54:58.301277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:54:58.309949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:54:58.319106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:54:58.327132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:54:58.339231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:54:58.346586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:54:58.359738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:54:58.371683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:54:58.377454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:54:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:55:42.004222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:55:42.009347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:55:42.014745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:55:42.019505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:55:42.027509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:55:42.030510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:55:42.047941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:55:42.054124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:55:42.061179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:55:42.065469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:55:42.070642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:55:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:56:07.180081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:56:07.187077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:56:07.192075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:56:07.197077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:56:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:56:07.204392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:56:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:56:07.213105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:56:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:56:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:56:07.221181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:56:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:56:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:56:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:56:12.264874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:56:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:58:58.188566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:58:58.192562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:58:58.196556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:58:58.199793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:58:58.207164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:58:58.211160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 11:58:58.227161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:58:58.234644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:58:58.243683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:58:58.248223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 11:58:58.255244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 11:58:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:03:49.644794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:03:49.647783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:03:49.652636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:03:49.657069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:03:49.664657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:03:49.671163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:03:49.675324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:03:49.680323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:03:49.683849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:03:49.690488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:03:49.698769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:03:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:13.858993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:04:13.863033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:04:13.867143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:04:13.872142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:13.880544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:13.886549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:13.893156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:13] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:19.967490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:04:19.970637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:04:19.975017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:04:19.979619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:19.988448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:04:19.990467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:19] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:19.997061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:22.936194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:04:42.805640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:04:42] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:05:59.898670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:05:59] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:06:09.409743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:06:09] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:12:24.212673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:12:24.219973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:12:24.223639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:12:24.234680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:12:24.243489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:12:24.251177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:12:24.255874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:12:24.268544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:12:24.277402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:12:24.285021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:12:24.290716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:12:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:13:36.906631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:13:36.914633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:13:36.923884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:13:36.932669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:13:36] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:13:36.945788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:13:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:13:36.959078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:13:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:13:36.969079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:13:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:13:36] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:13:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:13:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:13:42.333762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:13:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:14:03.737176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:14:05] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:14:11.131726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:14:11] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:14:20.172286 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/02/2025 25/02/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_82411.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/02/2025 25/02/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_44924.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/02/2025 25/02/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_90852.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/02/2025 25/02/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_50264.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:14:21] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_By_PDF/b28fVywZDfSrlOU6kfC9Wz5pNC4at90PLg/679e1f8486671de6de2b0cf5/6601cbefe3300c89ee4ba12e HTTP/1.1" 200 - +INFO:root:2025-02-02 12:14:22.074240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:14:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 12:26:32.898500 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 12:26:32.898500 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 12:26:32.898500 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 12:26:32.898500 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 12:26:32.898500 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 12:31:32.189667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:32.195675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:32.200672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:32.205668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:32.210667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:32.221681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:31:32.246212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:32.254216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:31:32.265832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:31:32.277469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:32.299364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:31:50.036686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:50.041840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:50.046336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:31:50.050593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:50.055165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:31:50.062173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:31:50.068174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:31:54.832601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:31:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:32:13.331640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:32:13] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:32:19.693778 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_07348.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_35752.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:32:20] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF/b28fVywZDfSrlOU6kfC9Wz5pNC4at90PLg/6790dc32e4f3be488c23f86d/6601cbefe3300c89ee4ba12e/6790ddbf46ae0c5adb2696e4,6790ddc146ae0c5adb269733 HTTP/1.1" 200 - +INFO:root:2025-02-02 12:32:21.356367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:32:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:33:12.083788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:12] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:33:14.500598 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_63648.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_52611.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_42498.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_33685.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:14] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF/b28fVywZDfSrlOU6kfC9Wz5pNC4at90PLg/6790dc32e4f3be488c23f86d/6601cbefe3300c89ee4ba12e/6790ddb846ae0c5adb269691,6790ddbf46ae0c5adb2696e4,6790ddc146ae0c5adb269733,6790ddc246ae0c5adb26977d HTTP/1.1" 200 - +INFO:root:2025-02-02 12:33:15.183994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:33:53.385430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:33:53.390159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:33:53.394582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:33:53.400435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:33:53.410449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:33:53.414953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:33:53.418959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 12:33:53.427820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:33:59.702450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:33:59] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:34:13.205868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:34:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 12:34:24.720505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 12:34:24] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 13:57:22.273832 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 13:57:22.273832 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 13:57:22.273832 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 13:57:22.273832 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 13:57:22.274828 : ++ LMS_BAS_URL mysy-hosting.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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 13:57:44.747065 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 13:57:44.748064 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 13:57:44.748064 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 13:57:44.748064 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 13:57:44.748064 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 13:59:18.324047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.455705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.459121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.463808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.465840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.472253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.479857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.495494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.507535 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-02-02 13:59:18.509538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.530811 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.670143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.674161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.676646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.682649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.689631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.696461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.705843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:18.709441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.722474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:18.734356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:18] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:22.272454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.499747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.503066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.507133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.512400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.519244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.529695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.539843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.545341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.556047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.559046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.566051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.579050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.592069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.603631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.607831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.615927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.624195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.630192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.635189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.644485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:25.651247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:25.656680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:29.606199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:29.610997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:29.615760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:29.620795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 13:59:29.628348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:29.633524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:29.642924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:34.829997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 13:59:53.086920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 13:59:53] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 14:03:39.091242 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 14:03:39.092235 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 14:03:39.092235 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 14:03:39.092235 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 14:03:39.093233 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 14:04:23.819828 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 14:04:23.819828 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 14:04:23.820849 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 14:04:23.820849 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 14:04:23.820849 : ++ LMS_BAS_URL mysy-hosting.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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 14:06:12.760855 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 14:06:12.761857 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 14:06:12.761857 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 14:06:12.761857 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 14:06:12.761857 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 14:08:44.213080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:08:44.217076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:08:44.220074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:08:44.224318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:08:44.228314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:08:44.231314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:08:44.243473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:08:44.255783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:08:44.271166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:08:44.275181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:08:44.286170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:08:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:09:43.671501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:09:43.677498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:09:43.684494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:09:43.689705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:09:43.701684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:09:43.707789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:09:43.726225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:09:43.728220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:09:43.734218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:09:43.749679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:09:43.760106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:09:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:18.179015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:18.181578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:18.185728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:18.189738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:18.195090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:18.199560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:18.205787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:18.209245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:18.254677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:18.261203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:18.265417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.008705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.011696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.015623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.021349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.026358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.036456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.200214 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.205920 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.423797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.427289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.433116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.435111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.442768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.451930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.456962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.461962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.473577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.479693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.483922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.487924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.493429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.509702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.516367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.525105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.530182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.542960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.550287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.557858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:27.563902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:27.575691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:32.913277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:32.917281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:32.922775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:32.925744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:10:32.930379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:32.941200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:32.946530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:10:35.674430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:10:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.010093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.018294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.024590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.029686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.034803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.048051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.052087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.071028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.082495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.094800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.098910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.574056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.579509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.587019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.593796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.605188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.616015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.618111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.624717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.641773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:13:03.652060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:13:03.660809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:13:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:17:35.750265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:17:35.756270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:17:35.762256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:17:35.768265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:17:35.772261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:17:35.785791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:17:35.791114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:17:35.801107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:17:35.807817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:17:35.813812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:17:35.821113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:17:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:06.935600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:06.940447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:06.947472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:06.951755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:06.964170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:06.974171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:06.983523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:06.995633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:07.005519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:07.021282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:07.030307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.488918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.494082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.498592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.504407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.514661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.529516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.534718 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.549932 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.742378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.747371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.752883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.758898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.764899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.773608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.782397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.788830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.796069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.802339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.811144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.820473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.831378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.837531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.845548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.854184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.864689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.873505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.882641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.893802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:15.904935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:15.913180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:20.252173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:20.257177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:20.262173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:20.269692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:20.273693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:19:20.282777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:20.290807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:22.717974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:19:44.602543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:19:44] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:20:01.880145 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/02/2025 25/02/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_10385.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/02/2025 25/02/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_98355.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:20:13] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:20:13.225627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:20:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 14:23:34.754529 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 14:23:34.754529 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 14:23:34.755528 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 14:23:34.755528 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 14:23:34.755528 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 14:23:34.896283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:34.901835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:34.910821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:34.917823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:34.929818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:34.937816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:34.955823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:34.972357 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-02-02 14:23:34.975819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:34.997587 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-02-02 14:23:34.999614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.017615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.036608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:35.046613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:35.056604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.079615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.103175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:35.118183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.165176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:35.176170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.228738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.244736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.269734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.290752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.335303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.388345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:35.398016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:35.437143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:37] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:37] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:23:44.575048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:23:44.580048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:44] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:23:44] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 14:28:10.755232 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 14:28:10.755232 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 14:28:10.755232 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 14:28:10.756234 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 14:28:10.756234 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 14:28:15.115557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:15] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:23.310889 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/02/2025 25/02/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_77981.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:23] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:23.999267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.394116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.400121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.402126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.416125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.422122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.430150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.463702 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.469687 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.863422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.868415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.875421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.883420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.893420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.902421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.923422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.943007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.952002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.972001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:36.979005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:36.998006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:37.032020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:37.072577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:37.093865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:37.113865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:37.142423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:37.165422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:37.171427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:37.196425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:28:40.808567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:28:40.813150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:40] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:28:40] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:31:17.857896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:31:17.860889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:31:17.863892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:31:17.867412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:31:17.870411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:31:17.877160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:31:17.887263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:31:17.894624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:31:17.902385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:31:17.912469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:31:17.920965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:31:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:26.148650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:26.151649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:26.155046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:26.160716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:26.167791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:26.175193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:26.180744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:26.189525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:26.192793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:26.201846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:26.210807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:29.797133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:29.803156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:29.805242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:29.809900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:29.819991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:38:29.824078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:29.830431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:38:33.083828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:38:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:48.682817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:48.706483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:48.711351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:48.716939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:48.737087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:48.740421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:48.746775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:48.754745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:48.768226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:48.776616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:48.784978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.102899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.109729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.116259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.126701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.133928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.145220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.181009 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.196549 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.356772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.361555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.364031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.372042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.380039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.386332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.392711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.406105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.416103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.424166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.428249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.436689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.446235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.462740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.469332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.477957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.483636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.497599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.509217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.512217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:40:59.524192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:40:59.543285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:40:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:41:03.370708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:41:03.375481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:41:03.381223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:41:03.386989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:03] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:41:03.395508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:41:03.406574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:41:03.415114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:03] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:03] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:41:06.088929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:41:21.594451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:41:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.056812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.061983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.070397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.075907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.084789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.088030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.093038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.103348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.119834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.126354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.133361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.139534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.149698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.156960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.173560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.182501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.190448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.198446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.217463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.228912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:33.235912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:33.248916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:53.485534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:53.490142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:53.494482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:47:53.500892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:53] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:53.510626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:53] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:53.518993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:53] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:53.525723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:53] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:47:59.660933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:47:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:49:30.916839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:49:31.016174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:49:31.115396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:49:31.290933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:49:31.322107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:49:31.324317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:49:31.355711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:31] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:49:31.512666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:49:31.671330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:49:31.867645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:49:32.077628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:49:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:50:38.841539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:50:38.962884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:50:38.966765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:50:38.980808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:50:39.007810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:50:39.064564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:50:39.228574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:50:39.275248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:50:39.276248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:50:39.302725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:50:39.416549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:50:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:27.199620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:27.206798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:27.210803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:27.218144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:27.221713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:27.232992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:27.240945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:27.245946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:27.256908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:27.264998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:27.272507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:31.386087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:31.392148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:31.396634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:31.402289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:31] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:31.410451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:31.413107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:53:31.421160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:31] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:31] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:31] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:53:33.994968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:53:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:54:35.477483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:54:35.487282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:54:35.490945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:54:35.497736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:54:35.508793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:54:35.511311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:54:35.515602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:54:35.523768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:54:35.529273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:54:35.535445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:54:35.542445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:54:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:55:58.131718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:55:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:55:58.140363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:55:58.145486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:55:58.150022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:55:58.154643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:55:58.158641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:55:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:55:58.167253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:55:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:55:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:55:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:55:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:55:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:56:00.962687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:56:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:57:10.222626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:57:10.226395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:57:10.230987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:57:10.235364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:57:10.242355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:57:10.248357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:57:10.254858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:57:10.264433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:57:10.267432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:57:10.273727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:57:10.278993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:57:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:04.808411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:04.813852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:04.816055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:04.822529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:04.828116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:04.834116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:04.841193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:04.848945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:04.855584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:04.863599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:04.870528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:20.465136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:20.469065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:20.474231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:20.480028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:20.486807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 14:59:20.492795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:20.496820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:23.160360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 14:59:32.407224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 14:59:32] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:01:06.981334 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_49637.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_60146.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:01:10] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:03:24.575584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:03:24] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:04:22.397485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:04:22.403472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:04:22.410477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:04:22.422486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:04:22.435487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:04:22.445499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:04:22.457038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:04:22.468035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:04:22.493039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:04:22.501040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:04:22.510058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:04:42.830631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:42] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:04:46.829020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:04:46] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:06:38.290679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:06:38.294862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:06:38.300337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:06:38.308164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:06:38.314066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:06:38.321147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:06:38.329174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:06:38.332828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:06:38.341216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:06:38.351343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:06:38.358873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:06:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.024851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:13.030245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:13.035267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.049735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.060371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:13.066950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.076945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.084936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:13.092408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.099820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:13.111886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.117884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.135374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.146127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.156881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.170374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.184589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.196594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.211585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.228823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.232823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:13.243869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.260405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:13.271852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:24.652811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:24.658811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:24.663264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:24.674655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:24.683196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:24.696134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:24.700635 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:24.722191 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.031983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.037777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.043152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.050830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.056300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.072240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.086075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.092673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.097565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.108481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.115338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.123550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.131423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.162946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.178950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.193951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.202683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.206686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.224389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.232646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.246614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.251617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:25.274511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:25.280694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:29.726025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:29.733107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:29.736761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:29.748873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:29.755897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:29.762219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:08:29.773216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:33.748294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:08:42.063385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:08:42] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:38.905200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:38.908699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:38.912546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:38.920371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:38.924374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:38.932030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:38.939200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:38.944714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:38.951114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:38.960682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:38.970539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:38.979538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:41.616299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:41.626328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:41.629530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:41.634810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:41.639812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:41.647355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:10:41.651429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:41] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:41] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:44.653605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:10:52.558323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:10:52] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:17:26.656787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:17:26.662587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:17:26.670061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:17:26.676091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:17:26.684102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:17:26.690111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:17:26.693505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:17:26.702466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:17:26.709139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:17:26.719674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:17:26.725868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:17:26.732607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:17:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:19:14.813288 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:19:14.813288 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:19:14.813288 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:19:14.813288 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:19:14.813288 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:19:41.968637 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:19:41.968637 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:19:41.968637 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:19:41.968637 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:19:41.968637 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:20:19.279781 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:20:19.279781 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:20:19.279781 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:20:19.279781 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:20:19.279781 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:23:29.286841 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:23:29.286841 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:23:29.286841 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:23:29.288389 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:23:29.288389 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:25:36.738008 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:25:36.738008 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:25:36.738008 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:25:36.738008 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:25:36.738008 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 15:28:21.053315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:21.067319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:21.084400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:21.087690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:21.090932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:21.094185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:21.097708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:28:25.112135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:28:28.269721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:28.273874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:28.278421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:28.282552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:28.287127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:28:28.290746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:28.294845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:28:28.300960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:28] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:28] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:28:32.128915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:32] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:28:34.881887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:34] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:28:36.830847 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_85087.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_48066.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:45] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e HTTP/1.1" 200 - +INFO:root:2025-02-02 15:28:45.347623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:28:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:29:36.496372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:29:36] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:29:38.700970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:29:38] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:29:40.550757 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : MySy Licence Informatique 
Durée : 36.0   mois (s) 
Lieu de formation :   Bertrange 
Dates de formation :  10/04/2025  14/04/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_02328.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:29:40] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a30631 HTTP/1.1" 200 - +INFO:root:2025-02-02 15:29:40.740437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:29:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:32:05.855427 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:32:05.855427 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:32:05.855427 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:32:05.856427 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:32:05.856427 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 15:32:49.255424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:32:49.258781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:32:49.261781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:32:49.264769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:32:49.269243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:32:49.273594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:32:49.290613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:32:49.291613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:32:49.297611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:32:49.308141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:32:49.313138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:32:49.320147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:32:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:33:43.068534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:33:43.072553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:33:43.076540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:33:43.080540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:33:43.085549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:33:43.089538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:33:43.096696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:33:43.103280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:33:43.107740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:33:43.113333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:33:43.116799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:33:43.125440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:33:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:37:11.202150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:37:11.207297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:37:11.212529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:37:11.266714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:37:11.271786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:37:11.347205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:37:11.402936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:37:16.329459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:37:34.206806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:34] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:37:46.816661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:46] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:37:47.066150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:37:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.383381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.391834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.407259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.419585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.432540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.446592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.478447 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.495428 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.749682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.756485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.764233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.777219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.783218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.791079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.811649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.822649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.827643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.849548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.860496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:18.871100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.892425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.918471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.933462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.951151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:18.994629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:19.003279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:19] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:19.022711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:19] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:19.043437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:39:25.701277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:39:25.704280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:25] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:39:25] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:37.966873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:42:37.970878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:42:37.976229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:42:37.982458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:37.987331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:37.993609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:37] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:38.004496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:38.013216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:38.022428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:38.029441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:38.036325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:42:38.044566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:38.248618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:42:38.254806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:45.911574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:42:54.156778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:42:54] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:43:09.315030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:43:12.171719 : Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 5066 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:12] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:43:25.185227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:43:25.193630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:43:25.202200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:43:25.217203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:43:25.224651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:43:25.234360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:43:25.243944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:43:28.568091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:43:40.237234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:40] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:43:43.399633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:43:43.409427 : Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 5066 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:43:43] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:46:02.089364 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:46:02.090377 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:46:02.090377 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:46:02.090377 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:46:02.090377 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 15:46:02.199342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:46:02.203714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:02] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:46:03.502128 : Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 5092 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:03] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:46:42.300411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:46:42.304117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:46:42.308807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:46:42.312879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:46:42.319297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:46:42.330525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:46:42.338772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:42] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:46:47.106515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:46:57.069805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:46:57] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:47:07.030526 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_62094.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_05255.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:47:09] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:47:09.594625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:47:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:48:09.103064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:48:09] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:48:17.307845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:48:17] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:48:17.576401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:48:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:50:52.895762 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:50:52.895762 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:50:52.896766 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:50:52.896766 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:50:52.896766 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:52:00.896342 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:52:00.897344 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:52:00.897344 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:52:00.897344 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:52:00.897344 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:52:28.768699 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:52:28.768699 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:52:28.769701 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:52:28.769701 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:52:28.769701 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:53:26.868382 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:53:26.870382 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:53:26.870382 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:53:26.870382 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:53:26.870382 : ++ LMS_BAS_URL mysy-hosting.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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:54:55.598967 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:54:55.598967 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:54:55.598967 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:54:55.598967 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:54:55.598967 : ++ LMS_BAS_URL mysy-hosting.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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:55:54.964952 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:55:54.964952 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:55:54.964952 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:55:54.964952 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:55:54.964952 : ++ LMS_BAS_URL mysy-hosting.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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 15:56:23.295069 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 15:56:23.295069 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 15:56:23.295069 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 15:56:23.295069 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 15:56:23.295069 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 15:57:59.582343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:57:59.585536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:57:59.588532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:57:59.593098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:57:59.597096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:57:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:57:59.604702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 15:57:59.611716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:57:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:57:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:57:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:57:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:57:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:57:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:58:02.034404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:58:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:58:15.369685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:58:15] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 15:58:17.713270 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_72906.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_03805.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 15:58:18] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.643724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.647204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.650573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.653768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.655766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.658807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.695868 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.704801 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.909530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.913211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.918399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.924726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.931203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.936322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.945586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.947591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.954941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.958696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.964208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.975579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:56.977790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.991130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:56.997529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:57.002362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:57.007915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:57.012037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:57.026015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:57.030950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:57.037546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:57.043675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:04:57.057712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:04:57.062864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:04:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:05:00.245985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:05:00.250122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:05:00.254341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:05:00.258415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:05:00.263896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:05:00.266987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:05:00.270577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:05:02.725051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:05:10.364890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:10] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:05:12.675700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:05:12] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc346ae0c5adb2697c7 HTTP/1.1" 500 - +INFO:root:2025-02-02 16:08:22.651477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:22.657816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:22.666410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:22.673423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:22.679870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:22.695894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:22.698897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:22.709915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:22.713542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:22.721544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:22.725800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:22.733275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:23.194174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:23.199790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:23.205930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:23.212828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:23.221338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:23.232304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:23.238807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:23.248388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:23.254676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:23.269685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:23.277308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:23.282804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:25.485403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:25.489900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:25.495807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:08:25.503576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:25.508723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:25.519064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:25.525078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:28.773619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:40.323726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:40] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:08:42.454561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:08:42] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:root:2025-02-02 16:10:30.623987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:30] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:30] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:30] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:30] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:30] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:root:2025-02-02 16:10:33.584873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:10:33.589366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:10:33.596483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:10:33.602191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:10:33.609406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:10:33.618221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:10:33.627567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:10:33.633698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:10:33.642369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:10:33.650597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:10:33.653735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:10:33.666410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:10:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:13:09.215135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:13:09] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:13:09] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:13:09] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:13:09] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:root:2025-02-02 16:13:19.005691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:13:19] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:13:19] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:13:19] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:13:19] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +INFO:root:2025-02-02 16:15:01.075867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:15:01] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:15:03.268028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:15:03] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d,6790ddc346ae0c5adb2697c7 HTTP/1.1" 500 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 16:16:23.279216 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 16:16:23.279216 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 16:16:23.279216 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 16:16:23.279216 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 16:16:23.279216 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 16:16:48.321159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:16:49.475408 : Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF La valeur 'tab_ids' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:16:49] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:16:49] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:16:49] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:16:49] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:16:49] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 16:17:44.886699 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 16:17:44.886699 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 16:17:44.886699 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 16:17:44.886699 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 16:17:44.886699 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 16:17:54.415405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:17:54] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:17:54] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:17:54] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:17:54] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 16:18:40.445820 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 16:18:40.446822 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 16:18:40.446822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 16:18:40.446822 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 16:18:40.446822 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 16:18:40.485763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:18:40] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:18:40] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:18:40] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:18:40] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:18:40] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 16:20:05.115374 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 16:20:05.116377 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 16:20:05.116377 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 16:20:05.116377 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 16:20:05.116377 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 16:20:05.173310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:20:05] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:20:05] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:20:05] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:20:05] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 16:20:50.582768 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 16:20:50.582768 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 16:20:50.583771 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 16:20:50.583771 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 16:20:50.583771 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 16:20:50.683345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:20:52.011450 : Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF La valeur 'tab_ids' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:20:52] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:20:52] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:20:52] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:20:52] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 304 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 16:21:44.909263 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 16:21:44.910264 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 16:21:44.910264 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 16:21:44.910264 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 16:21:44.910264 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 16:21:45.012430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:21:45] "GET /myclass/api/Preparerrrrr/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 404 - +INFO:root:2025-02-02 16:21:45.020425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:21:46.774668 : Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF La valeur 'tab_ids' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:21:46] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:21:47] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:21:47] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 304 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:21:47] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 - +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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 16:22:38.102291 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 16:22:38.103290 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 16:22:38.103290 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 16:22:38.103290 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 16:22:38.103290 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-02 16:22:38.143985 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_70651.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:22:38] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d HTTP/1.1" 200 - +INFO:root:2025-02-02 16:22:59.535340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:22:59.539387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:22:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:22:59.547847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:22:59.551045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:22:59.555050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:22:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:22:59.559479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:22:59.562491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:22:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:22:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:22:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:22:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:22:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:23:02.951720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:23:02.955079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:23:02.959912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:23:02.963878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:23:02.972916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:23:02.976736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:23:02.986993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:23:02.995631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:23:05.150260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:23:21.199416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:21] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:23:28.881413 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_08174.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:29] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddc246ae0c5adb26977d,6790ddc346ae0c5adb2697c7 HTTP/1.1" 200 - +INFO:root:2025-02-02 16:23:52.677710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:52] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:23:55.271798 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_31067.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 02/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_76382.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:23:55] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddbf46ae0c5adb2696e4,6790ddc346ae0c5adb2697c7 HTTP/1.1" 200 - +INFO:root:2025-02-02 16:24:14.575396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:24:14] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:24:17.148234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:24:17] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/mNEIAAgw5zITnKlzP5QBUnk4l72ufZKjHQ/6790dc32e4f3be488c23f86d/65f05a36c544f77525a3062e/6790ddb846ae0c5adb269691 HTTP/1.1" 200 - +INFO:root:2025-02-02 16:24:38.821486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:24:38.868491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:24:39] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:24:39] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:24:54.232567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:24:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:02.767002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:02.770276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:02.774941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:02.779679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:02.789623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:02.815619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:02.830640 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:02.835147 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:04.779884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:04.785133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:04.789689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:04.796596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:04.806914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:04.809273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:04.826693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:04.831908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:04.857815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:04.870584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:04.876961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:04.894626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:04.925904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:04.968991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:04.987155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:05.002676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:05] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:05.025831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:05.049707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:05] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:05.061030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:05.077191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-02 16:25:54.986250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-02 16:25:54.991252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:55] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2025 16:25:55] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-02 16:30:14.712296 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-02 16:30:14.712296 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-02 16:30:14.712296 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-02 16:30:14.712296 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-02 16:30:14.712296 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 diff --git a/Session_Formation.py b/Session_Formation.py index f73c6bd..83b0b1d 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -761,7 +761,8 @@ def GetSessionFormation(diction): 'from': 'myclass', 'localField': 'class_internal_url', 'foreignField': 'internal_url', - 'pipeline': [{'$project': {'title': 1, 'lms_class_code':1, 'external_code':1, 'published':1, 'recyclage_delai':1, 'recyclage_periodicite':1}}], + 'pipeline': [{'$project': {'title': 1, 'lms_class_code':1, 'external_code':1, 'published':1, 'recyclage_delai':1, 'recyclage_periodicite':1, + 'lms_class_code':1}}], 'as': 'myclass' } } @@ -781,6 +782,7 @@ def GetSessionFormation(diction): lms_class_code = "" class_external_code = "" class_ispublished = "0" + class_lms_class_code = "" if ('myclass' in retval.keys() and len(retval['myclass']) > 0): @@ -798,10 +800,14 @@ def GetSessionFormation(diction): if ("published" in retval['myclass'][0].keys()): class_ispublished = retval['myclass'][0]['published'] + if ("lms_class_code" in retval['myclass'][0].keys()): + class_lms_class_code = retval['myclass'][0]['lms_class_code'] + user['title'] = title user['lms_class_code'] = lms_class_code user['class_external_code'] = class_external_code user['class_ispublished'] = class_ispublished + user['class_lms_class_code'] = class_lms_class_code if ("invoiced_statut" in retval.keys()): user['invoiced_statut'] = retval['invoiced_statut'] @@ -949,7 +955,8 @@ def Get_Given_SessionFormation_From_Id(diction): 'from': 'myclass', 'localField': 'class_internal_url', 'foreignField': 'internal_url', - 'pipeline': [{'$project': {'title': 1, 'lms_class_code':1, 'external_code':1, 'published':1, 'recyclage_delai':1, 'recyclage_periodicite':1}}], + 'pipeline': [{'$project': {'title': 1, 'lms_class_code':1, 'external_code':1, 'published':1, 'recyclage_delai':1, 'recyclage_periodicite':1, + 'lms_class_code':1}}], 'as': 'myclass' } } @@ -969,6 +976,7 @@ def Get_Given_SessionFormation_From_Id(diction): lms_class_code = "" class_external_code = "" class_ispublished = "0" + class_lms_class_code = "" if ('myclass' in retval.keys() and len(retval['myclass']) > 0): @@ -986,10 +994,14 @@ def Get_Given_SessionFormation_From_Id(diction): if ("published" in retval['myclass'][0].keys()): class_ispublished = retval['myclass'][0]['published'] + if ("lms_class_code" in retval['myclass'][0].keys()): + class_lms_class_code = retval['myclass'][0]['lms_class_code'] + user['title'] = title user['lms_class_code'] = lms_class_code user['class_external_code'] = class_external_code user['class_ispublished'] = class_ispublished + user['class_lms_class_code'] = class_lms_class_code if ("invoiced_statut" in retval.keys() ): user['invoiced_statut'] = retval['invoiced_statut'] @@ -1436,7 +1448,8 @@ def GetAllValideSessionPartner_List(diction): 'foreignField':'internal_url', 'pipeline': [{'$match': filt_class_partner_recid}, {'$project': {'title': 1, 'domaine': 1, 'duration': 1, 'duration_unit': 1, 'external_code':1, - 'published':1, 'recyclage_delai':1, 'recyclage_periodicite':1}}], + 'published':1, 'recyclage_delai':1, 'recyclage_periodicite':1, + 'lms_class_code':1}}], 'as': 'myclass_collection' } } @@ -1552,6 +1565,11 @@ def GetAllValideSessionPartner_List(diction): else: val['domaine'] = "" + if ("lms_class_code" in retVal['myclass_collection'][0].keys()): + val['class_lms_class_code'] = retVal['myclass_collection'][0]['lms_class_code'] + else: + val['class_lms_class_code'] = "" + val['class_id'] = retVal['myclass_collection'][0]['_id'] val['class_external_code'] = retVal['myclass_collection'][0]['external_code'] @@ -1782,7 +1800,8 @@ def GetAllValideSessionPartner_List_filter_like(diction): 'localField': 'class_internal_url', 'foreignField': 'internal_url', 'pipeline': [{'$match': { '$and' : [ filt_class_title, filt_class_internal_url, filt_class_external_code, {'partner_owner_recid':str(my_partner['recid'])} ]} }, {'$project': {'title': 1, 'domaine':1, - 'duration':1, 'duration_unit':1, 'external_code':1, 'recyclage_delai':1, 'recyclage_periodicite':1}}], + 'duration':1, 'duration_unit':1, 'external_code':1, 'recyclage_delai':1, 'recyclage_periodicite':1, + 'lms_class_code':1}}], 'as': 'myclass_collection' } } @@ -1906,6 +1925,10 @@ def GetAllValideSessionPartner_List_filter_like(diction): else: val['domaine'] = "" + if ("lms_class_code" in retVal['myclass_collection'][0].keys()): + val['class_lms_class_code'] = retVal['myclass_collection'][0]['lms_class_code'] + else: + val['class_lms_class_code'] = "" val['class_external_code'] = retVal['myclass_collection'][0]['external_code'] @@ -2116,7 +2139,8 @@ def GetAllValideSessionPartner_List_no_filter(diction): 'foreignField': 'internal_url', 'pipeline': [{'$match': {'partner_owner_recid': str(my_partner['recid'])} }, {'$project': {'title': 1, 'domaine': 1, - 'duration': 1, 'duration_unit': 1, 'external_code':1, 'recyclage_delai':1, 'recyclage_periodicite':1}}], + 'duration': 1, 'duration_unit': 1, 'external_code':1, 'recyclage_delai':1, 'recyclage_periodicite':1, + 'lms_class_code':1}}], 'as': 'myclass_collection' } } @@ -2222,6 +2246,10 @@ def GetAllValideSessionPartner_List_no_filter(diction): else: val['domaine'] = "" + if ("lms_class_code" in retVal['myclass_collection'][0].keys()): + val['class_lms_class_code'] = retVal['myclass_collection'][0]['lms_class_code'] + else: + val['class_lms_class_code'] = "" val['class_external_code'] = retVal['myclass_collection'][0]['external_code'] @@ -4428,9 +4456,12 @@ def Delete_SessionFormation(diction): history_event_dict['related_collection_recid'] = str(session_data['_id']) history_event_dict['action_date'] = str(now) - local_session_info = "Id Session : " + str(session_data['_id']) + local_session_info = "" + if ("code_session" in session_data.keys()): local_session_info = local_session_info + ", " + session_data["code_session"] + else: + local_session_info = "Id Session : " + str(session_data['_id']) history_event_dict['action_description'] = "Suppression de " + str(local_session_info) local_status, local_retval = mycommon.Collection_Historique.Add_Historique_Event(history_event_dict) @@ -4638,7 +4669,8 @@ def Is_Corresponding_SessionFormation(diction): 'from': 'myclass', 'localField': 'class_internal_url', 'foreignField': 'internal_url', - 'pipeline': [{'$project': {'title': 1, 'lms_class_code':1, 'recyclage_delai':1, 'recyclage_periodicite':1}}], + 'pipeline': [{'$project': {'title': 1, 'lms_class_code':1, 'recyclage_delai':1, 'recyclage_periodicite':1, + 'lms_class_code':'1'}}], 'as': 'myclass' } } @@ -4969,6 +5001,202 @@ def Prepare_and_Send_Convention_From_Session_By_Email(tab_files, Folder, diction + return True, " Les conventions ont été correctement envoyées par emails" + + 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 d'envoyer les conventions par email " + + +""" +La meme que la précedente mais pour un groupe d'inscrit +/!\ : Les convention entreprise se font par CLIENT. +On utilise l'_id des inscrit pour aller chercher la liste des clients concernée. + +Donc cela veut dire que mm si je n'ai pas selectionné un inscrit, si il a meme client qu'un autre inscrit qui est +selectionné, alors la convention mentionnera la liste des 2 inscrits, car tous les 2 releve de la meme entreprise. +""" +def Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email(tab_files, Folder, diction): + try: + + field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'email_test', + 'email_production', 'tab_ids'] + + 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, " La valeur '" + val + "' n'est pas presente dans liste" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verifier que la session est valide + is_session_valide = MYSY_GV.dbname['session_formation'].count_documents( + {'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_session_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + my_inscription_ids = "" + if ("tab_ids" in diction.keys()): + if diction['tab_ids']: + my_inscription_ids = diction['tab_ids'] + + tab_my_inscription_Object_ids = [] + + tab_my_inscription_ids = str(my_inscription_ids).split(",") + for my_inscription_id in tab_my_inscription_ids: + tab_my_inscription_Object_ids.append(ObjectId(str(my_inscription_id))) + + # Verifier qu'il ya bien des inscriptions valides dans la session pour le client + liste_client_rattachement_id = MYSY_GV.dbname['inscription'].distinct("client_rattachement_id", + {'session_id':str(diction['session_id']), + 'status': '1', + '_id': {'$in': tab_my_inscription_Object_ids}, + 'partner_owner_recid': str( + my_partner['recid']), + "client_rattachement_id": { '$ne': ''} + } + ) + + + print(" ### la liste des liste_client_rattachement_id = ", liste_client_rattachement_id) + + + # Sauvegarde des fichiers joints depuis le front + tab_saved_file_full_path = [] + for file in tab_files: + status, saved_file_full_path = mycommon.Upload_Save_PDF_IMG_File(file, Folder) + if (status is False): + mycommon.myprint("Impossible de récupérer correctement le fichier à importer") + return False, "Impossible de récupérer correctement le fichier à importer" + + tab_saved_file_full_path.append(saved_file_full_path) + + print(" #### tab_saved_file_full_path = ", tab_saved_file_full_path) + + # Recupération des données du modèle de document + is_convention_by_client = "0" + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + if( courrier_template_data and "edit_by_client" in courrier_template_data.keys() and courrier_template_data['edit_by_client'] == "1"): + is_convention_by_client = "1" + + if( str(is_convention_by_client) == "1" ): + # Envoie des conventions pour les inscrits AVEC client_id (conventions d'entreprise) + for single_client in liste_client_rattachement_id : + print(" Traintement du client_id = ", single_client) + + # Recuperation des contacts de communication du client + local_diction = {} + local_diction['token'] = diction['token'] + local_diction['_id'] = str(single_client) + + #print(" ##### local_diction = ", local_diction) + local_status, partner_client_contact_communication = partner_client.Get_Partner_Client_Communication_Contact(local_diction) + + + if (local_status is False): + mycommon.myprint(" Impossible de récupérer les contacts de communication du client ") + return False, " Impossible de récupérer les contacts de communication du client " + + #print(" ### partner_client_contact_communication = ", partner_client_contact_communication) + tab_local_email_production = [] + for tmp in partner_client_contact_communication: + tmp_JSON = ast.literal_eval(tmp) + if ("email" in tmp_JSON.keys()): + tab_local_email_production.append(str(tmp_JSON["email"])) + + list_local_email_production = ",".join(tab_local_email_production) + + new_diction_client = {} + new_diction_client['partner_client_id'] = single_client + new_diction_client['token'] = diction['token'] + new_diction_client['courrier_template_id'] = diction['courrier_template_id'] + new_diction_client['email_test'] = diction['email_test'] + new_diction_client['email_production'] = str(list_local_email_production) + new_diction_client['session_id'] = diction['session_id'] + new_diction_client['request_digital_signature'] = "" + if( "request_digital_signature" in diction.keys() ): + new_diction_client['request_digital_signature'] = diction['request_digital_signature'] + + + #print(" ##### new_diction_client 0102 = ", new_diction_client) + + local_status, local_retval = Inscription_mgt.Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_saved_file_full_path, Folder, new_diction_client) + + if( local_status is False): + mycommon.myprint(" WARNING : impossible d'envoyer la convention au client : "+str( single_client)) + + elif (str(is_convention_by_client) == "0"): + liste_inscription_no_client = MYSY_GV.dbname['inscription'].find( + {"$or": [{'session_id': str(diction['session_id']), + 'status': '1', + '_id': {'$in': tab_my_inscription_Object_ids}, + 'partner_owner_recid': str(my_partner['recid']), + "client_rattachement_id": '' + }, + {'session_id': str(diction['session_id']), + 'status': '1', + '_id': {'$in': tab_my_inscription_Object_ids}, + 'partner_owner_recid': str(my_partner['recid']), + 'client_rattachement_id': {'$exists': False} + }] + } + ) + # Envoie des conventions pour les inscrits SANS client_id (conventions individuelles) + print(" ### is_convention_by_client ==== 0 : ") + print(" ### LIST traitement de l'inscrit : ", liste_inscription_no_client) + + + for single_inscrit_no_client in liste_inscription_no_client : + print(" ### traitement de l'inscrit : ",single_inscrit_no_client ) + #field_list_obligatoire = [ 'token', 'inscription_id', 'courrier_template_id', 'email_test', 'email_production' ] + new_diction_no_client = {} + new_diction_no_client['token'] = str(diction['token']) + new_diction_no_client['inscription_id'] = str(single_inscrit_no_client['_id']) + new_diction_no_client['courrier_template_id'] = diction['courrier_template_id'] + + new_diction_no_client['session_id'] = diction['session_id'] + new_diction_no_client['email_test'] = diction['email_test'] + new_diction_no_client['email_production'] = diction['email_production'] + new_diction_no_client['request_digital_signature'] = "" + if ("request_digital_signature" in diction.keys()): + new_diction_no_client['request_digital_signature'] = diction['request_digital_signature'] + + print(" ##### new_diction_no_client = ", new_diction_no_client) + local_status, local_retval = Inscription_mgt.Sent_Convention_Stagiaire_By_Email(tab_saved_file_full_path, Folder, new_diction_no_client) + + if (local_status is False): + mycommon.myprint(" WARNING impossible d'envoyer la convention a l'apprenant : " + str(single_inscrit_no_client['_id']) ) + + else: + return False, " Vous devez definir si la convention est individuelle ou par client" + + # Traitement de l'eventuel fichier joint + tab_files_to_attache_to_mail = [] + + + return True, " Les conventions ont été correctement envoyées par emails" except Exception as e: @@ -5480,6 +5708,199 @@ def Prepare_and_Send_Convention_From_Session_By_PDF(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de générer les conventions par pdf PDF " +""" +La meme que la précedente sauf qu'on fourni une liste d'inscrit en argument +/!\ : Les convention entreprise se font par CLIENT. +On utilise l'_id des inscrit pour aller chercher la liste des clients concernée. + +Donc cela veut dire que mm si je n'ai pas selectionné un inscrit, si il a meme client qu'un autre inscrit qui est +selectionné, alors la convention mentionnera la liste des 2 inscrits, car tous les 2 releve de la meme entreprise. +""" +def Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF(diction): + try: + field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'tab_ids'] + + 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, " La valeur '" + val + "' n'est pas presente dans liste" + elif str(diction[val]).strip() == "": + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le champ obligatoire '" + val + "' est vide ") + return False, " Le champ obligatoire '" + val + "' est vide " + + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verifier que la session est valide + is_session_valide = MYSY_GV.dbname['session_formation'].count_documents( + {'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_session_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + my_inscription_ids = "" + if ("tab_ids" in diction.keys()): + if diction['tab_ids']: + my_inscription_ids = diction['tab_ids'] + + tab_my_inscription_Object_ids = [] + + tab_my_inscription_ids = str(my_inscription_ids).split(",") + for my_inscription_id in tab_my_inscription_ids: + tab_my_inscription_Object_ids.append(ObjectId(str(my_inscription_id))) + + # Stokage des nom de fichier à zipper + list_file_name_to_zip = [] + + # Verifier qu'il ya bien des inscriptions valides dans la session pour le client + + liste_client_rattachement_id = MYSY_GV.dbname['inscription'].distinct("client_rattachement_id", + {'session_id':str(diction['session_id']), + 'status': '1', + '_id': { + '$in': tab_my_inscription_Object_ids}, + 'partner_owner_recid': str( + my_partner['recid']), + "client_rattachement_id": { '$ne': ''} + } + ) + + print(" ### la liste des liste_client_rattachement_id = ", liste_client_rattachement_id) + + # Recuperer inscriptions indépenantes, donc pas liée à un client + + + liste_inscription_no_client = MYSY_GV.dbname['inscription'].find({"$or": [{'session_id': str(diction['session_id']), + 'status': '1', + '_id': { + '$in': tab_my_inscription_Object_ids}, + 'partner_owner_recid': str(my_partner['recid']), + "client_rattachement_id": '' + }, + {'session_id': str(diction['session_id']), + 'status': '1', + '_id': { + '$in': tab_my_inscription_Object_ids}, + 'partner_owner_recid': str(my_partner['recid']), + 'client_rattachement_id': {'$exists': False} + }] + } + ) + + """ + for val in liste_inscription_no_client: + print(" ### la liste des liste_inscription_no_client = ", str(val)) + """ + + + + # Recupération des données du modèle de document + is_convention_by_client = "0" + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + if (courrier_template_data and "edit_by_client" in courrier_template_data.keys() and courrier_template_data[ + 'edit_by_client'] == "1"): + is_convention_by_client = "1" + + if (str(is_convention_by_client) == "1"): + # Envoie des conventions pour les inscrits AVEC client_id + for val in liste_client_rattachement_id: + local_diction = {} + # field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'client_id'] + local_diction['token'] = diction['token'] + local_diction['session_id'] = diction['session_id'] + local_diction['courrier_template_id'] = diction['courrier_template_id'] + local_diction['client_id'] = str(val) + + + local_status, local_full_file_name = Create_Convention_By_Client_PDF(local_diction) + if( local_status is False): + return local_status, local_full_file_name + else: + list_file_name_to_zip.append(str(local_full_file_name)) + + + + + elif (str(is_convention_by_client) == "0"): + liste_inscription_no_client = MYSY_GV.dbname['inscription'].find( + {"$or": [{'session_id': str(diction['session_id']), + 'status': '1', + '_id': {'$in': tab_my_inscription_Object_ids}, + 'partner_owner_recid': str(my_partner['recid']), + "client_rattachement_id": '' + }, + {'session_id': str(diction['session_id']), + 'status': '1', + '_id': {'$in': tab_my_inscription_Object_ids}, + 'partner_owner_recid': str(my_partner['recid']), + 'client_rattachement_id': {'$exists': False} + }] + } + ) + for val in liste_inscription_no_client: + local_diction = {} + # field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'client_id'] + local_diction['token'] = diction['token'] + local_diction['session_id'] = diction['session_id'] + local_diction['courrier_template_id'] = diction['courrier_template_id'] + local_diction['inscription_id'] = str(val['_id']) + + #print(" #### Traitemnt de local_diction bb = ", local_diction) + local_status, local_full_file_name = Create_Convention_By_Stagiaire_PDF(local_diction) + if( local_status is False): + return local_status, local_full_file_name + else: + list_file_name_to_zip.append(str(local_full_file_name)) + + + # Create a ZipFile Object + todays_date = str(date.today().strftime("%d/%m/%Y")) + ts = datetime.now().timestamp() + ts = str(ts).replace(".", "").replace(",", "")[-3:] + zip_file_name = str(MYSY_GV.TEMPORARY_DIRECTORY_V2)+"List_Convention_session_"+str(diction['session_id'])+"_"+str(ts)+".zip" + + with ZipFile(zip_file_name, 'w') as zip_object: + for pdf_files in list_file_name_to_zip : + #print(" ### fichier a zipper = ", pdf_files) + zip_object.write(str(pdf_files)) + + + if os.path.exists(zip_file_name): + # print(" ### ok os.path.exists(outputFilename) "+str(outputFilename)) + + return True, send_file(zip_file_name, as_attachment=True) + + + return False, " Impossible de générer les conventions par pdf PDF (1) " + + + + 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 générer les conventions par pdf PDF " """ @@ -6234,6 +6655,129 @@ def Prepare_and_Send_Convocation_From_Session_By_PDF(diction): return False, " Impossible de générer les conventions par pdf PDF " +""" +La meme que la précedente mais juste pour une liste d'inscrit""" +def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF(diction): + try: + field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'tab_ids'] + + 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, " La valeur '" + val + "' n'est pas presente dans liste" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verifier que la session est valide + is_session_valide = MYSY_GV.dbname['session_formation'].count_documents( + {'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_session_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + # Stokage des nom de fichier à zipper + list_file_name_to_zip = [] + + my_inscription_ids = "" + if ("tab_ids" in diction.keys()): + if diction['tab_ids']: + my_inscription_ids = diction['tab_ids'] + + tab_my_inscription_Object_ids = [] + + tab_my_inscription_ids = str(my_inscription_ids).split(",") + for my_inscription_id in tab_my_inscription_ids: + tab_my_inscription_Object_ids.append(ObjectId(str(my_inscription_id))) + + + """ + for val in liste_inscription_no_client: + print(" ### la liste des liste_inscription_no_client = ", str(val)) + """ + + + + # Recupération des données du modèle de document + is_convention_by_client = "0" + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + if (courrier_template_data and "edit_by_client" in courrier_template_data.keys() and courrier_template_data[ + 'edit_by_client'] == "1"): + is_convention_by_client = "1" + + + if (str(is_convention_by_client) == "0"): + liste_participants = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + '_id': {'$in': tab_my_inscription_Object_ids}, + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + } + ) + for val in liste_participants: + local_diction = {} + # field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'client_id'] + local_diction['token'] = diction['token'] + local_diction['session_id'] = diction['session_id'] + local_diction['courrier_template_id'] = diction['courrier_template_id'] + local_diction['inscription_id'] = str(val['_id']) + + print(" #### Traitemnt de local_diction bb = ", local_diction) + local_status, local_full_file_name = Create_Convocation_By_Stagiaire_PDF(local_diction) + if( local_status is False): + return local_status, local_full_file_name + else: + list_file_name_to_zip.append(str(local_full_file_name)) + + + # Create a ZipFile Object + todays_date = str(date.today().strftime("%d/%m/%Y")) + ts = datetime.now().timestamp() + ts = str(ts).replace(".", "").replace(",", "")[-3:] + zip_file_name = str(MYSY_GV.TEMPORARY_DIRECTORY_V2)+"List_Convocation_session_"+str(diction['session_id'])+"_"+str(ts)+".zip" + + with ZipFile(zip_file_name, 'w') as zip_object: + for pdf_files in list_file_name_to_zip : + #print(" ### fichier a zipper = ", pdf_files) + zip_object.write(str(pdf_files)) + + + if os.path.exists(zip_file_name): + # print(" ### ok os.path.exists(outputFilename) "+str(outputFilename)) + + return True, send_file(zip_file_name, as_attachment=True) + + + return False, " Impossible de générer les conventions par pdf PDF (1) " + + + + 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 générer les conventions par pdf PDF " + + + + """ Cette fonction créer une convocation PDF par participant à une session de formation @@ -6541,6 +7085,147 @@ def Prepare_and_Send_Convocation_From_Session_By_Email(tab_files, Folder, dictio return False, " Impossible d'envoyer les conventions par email " +""" +La meme que la précedentes, a la difference qu'on envoie les convocation +pour une liste d'inscrits bien précise. + +""" +def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email(tab_files, Folder, diction): + try: + + field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'email_test', 'email_production', + 'tab_ids'] + + 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, " La valeur '" + val + "' n'est pas presente dans liste" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verifier que la session est valide + is_session_valide = MYSY_GV.dbname['session_formation'].count_documents( + {'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_session_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + my_inscription_ids = "" + if ("tab_ids" in diction.keys()): + if diction['tab_ids']: + my_inscription_ids = diction['tab_ids'] + + tab_my_inscription_Object_ids = [] + + tab_my_inscription_ids = str(my_inscription_ids).split(",") + for my_inscription_id in tab_my_inscription_ids: + tab_my_inscription_Object_ids.append(ObjectId(str(my_inscription_id))) + + # Verifier qu'il ya bien des inscriptions valides dans la session pour le client + liste_participants = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + '_id': {'$in': tab_my_inscription_Object_ids}, + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + } + ) + + + print(" ### la liste des liste_participants = ", liste_participants) + + + # Sauvegarde des fichiers joints depuis le front + tab_saved_file_full_path = [] + for file in tab_files: + status, saved_file_full_path = mycommon.Upload_Save_PDF_IMG_File(file, Folder) + if (status is False): + mycommon.myprint("Impossible de récupérer correctement le fichier à importer") + return False, "Impossible de récupérer correctement le fichier à importer" + + tab_saved_file_full_path.append(saved_file_full_path) + + print(" #### tab_saved_file_full_path = ", tab_saved_file_full_path) + + # Recupération des données du modèle de document + is_convention_by_client = "0" + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + if( courrier_template_data and "edit_by_client" in courrier_template_data.keys() and courrier_template_data['edit_by_client'] == "1"): + is_convention_by_client = "1" + + + if (str(is_convention_by_client) == "0"): + liste_inscription = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + '_id': {'$in': tab_my_inscription_Object_ids}, + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + } + ) + + print(" ### LIST liste_inscription: ", liste_inscription) + + + for single_inscrit in liste_inscription : + print(" ### convocation traitement de l'inscrit : ",single_inscrit ) + #field_list_obligatoire = [ 'token', 'inscription_id', 'courrier_template_id', 'email_test', 'email_production' ] + new_diction_no_client = {} + new_diction_no_client['token'] = str(diction['token']) + new_diction_no_client['inscription_id'] = str(single_inscrit['_id']) + new_diction_no_client['courrier_template_id'] = diction['courrier_template_id'] + + new_diction_no_client['session_id'] = diction['session_id'] + new_diction_no_client['email_test'] = diction['email_test'] + new_diction_no_client['email_production'] = diction['email_production'] + + print(" ##### new_diction_no_client = ", new_diction_no_client) + local_status, local_retval = Sent_Convocation_Stagiaire_By_Email(tab_saved_file_full_path, Folder, new_diction_no_client) + + if (local_status is False): + mycommon.myprint(" WARNING impossible d'envoyer la convocation a l'apprenant : " + str(single_inscrit['_id']) ) + + + # Traitement de l'eventuel fichier joint + tab_files_to_attache_to_mail = [] + + """ + 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history + """ + """local_status, local_retval = module_editique.Editic_Log_History_Action(my_partner, courrier_template_data, + str(diction['session_id']), "inscription", str(single_inscrit['_id']))""" + + local_status, local_retval = module_editique.Editic_Log_History_Action_From_courrier_template_type_document_ref_interne( + my_partner, "CONVOCATION_STAGIAIRE", str(diction['session_id']), 'inscription', + str(single_inscrit['_id']), + str(str(courrier_template_data['_id']))) + + + return True, " Les convocations ont été correctement envoyées par emails" + + 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 d'envoyer les conventions par email " + + + """ Envoi d'une convocation pour un participant donné par email Si le participants est rattaché à un client , alors on va mettre en copie de @@ -6944,7 +7629,7 @@ def Sent_Convocation_Stagiaire_By_Email(tab_files, Folder, diction): val = smtpserver.send_message(msg) smtpserver.close() - print(" Email envoyé " + str(val)) + print(" Email envoyé 66" + str(val)) """ # Ajout de l'evenement dans l'historique @@ -6958,7 +7643,7 @@ def Sent_Convocation_Stagiaire_By_Email(tab_files, Folder, diction): history_event_dict['related_collection'] = "inscription" history_event_dict['related_collection_recid'] = str(diction['inscription_id']) history_event_dict['action_date'] = str(now) - history_event_dict['action_description'] = "Convention envoyée par email à la liste : " + str( + history_event_dict['action_description'] = "Convocation envoyée par email à la liste : " + str( tab_emails_destinataire) local_status, local_retval = mycommon.Collection_Historique.Add_Historique_Event(history_event_dict) if (local_status is False): @@ -9203,7 +9888,7 @@ def Sent_Facture_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_path, val = smtpserver.send_message(msg) smtpserver.close() - print(" Email envoyé " + str(val)) + print(" 22 Email envoyé " + str(val)) """ 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history @@ -9236,7 +9921,7 @@ def Sent_Facture_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_path, history_event_dict['related_collection'] = "partner_client" history_event_dict['related_collection_recid'] = str(diction['partner_client_id']) history_event_dict['action_date'] = str(now) - history_event_dict['action_description'] = "Convention envoyée par email à la liste : " + str( + history_event_dict['action_description'] = "Facture envoyée par email à la liste : " + str( tab_emails_destinataire) local_status, local_retval = mycommon.Collection_Historique.Add_Historique_Event(history_event_dict) if (local_status is False): @@ -12023,7 +12708,8 @@ def Invoice_Create_Secure_E_Document(diction): {'$project': {'title': 1, 'domaine': 1, 'duration': 1, 'duration_unit': 1, - 'external_code': 1,'recyclage_delai':1, 'recyclage_periodicite':1}}], + 'external_code': 1,'recyclage_delai':1, 'recyclage_periodicite':1, + 'lms_class_code':1}}], 'as': 'myclass_collection' } } @@ -12829,7 +13515,7 @@ def Send_Email_request_presinscription_data_validation(diction): val = smtpserver.send_message(msg) smtpserver.close() - print(" Email envoyé " + str(val)) + print(" Email envoyé 44" + str(val)) return True, "Les demandes de mise à jour ont été envoyées" diff --git a/email_inscription_mgt.py b/email_inscription_mgt.py index edfa272..1364eb3 100644 --- a/email_inscription_mgt.py +++ b/email_inscription_mgt.py @@ -1903,7 +1903,9 @@ def LMS_Credential_Sending_mail(diction): """ Verification de la liste des champs obligatoires """ - field_list_obligatoire = ['nom', 'prenom', 'email', 'date_du', 'date_au', 'title', 'login', 'pwd', 'lms_url', 'course_owner_email', 'partner_recid' ] + field_list_obligatoire = ['token', 'inscription_id', 'session_code','nom', 'prenom', 'email', + 'date_du', 'date_au', 'title', 'login', 'pwd', + 'lms_url', 'course_owner_email', 'partner_recid' ] for val in field_list_obligatoire: if val not in diction: mycommon.myprint( @@ -1945,35 +1947,56 @@ def LMS_Credential_Sending_mail(diction): adresse_session = my_adress + """ + A présent on va aller recuperer le modele de courrier de notification + """ + local_diction = {} + local_diction['ref_interne'] = "LMS_USER_ACCES_NOTIF" + local_diction['type_doc'] = "email" + local_diction['partner_owner_recid'] = str(diction['partner_recid']) - # on rentre les renseignements pris sur le site du fournisseur + courrier_data_status, courrier_data_retval = mycommon.Get_Courrier_Template_Include_Default_Data(local_diction) + if (courrier_data_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Impossible de récuperer le modèle de courrier 'LMS_USER_ACCES_NOTIF' ") + return False, " Impossible de récuperer le modèle de courrier 'LMS_USER_ACCES_NOTIF' " - # msg = MIMEMultipart("alternative") - # JINJA2 - templateLoader = jinja2.FileSystemLoader(searchpath="./") - templateEnv = jinja2.Environment(loader=templateLoader) - TEMPLATE_FILE = "Template/MySy_LMS_credential_sending_tpl.html" - template = templateEnv.get_template(TEMPLATE_FILE) - # This data can come from database query - body = {} + if ("contenu_doc" not in courrier_data_retval.keys() or str(courrier_data_retval['contenu_doc']) == ""): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le modèle de courrier 'LMS_USER_ACCES_NOTIF' n'est pas correctement configuré ") + return False, " Le modèle de courrier 'LMS_USER_ACCES_NOTIF' n'est pas correctement configuré " + + new_diction = {} + new_diction['token'] = str(diction['token']) + new_diction['list_stagiaire_id'] = [] + new_diction['list_session_id'] = [] + new_diction['list_class_id'] = [] + new_diction['list_client_id'] = [] + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + dictionnary_data = local_retval + dictionnary_data['credential_data'] = diction body = { + "params": dictionnary_data, + } - "params": {"nom": str(diction['nom']), - "prenom": str(diction['prenom']), - "date_du": str(diction['date_du']), - "date_fin": str(diction['date_au']), - "adresse": str(adresse_session), - "title": str(diction['title']), - "email": str(diction['email']), - "login": str(diction['login']), - "pwd": str(diction['pwd']), - "lms_url": str(diction['lms_url']), - "course_owner_email": str(diction['course_owner_email'])}, - } + # Traitement du sujet du mail + sujet_mail_Template = jinja2.Template(str(courrier_data_retval['sujet'])) + sujetHtml = sujet_mail_Template.render(params=body["params"]) + + # Traitement du corps du mail + contenu_doc_Template = jinja2.Template(str(courrier_data_retval['contenu_doc'])) + sourceHtml = contenu_doc_Template.render(params=body["params"]) + html_mime = MIMEText(sourceHtml, 'html') - sourceHtml = template.render(params=body["params"]) """ Recuperation des parametre SMTP du partner si le client a decidé d'utiliser son propre smpt @@ -2019,43 +2042,63 @@ def LMS_Credential_Sending_mail(diction): 'valide': '1', 'locked': '0'}, {'config_value': 1})['config_value']) + msg = MIMEMultipart("alternative") if (str(partner_own_smtp_value) == "1"): smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) - msg = EmailMessage() - msg.set_content(sourceHtml, subtype='html') + msg.attach(html_mime) msg['From'] = partner_SMTP_COUNT_From_User msg['Bcc'] = 'contact@mysy-training.com,' + str(str(diction['course_owner_email'])) - msg['Subject'] = '[MySy Training]: Vos identifications de connexion' + msg['Subject'] = sujetHtml msg['To'] = str(diction['email']) smtpserver.ehlo() smtpserver.starttls() smtpserver.login(partner_SMTP_COUNT_user, partner_SMTP_COUNT_password) val = smtpserver.send_message(msg) smtpserver.close() - print(" Email confirlation envoyé " + str(val)) + print(" Email d'acces lms envoyé à " + str(diction['email'])) else: smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) - msg = EmailMessage() - msg.set_content(sourceHtml, subtype='html') + msg.attach(html_mime) msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User msg['Bcc'] = 'contact@mysy-training.com,'+str(str(diction['course_owner_email'])) - msg['Subject'] = '[MySy Training]: Vos identifications de connexion' + msg['Subject'] = sujetHtml msg['To'] = str(diction['email']) smtpserver.ehlo() smtpserver.starttls() smtpserver.login(MYSY_GV.O365_SMTP_COUNT_user, MYSY_GV.O365_SMTP_COUNT_password) val = smtpserver.send_message(msg) smtpserver.close() - print(" Email confirlation envoyé " + str(val)) + print(" Email d'acces lms envoyé à " + str(diction['email'])) - return True, " Email d'identification de connexion envoyé " + """ + Logguer l'action dans l'historique de l'apprenant + """ + now = str(datetime.datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + # print(" ####### laaaa diction = ", diction) + + history_event_dict = {} + history_event_dict['token'] = str(diction['token']) + history_event_dict['related_collection'] = "inscription" + history_event_dict['related_collection_recid'] = str(diction['inscription_id']) + history_event_dict['action_date'] = str(now) + + + history_event_dict['action_description'] = "(R)envoi des accès à la plateforme de E-Learning à pour session de formation " + str(diction['session_code']) + local_status, local_retval = mycommon.Collection_Historique.Add_Historique_Event(history_event_dict) + if (local_status is False): + mycommon.myprint( + " WARNING : Impossible de logguer l'historique pour l'évènement : " + str(history_event_dict)) + + return True, "Les identifiants accès à la plateforme de E-Learning ont été correctement envoyés " 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)) - return False, " Impossible d'envoyer l'email de notification " + return False, " Impossible d'envoyer les identifiants accès à la plateforme de E-Learning " + + """ Fonction qui envoi les identifiant de connexion à un employé dont on vient de créer le compte diff --git a/main.py b/main.py index dac9e10..96d7140 100644 --- a/main.py +++ b/main.py @@ -2446,6 +2446,30 @@ def Prepare_and_Send_Convention_From_Session_By_Email(): return jsonify(status=status, message=retval) + +""" +API : pour préparer et envoyer les convention en partant d'une session MAIS +Avec un liste d'inscrits +""" +@app.route('/myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email/', methods=['POST','GET']) +@crossdomain(origin='*') +def Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email : payload = ",str(payload)) + + file = [] + if request.method == 'POST': + # Create variable for uploaded file + tab_files = [] + for tmp in request.files.getlist("File"): + tab_files.append(tmp) + + status, retval = SF.Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_Email(tab_files, MYSY_GV.TEMPORARY_DIRECTORY_V2, payload) + return jsonify(status=status, message=retval) + + + """ API : pour préprer et envoyer les conventions PAR DEFAUT en partant d'une session """ @@ -2490,6 +2514,29 @@ def Prepare_and_Send_Convention_From_Session_By_PDF(token, session_id, courrier_ else: return False +""" +API : pour préprer et générer un zip de fichier PDF pour les convention en partant d'une session avec une liste d'inscrit +""" +@app.route('/myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF////', methods=['POST','GET']) +@crossdomain(origin='*') +def Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF(token, session_id, courrier_template_id, tab_ids): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + payload = {} + payload['token'] = str(token) + payload['session_id'] = str(session_id) + payload['courrier_template_id'] = str(courrier_template_id) + payload['tab_ids'] = str(tab_ids) + + + print(" ### Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF : payload = ",str(payload)) + + localStatus, response= SF.Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF(payload) + if(localStatus ): + return response + else: + return False + """ API : pour préprer et générer un zip de fichier PDF pour les convention par defaut en partant d'une session. @@ -8463,6 +8510,30 @@ def Prepare_and_Send_Convocation_From_Session_By_PDF(token, session_id, courrier +""" +API : pour préprer et générer un zip de fichier PDF pour les convocation en partant d'une session +pour une liste d'inscrit bien definie +""" +@app.route('/myclass/api/Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF////', methods=['POST','GET']) +@crossdomain(origin='*') +def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF(token, session_id, courrier_template_id, tab_ids): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + payload = {} + payload['token'] = str(token) + payload['session_id'] = str(session_id) + payload['courrier_template_id'] = str(courrier_template_id) + payload['tab_ids'] = str(tab_ids) + + print(" ### Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF : payload = ",str(payload)) + + localStatus, response= SF.Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF(payload) + if(localStatus ): + return response + else: + return False + + """ API : pour préprer et envoyer les convocations en partant d'une session """ @@ -8484,6 +8555,28 @@ def Prepare_and_Send_Convocation_From_Session_By_Email(): return jsonify(status=status, message=retval) +""" +API : pour préprer et envoyer les convocations en partant d'une session avec une liste d'inscrits bien definie +""" +@app.route('/myclass/api/Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email/', methods=['POST','GET']) +@crossdomain(origin='*') +def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email : payload = ",str(payload)) + + file = [] + if request.method == 'POST': + # Create variable for uploaded file + tab_files = [] + for tmp in request.files.getlist("File"): + tab_files.append(tmp) + + status, retval = SF.Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email(tab_files, MYSY_GV.TEMPORARY_DIRECTORY_V2, payload) + return jsonify(status=status, message=retval) + + + """ API pour initialiser les attestation de formation pour une session données diff --git a/partner_client.py b/partner_client.py index 8d95922..7a3b390 100644 --- a/partner_client.py +++ b/partner_client.py @@ -2713,7 +2713,7 @@ def Create_Partner_Client_Intranet_Account(diction): if( admin_partnair and 'subdomaine_catalog_pub' in admin_partnair.keys() ): subdomaine_catalog_pub = admin_partnair['subdomaine_catalog_pub'] else: - return True, " WARNING : Le compte intranet du client a été mais impossible d'envoyer l'email de notification au client (22) " + return True, " WARNING : Le compte intranet du client a été mais impossible d'envoyer l'email de notification au client " dictionnary_data = local_retval