diff --git a/.idea/workspace.xml b/.idea/workspace.xml index d575706..6216297 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,18 +1,17 @@ - - + - + - + - + @@ -469,7 +468,6 @@ - @@ -494,6 +492,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 8cb4285..8c02557 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -11350,7 +11350,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat new_e_document_diction['file_cononical_name'] = cononic_name new_e_document_diction['type'] = "convention" - print(" ### 011 new_e_document_diction = ", new_e_document_diction) + #print(" ### 011 new_e_document_diction = ", new_e_document_diction) local_status_e_doc, local_retval_e_doc = E_Sign_Document.Create_E_Document(new_e_document_diction) if(local_status_e_doc is False ): @@ -11362,7 +11362,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat """ for email in tab_emails_destinataire : - print(" ### traitement du mail : ", email) + #print(" ### traitement du mail : ", email) new_send_e_document_diction = {} new_send_e_document_diction['token'] = diction['token'] new_send_e_document_diction['e_doc_id'] = str(local_retval_e_doc) diff --git a/Job_Cron.py b/Job_Cron.py index e031662..8b55640 100644 --- a/Job_Cron.py +++ b/Job_Cron.py @@ -22,25 +22,10 @@ import prj_common as mycommon import secrets import inspect import sys, os -import csv -import pandas as pd + from pymongo import ReturnDocument import GlobalVariable as MYSY_GV -from math import isnan -import GlobalVariable as MYSY_GV -import ela_index_bdd_classes as eibdd -import email_mgt as email -import jinja2 -from flask import send_file -from xhtml2pdf import pisa -from email.message import EmailMessage -from email.mime.text import MIMEText -from email import encoders -import smtplib -from email.mime.multipart import MIMEMultipart -from email.mime.text import MIMEText -from email.mime.base import MIMEBase -from email import encoders + import survey_mgt as survey_mgt import Job_Cron_Common as Job_Cron_Common @@ -1128,6 +1113,7 @@ Dans cette collection Alogorithme : +/!\ Ce cron doit tourner tous les jours à 23h 1 - On va aller directement dans le collection 'session_formation' recuperer toutes les session ayant : {'automatic_traitement.actif':'1', automatic_traitement.statut != '2' (statut 2 = Done) } @@ -1145,7 +1131,7 @@ qqtps, deplus ce sont des traitement noctures, donc ca devrait aller. """ -def Cron_Daily_Document_Sending(): +def Cron_Daily_Automatic_Qualiopi_Documents(): try: print(" Cron : In function = Cron_Daily_Document_Sending") @@ -1163,123 +1149,155 @@ def Cron_Daily_Document_Sending(): print(" ### qry_list_session_concerned = ", qry_list_session_concerned) for my_session in MYSY_GV.dbname['session_formation'].find(qry_list_session_concerned): - #print(" ## Session à traiter = ", my_session) - + print(" # Code Session = ", my_session['code_session']) print(" # Date Start Session = ", my_session['date_debut']) print(" # Date End Session = ", my_session['date_fin']) + #print(" # automatic_traitement = ", my_session['automatic_traitement']) + diction_for_notification_email = {} + diction_for_notification_email['session_id'] = str(my_session['_id']) + diction_for_notification_email['tab_message'] = [] for data_automatic_traitement in my_session['automatic_traitement'] : + if (data_automatic_traitement["actif"] == "1" and data_automatic_traitement["valide"] == "1" and data_automatic_traitement["statut"] != "2"): - print(" # Nb jour action = ", data_automatic_traitement['nb_jour_action']) - print(" # Date du jour = ", str(todays_date)) + print(" # Analyse Document = ", str(data_automatic_traitement['nom_document'])) + print(" # Nb jour action = ", data_automatic_traitement['nb_jour_action']) + print(" # Date du jour = ", str(todays_date)) - local_status, nb_jour_action_Int = mycommon.IsInt(str(data_automatic_traitement['nb_jour_action']).strip()) - if (local_status is False): - mycommon.myprint(str( - inspect.stack()[0][ - 3]) + " CRON WARNING : nb_jour_action_Int n'est pas une valeur entière. Session Formation = ", str(my_session['_id'])) - # On log une erreur, et on continue le traitement dans la boucle. - continue - - local_session_start_date = datetime.strptime(str(my_session['date_debut']).strip(), '%d/%m/%Y') - local_session_start_date_added_nb_jour_action = local_session_start_date + timedelta(days=nb_jour_action_Int) - local_session_start_date_added_nb_jour_action_formated = str(local_session_start_date_added_nb_jour_action.strftime("%d/%m/%Y")) - - print(" ### CMP 1 local_session_start_date_added_nb_jour_action = ", local_session_start_date_added_nb_jour_action) - print(" ### CMP 2 datetime.strptime(str(todays_date).strip(), '%d/%m/%Y') = ", - datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')) - - print(" ### delta day = ", datetime.strptime(str(todays_date).strip(), '%d/%m/%Y') - local_session_start_date ) - - if (local_session_start_date_added_nb_jour_action > datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')): - print(" ### SUPPPPPP : Action à faire dans le futur ") - - elif (local_session_start_date_added_nb_jour_action < datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')): - print(" ### INFFFFFF : Alert il y a un pb sur une action non realiser ") - mycommon.myprint(str( - inspect.stack()[0][ - 3]) + " CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue." - " Session Formation = " + str( - my_session['_id']) + " Id du CRON courrier_template_type_document_id = " + str( - data_automatic_traitement['courrier_template_type_document_id'])) - - - elif (local_session_start_date_added_nb_jour_action == datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')): - - """ - Effectuer l'action - """ - """ - Recuperer le type de document concerné - """ - courrier_template_type_document_data = MYSY_GV.dbname['courrier_template_type_document'].find_one( - {'_id':ObjectId(data_automatic_traitement['courrier_template_type_document_id']), - 'valide':'1', - 'locked':'0'}) - - if( courrier_template_type_document_data and 'ref_interne' in courrier_template_type_document_data.keys() ): - print(" ### Action à faire : Envoyer le document de type ", courrier_template_type_document_data['ref_interne']) - else: + local_status, nb_jour_action_Int = mycommon.IsInt(str(data_automatic_traitement['nb_jour_action']).strip()) + if (local_status is False): mycommon.myprint(str( inspect.stack()[0][ - 3]) + " CRON WARNING * Cron_Daily_Document_Sending: Impossible de trouver le type de document concerné " + 3]) + " CRON WARNING : nb_jour_action_Int n'est pas une valeur entière. Session Formation = ", str(my_session['_id'])) + # On log une erreur, et on continue le traitement dans la boucle. + continue + + local_session_start_date = datetime.strptime(str(my_session['date_debut']).strip(), '%d/%m/%Y') + local_session_start_date_added_nb_jour_action = local_session_start_date + timedelta(days=nb_jour_action_Int) + local_session_start_date_added_nb_jour_action_formated = str(local_session_start_date_added_nb_jour_action.strftime("%d/%m/%Y")) + + print(" ### CMP 1 local_session_start_date_added_nb_jour_action = ", local_session_start_date_added_nb_jour_action) + print(" ### CMP 2 datetime.strptime(str(todays_date).strip(), '%d/%m/%Y') = ", + datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')) + + print(" ### delta day = ", datetime.strptime(str(todays_date).strip(), '%d/%m/%Y') - local_session_start_date ) + + if (local_session_start_date_added_nb_jour_action > datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')): + print(" ### SUPPPPPP : Action à faire dans le futur ") + + elif (local_session_start_date_added_nb_jour_action < datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')): + print(" ### INFFFFFF : Alert il y a un pb sur une action non realiser ") + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue." " Session Formation = " + str( my_session['_id']) + " Id du CRON courrier_template_type_document_id = " + str( data_automatic_traitement['courrier_template_type_document_id'])) - continue + courrier_template_type_document_data = MYSY_GV.dbname[ + 'courrier_template_type_document'].find_one( + {'_id': ObjectId(data_automatic_traitement['courrier_template_type_document_id']), + 'valide': '1', + 'locked': '0'}) - print(" ### avant action 1 courrier_template_type_document_data = ", courrier_template_type_document_data) - print(" ## data_automatic_traitement = ", data_automatic_traitement) + node_notification = {} + node_notification['message'] = "Warning : Il y a une tâche automatique qui n'a pas été exécutée " \ + " Date Initialement prévue "+str(local_session_start_date_added_nb_jour_action_formated)+ " -- " \ + " Action : "+str(courrier_template_type_document_data['ref_interne']) + node_notification['status'] = "Warning " + diction_for_notification_email['tab_message'].append(node_notification) - local_diction = {} - local_diction['session_id'] = str(my_session['_id']) - local_diction['document_ref_intern'] = str(courrier_template_type_document_data['ref_interne']) - local_diction['partner_owner_recid'] = str(my_session['partner_owner_recid']) - local_diction['courrier_template_type_document_ref_interne'] = str(data_automatic_traitement['courrier_template_type_document_ref_interne']) - local_diction['courrier_template_type_document_id'] = str( data_automatic_traitement['courrier_template_type_document_id']) + elif (local_session_start_date_added_nb_jour_action == datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')): - print( " ### local_diction for Send_document_from_base_document_automatic_setup = ", local_diction) - local_status, local_retval = Send_document_from_base_document_automatic_setup(local_diction) + """ + Effectuer l'action + """ + """ + Recuperer le type de document concerné + """ + courrier_template_type_document_data = MYSY_GV.dbname['courrier_template_type_document'].find_one( + {'_id':ObjectId(data_automatic_traitement['courrier_template_type_document_id']), + 'valide':'1', + 'locked':'0'}) + + if( courrier_template_type_document_data and 'ref_interne' in courrier_template_type_document_data.keys() ): + print(" ### Action à faire : Envoyer le document de type ", courrier_template_type_document_data['ref_interne']) + else: + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " CRON WARNING * Cron_Daily_Document_Sending: Impossible de trouver le type de document concerné " + " Session Formation = " + str( + my_session['_id']) + " Id du CRON courrier_template_type_document_id = " + str( + data_automatic_traitement['courrier_template_type_document_id'])) + + continue + + #print(" ### avant action 1 courrier_template_type_document_data = ", courrier_template_type_document_data) + #print(" ## data_automatic_traitement = ", data_automatic_traitement) + + local_diction = {} + local_diction['session_id'] = str(my_session['_id']) + local_diction['document_ref_intern'] = str(courrier_template_type_document_data['ref_interne']) + local_diction['partner_owner_recid'] = str(my_session['partner_owner_recid']) + local_diction['courrier_template_type_document_ref_interne'] = str(data_automatic_traitement['courrier_template_type_document_ref_interne']) + local_diction['courrier_template_type_document_id'] = str( data_automatic_traitement['courrier_template_type_document_id']) + + #print( " ### local_diction for Send_document_from_base_document_automatic_setup = ", local_diction) + local_status, local_retval = Send_document_from_base_document_automatic_setup(local_diction) + + node_notification = {} + node_notification['message'] = str(courrier_template_type_document_data['ref_interne']) + node_notification['status'] = str(local_status) + diction_for_notification_email['tab_message'].append(node_notification) + """ + Mettre à jour le document + "" " + + local_update = MYSY_GV.dbname['session_formation'].update_many( + {'_id': ObjectId(str(my_session['_id'])), + 'partner_owner_recid':str(my_session['partner_owner_recid']), + 'valide': '1', + 'automatic_traitement.courrier_template_type_document_id': str(data_automatic_traitement['courrier_template_type_document_id']) + }, + {'$set': + { + 'automatic_traitement.$[xxx].actif': "-1", + 'automatic_traitement.$[xxx].statut': "2", + 'automatic_traitement.$[xxx].date_traitement_cron': str(datetime.now()), + 'automatic_traitement.$[xxx].date_update': str(datetime.now()), + 'automatic_traitement.$[xxx].update_by': "Automatic Cron", + } + }, + upsert=False, + array_filters=[ + {"xxx.courrier_template_type_document_id": str(data_automatic_traitement['courrier_template_type_document_id'])} + ] + + ) + if( local_update.matched_count < 1 ): + print(" #### local_update.matched_count = ", local_update.matched_count) + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " CRON WARNING * Cron_Daily_Document_Sending: La mise à jour du statut (actif = -1) du cron ne s'est " + " PAS bien passé : Session Formation = "+ str(my_session['_id'])+ + " Id du CRON courrier_template_type_document_id = "+ + str(data_automatic_traitement['courrier_template_type_document_id'])) + """ - """ - Mettre à jour le document - "" " - - local_update = MYSY_GV.dbname['session_formation'].update_many( - {'_id': ObjectId(str(my_session['_id'])), - 'partner_owner_recid':str(my_session['partner_owner_recid']), - 'valide': '1', - 'automatic_traitement.courrier_template_type_document_id': str(data_automatic_traitement['courrier_template_type_document_id']) - }, - {'$set': - { - 'automatic_traitement.$[xxx].actif': "-1", - 'automatic_traitement.$[xxx].statut': "2", - 'automatic_traitement.$[xxx].date_traitement_cron': str(datetime.now()), - 'automatic_traitement.$[xxx].date_update': str(datetime.now()), - 'automatic_traitement.$[xxx].update_by': "Automatic Cron", - } - }, - upsert=False, - array_filters=[ - {"xxx.courrier_template_type_document_id": str(data_automatic_traitement['courrier_template_type_document_id'])} - ] + local_status, my_partner = mycommon.Get_Connected_User_Partner_Data_From_RecID(str(my_session['partner_owner_recid'])) + if (local_status is not True): + return local_status, my_partner - ) - if( local_update.matched_count < 1 ): - print(" #### local_update.matched_count = ", local_update.matched_count) - mycommon.myprint(str( - inspect.stack()[0][ - 3]) + " CRON WARNING * Cron_Daily_Document_Sending: La mise à jour du statut (actif = -1) du cron ne s'est " - " PAS bien passé : Session Formation = "+ str(my_session['_id'])+ - " Id du CRON courrier_template_type_document_id = "+ - str(data_automatic_traitement['courrier_template_type_document_id'])) - """ - return True, "" + diction_for_notification_email['token'] = str(my_partner['token']) + + print("### diction_for_notification_email == ", diction_for_notification_email) + + local_status, local_retval = Job_Cron_Common.Cron_Qualiopi_Automatic_Traitement_Notification(diction_for_notification_email) + + return True, "OK" except Exception as e: @@ -1335,8 +1353,6 @@ def Send_document_from_base_document_automatic_setup(diction): return local_status, my_partner - print(" ### diction['document_ref_intern'] = ", diction['document_ref_intern']) - if( str(diction['document_ref_intern']) == 'CONVENTION_STAGIAIRE_ENTREPRISE' or str(diction['document_ref_intern']) == 'CONVENTION_STAGIAIRE_INDIVIDUELLE' ): local_diction = {} @@ -1344,9 +1360,9 @@ def Send_document_from_base_document_automatic_setup(diction): local_diction['session_id'] = diction['session_id'] local_diction['courrier_template_id'] = "" - print(" ### local_diction for Prepare_and_Send_Default_Convention_From_Session_By_PDF= ", local_diction) + #print(" ### local_diction for Prepare_and_Send_Default_Convention_From_Session_By_PDF= ", local_diction) - #local_status, local_retval = Session_Formation.Prepare_and_Send_Default_Convention_From_Session_By_PDF(local_diction) + local_status, local_retval = Session_Formation.Prepare_and_Send_Default_Convention_From_Session_By_PDF(local_diction) local_diction_by_email = {} local_diction_by_email['token'] = my_partner['token'] @@ -1372,13 +1388,242 @@ def Send_document_from_base_document_automatic_setup(diction): local_convoc_status, local_convoc_retval = Cron_Session_Convocation_Sending(local_diction_convocation_by_email) - elif ( str(diction['document_ref_intern']) == 'QUESTION_POSITIONNEMENT' ): - print(" ### Initialiser le questionnaire de positionnement ") - print(" ### Envoyer le questionnaire de positionnement ") + """ + 1 - Aller chercher le formulaire (type = questionnaire de positionnement ) par defaut + 2 - Initialiser l'enquete + 3 - Envoyer l'enquete + """ + print(" ### DEBUT Initialiser le questionnaire de positionnement ") + + local_default_form_count = MYSY_GV.dbname['formulaire'].count_documents( + {'type':'pos', + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if(local_default_form_count != 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " La configuration du questionnaire de positionnement par défaut est invalide. Nb formulaire = ", local_default_form_count) + return False, " La configuration du questionnaire de positionnement par défaut est invalide" + + local_default_form_data = MYSY_GV.dbname['formulaire'].find_one( + {'type': 'pos', + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}, {'_id':1}) + + init_diction = {} + init_diction['token']= my_partner['token'] + init_diction['session_id'] = diction['session_id'] + init_diction['formulaire_id'] = local_default_form_data['_id'] + init_diction['survey_type'] = "pos" + init_diction['sending_date'] = "" + + local_status_init, local_retval_init = Job_Cron_Common.Cron_Init_Survey_Tab_For_Inscrit_Not_Init(init_diction) + + if( local_status_init is False ): + return local_status_init, local_retval_init + + + print(" ### DEBUT Envoyer le questionnaire de positionnement ") + local_status_send, local_retval_send = Job_Cron_Common.Cron_Send_Survey_TabIds(init_diction) + + if (local_status_send is False): + return local_status_send, local_retval_send + + + elif ( str(diction['document_ref_intern']) == 'EVAL_FORMATION' ): + + """ + Evaluation à chaud + """ + print(" ### DEBUT Initialiser le questionnaire d'evaluation à chaud ") + + local_default_form_count = MYSY_GV.dbname['formulaire'].count_documents( + {'type': 'hot_eval', + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (local_default_form_count != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La configuration du questionnaire de positionnement par défaut est invalide. Nb formulaire = ", + local_default_form_count) + return False, " La configuration du questionnaire d'évaluation à chaud par défaut est invalide" + + local_default_form_data = MYSY_GV.dbname['formulaire'].find_one( + {'type': 'hot_eval', + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}, {'_id': 1}) + + init_diction = {} + init_diction['token'] = my_partner['token'] + init_diction['session_id'] = diction['session_id'] + init_diction['formulaire_id'] = local_default_form_data['_id'] + init_diction['survey_type'] = "hot_eval" + init_diction['sending_date'] = "" + + local_status_init, local_retval_init = Job_Cron_Common.Cron_Init_Survey_Tab_For_Inscrit_Not_Init( + init_diction) + + if (local_status_init is False): + return local_status_init, local_retval_init + + + print(" ### DEBUT Envoyer le questionnaire de Evaluation à Chaud ") + local_status_send, local_retval_send = Job_Cron_Common.Cron_Send_Survey_TabIds(init_diction) + + if (local_status_send is False): + return local_status_send, local_retval_send + + + + """ + Evaluation du formateur mis que la session de formation, si formateur + """ + print(" ### DEBUT Initialiser le questionnaire d'évaluation du formation mis sur la session ") + + #1 - Verifier s'il y a un formateur valide sur la session + session_data = MYSY_GV.dbname['session_formation'].find_one({'_id':ObjectId(str(diction['session_id']))}, {'_id':1, 'formateur_id':1}) + + if( session_data and "formateur_id" in session_data.keys() and session_data['formateur_id']): + # Aller chercher le formulaire par défaut pour l'evaluation des enseignants + local_default_form_count = MYSY_GV.dbname['formulaire'].count_documents( + {'type': 'human_eval', + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (local_default_form_count != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La configuration du questionnaire d'évaluation du formateur par défaut est invalide. Nb formulaire = " + str( + local_default_form_count)) + return False, " La configuration du questionnaire d'évaluation du formateur par défaut est invalide" + + local_default_form_data = MYSY_GV.dbname['formulaire'].find_one( + {'type': 'human_eval', + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}, {'_id': 1}) + + init_diction = {} + init_diction['token'] = my_partner['token'] + init_diction['session_id'] = diction['session_id'] + init_diction['formulaire_id'] = local_default_form_data['_id'] + init_diction['survey_type'] = "human_eval" + init_diction['sending_date'] = "" + + init_diction['related_collection'] = "ressource_humaine" + init_diction['related_collection_id'] = str(session_data['formateur_id']) + + + local_status_init, local_retval_init = Job_Cron_Common.Cron_Init_Survey_Tab_For_Inscrit_Not_Init( + init_diction) + + if (local_status_init is False): + return local_status_init, local_retval_init + + print(" ### DEBUT Envoyer le questionnaire de Evaluation du formateur ") + local_status_send, local_retval_send = Job_Cron_Common.Cron_Send_Survey_TabIds(init_diction) + + if (local_status_send is False): + return local_status_send, local_retval_send + + + """ + Evaluation à froid à envoyer 3 mois plus tard + """ + + print(" ### DEBUT Initialiser le questionnaire d'evaluation à froid à faire 3 mois plus tard ") + + local_default_form_count = MYSY_GV.dbname['formulaire'].count_documents( + {'type': 'cold_eval', + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (local_default_form_count != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La configuration du questionnaire d'évaluation à froid par défaut est invalide. Nb formulaire = "+str( + local_default_form_count)) + return False, "La configuration du questionnaire d'évaluation à froid par défaut est invalide" + + local_default_form_data = MYSY_GV.dbname['formulaire'].find_one( + {'type': 'cold_eval', + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}, {'_id': 1}) + + today_plus_90_jours = date.today() + timedelta(days=90) + today_plus_90_jours_string = str(today_plus_90_jours.strftime("%d/%m/%Y")) + + init_diction = {} + init_diction['token'] = my_partner['token'] + init_diction['session_id'] = diction['session_id'] + init_diction['formulaire_id'] = local_default_form_data['_id'] + init_diction['survey_type'] = "cold_eval" + init_diction['sending_date'] = str(today_plus_90_jours_string) + + print(" ### à 90 j = ", init_diction) + + + local_status_init, local_retval_init = Job_Cron_Common.Cron_Init_Survey_Tab_For_Inscrit_Not_Init( + init_diction) + + if (local_status_init is False): + return local_status_init, local_retval_init + elif ( str(diction['document_ref_intern']) == 'ATTESTATION_FORMATION' ): - print(" ### Initialiser les attestations de formation ") + print(" ### Debut Initialisation les attestations de formation ") + # 1 Recuperer le modele d'attestation par défaut + + local_diction = {} + local_diction['ref_interne'] = "ATTESTATION_FORMATION" + local_diction['type_doc'] = "email" + local_diction['partner_owner_recid'] = str(diction['partner_owner_recid']) + local_diction['default_version'] = "1" + + 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 'ATTESTATION_FORMATION', (type : Email) ") + return False, " Impossible de récuperer le modèle de courrier 'ATTESTATION_FORMATION', (type : Email) " + + 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 'ATTESTATION_FORMATION', (type : Email) n'est pas correctement configuré ") + return False, " Le modèle de courrier 'ATTESTATION_FORMATION', (type : Email) n'est pas correctement configuré" + + + + init_diction = {} + init_diction['token'] = my_partner['token'] + init_diction['session_id'] = diction['session_id'] + init_diction['courrier_template_id'] = courrier_data_retval['_id'] + + local_status_init, local_retval_init = Job_Cron_Common.Cron_Init_Attestation_Formation_With_Template(init_diction) + + if (local_status_init is False): + return local_status_init, local_retval_init + + print(" ### Envoyer les attestations de formation ") diff --git a/Job_Cron_Common.py b/Job_Cron_Common.py index fc32e63..ce4e469 100644 --- a/Job_Cron_Common.py +++ b/Job_Cron_Common.py @@ -1048,3 +1048,1624 @@ def Create_Convocation_By_Stagiaire_PDF(diction): 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 créer le fichier pdf de convocation par stagiaire " + + + +""" +Fonction Cron qui permet de gerer automatiquement les questionnaires de positionnement +Alog : + +1 - Initialisation, si pas initialisé +2 - Envoyer si psi pas envoyé +""" +def Cron_Gestion_Questionnaire_Positionnement(diction): + try: + + + return True, "" + + 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 traiter autoamtiquement le questionnaire de positionnement (Cron_Gestion_Questionnaire_Positionnement) " + +""" +Cette fonction initialise (suppression et creation ) d'une enquete pour tous +les inscrits d'un session. +algorithm : +On supprime tous enregistrements avec le clé : +- session_id, + + +28/06/2024: Pour permettre d'adresser une enquete à plusieurs objects, +pas que les inscrits, (le cas de enseignants), on va rajouter +- related_collection = collection concernée +- related_collection_id = l'_id concernée dans la collection + +/!\ 27/02/2025 : On ne fait l'initialisation que ceux pour qui il n'y a aucune initialisation + +""" + +def Cron_Init_Survey_Tab_For_Inscrit_Not_Init(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['session_id', 'token', 'formulaire_id', 'survey_type', 'sending_date', 'related_collection', + 'related_collection_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + field_list_obligatoire = ['session_id', 'token', 'formulaire_id', 'survey_type', 'sending_date'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + 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_valide_session = MYSY_GV.dbname['session_formation'].count_documents( + {'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_valide_session <= 0): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + tab_my_inscription_ids = [] + tab_my_inscription_ids_all = [] + + for my_inscription_id in MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + 'partner_owner_recid': str( + my_partner['recid']), + 'valide': '1', 'status': '1'}): + tab_my_inscription_ids_all.append(str(my_inscription_id['_id'])) + + + """ + 27/02/2025 : + Recuperer la liste des inscrits pour lesquelles il n'y pas encore d'initialisation dans le survey + """ + + for local_inscrit in tab_my_inscription_ids_all: + is_inscrit_exist_in_survey_count = MYSY_GV.dbname['survey'].count_documents( + {'partner_owner_recid': str(my_partner['recid']), + 'session_id': str(diction['session_id']), + 'survey_type': str(diction['survey_type']), + 'inscription_id':str(local_inscrit)} ) + + if( is_inscrit_exist_in_survey_count == 0 ): + tab_my_inscription_ids.append(str(local_inscrit)) + + """ + Verifier la validité du formulaire + """ + is_valide_form = MYSY_GV.dbname['formulaire'].count_documents( + {'_id': ObjectId(str(diction['formulaire_id'])), + 'valide': '1', + 'locked': '0', + 'default': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_valide_form <= 0): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du formulaire est invalide ") + return False, " L'identifiant du formulaire est invalide " + + """ + Les inscriptions etant toutes valides, on va proceder à + 1 - la creation de l'enquete + """ + + for my_inscription_id in tab_my_inscription_ids: + # Recuperation des données de l'inscript + + local_Insc_retval = MYSY_GV.dbname['inscription'].find_one({'session_id': str(diction['session_id']), + '_id': ObjectId(str(my_inscription_id)), + 'partner_owner_recid': str( + my_partner['recid']), + 'valide': '1', 'status': '1' + }) + + if (local_Insc_retval is None): + mycommon.myprint(str(inspect.stack()[0][3]) + " L'identifiant de l'inscrit est invalide ") + return False, " L'identifiant de l'inscrit est invalide " + + server_diction = {} + server_diction['token'] = diction['token'] + server_diction['session_id'] = diction['session_id'] + server_diction['inscrit_id'] = str(local_Insc_retval['_id']) + server_diction['formulaire_id'] = diction['formulaire_id'] + server_diction['survey_type'] = diction['survey_type'] + server_diction['sending_date'] = diction['sending_date'] + + if ("related_collection" in diction.keys() and diction['related_collection'] + and "related_collection_id" in diction.keys() and diction['related_collection_id']): + server_diction['related_collection'] = diction['related_collection'] + server_diction['related_collection_id'] = diction['related_collection_id'] + else: + server_diction['related_collection'] = "inscription" + server_diction['related_collection_id'] = str(local_Insc_retval['_id']) + + local_status, local_retval = Cron_Create_One_Survey_To_Inscrit(server_diction) + if (local_status is False): + return local_status, local_retval + + return True, " La demande d'enquete a été créée " + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de créer le formulaire " + + + +""" +Cron Cette fonction envoi un formulaire pour inscrit +""" +def Cron_Create_One_Survey_To_Inscrit(diction): + try: + + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['session_id', 'token', 'inscrit_id', 'formulaire_id', 'survey_type', 'sending_date', 'related_collection', + 'related_collection_id', 'class_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + + field_list_obligatoire = ['session_id', 'token', 'inscrit_id', 'formulaire_id', 'survey_type', 'sending_date'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + 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 + + """ + Recuperer les données du formulaire + """ + + my_formulaire_data = MYSY_GV.dbname['formulaire'].find_one({'_id':ObjectId(str(diction['formulaire_id'])), + 'valide':'1', + 'locked':'0', + 'partner_owner_recid':str(my_partner['recid'])}) + + if( my_formulaire_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du formulaire est invalide ") + return False, " L'identifiant du formulaire est invalide " + + """ + Recuperation des données de la session + """ + my_session_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (my_session_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + + """ + Recuperation des données de la formation concernée + """ + class_internal_url = "" + if( "class_internal_url" in my_session_data.keys() ): + class_internal_url = my_session_data['class_internal_url'] + + my_class_data = MYSY_GV.dbname['myclass'].find_one({'internal_url': str(class_internal_url), + 'valide': '1', + 'locked':'0', + 'partner_owner_recid': str( my_partner['recid'])}) + + if( my_class_data is None ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la formation est invalide ") + return False, " L'identifiant de la formation est invalide " + + """ + Recuperer les données de l'inscrit + """ + my_inscrit_data = MYSY_GV.dbname['inscription'].find_one({'_id': ObjectId(str(diction['inscrit_id'])), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str( + my_partner['recid'])}) + + if (my_inscrit_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de l'inscrit est invalide ") + return False, " L'identifiant de l'inscrit est invalide " + + related_collection = "" + related_collection_id = "" + if( "related_collection" in diction.keys() and "related_collection_id" in diction.keys()): + related_collection = diction['related_collection'] + related_collection_id = diction['related_collection_id'] + + + new_survey_data = {} + new_survey_data['email'] = my_inscrit_data['email'] + new_survey_data['nom'] = my_inscrit_data['nom'] + new_survey_data['prenom'] = my_inscrit_data['prenom'] + new_survey_data['inscription_id'] = str(my_inscrit_data['_id']) + new_survey_data['formulaire_id'] = str(diction['formulaire_id']) + new_survey_data['partner_owner_recid'] = str(my_partner['recid']) + new_survey_data['session_id'] = str(diction['session_id']) + new_survey_data['class_id'] = str(my_class_data['_id']) + new_survey_data['survey_type'] = str(diction['survey_type']) + + new_survey_data['related_collection'] = str(related_collection) + new_survey_data['related_collection_id'] = str(related_collection_id) + + new_survey_data['date_envoi'] = "" + new_survey_data['automatique_sending_request_date'] = str(diction['sending_date']) + new_survey_data['automatique_traitement'] = "1" + new_survey_data['automatique_traitement_done'] = "0" + + new_survey_data['locked'] = "0" + new_survey_data['valide'] = "1" + + new_survey_data['statut'] = "0" + new_survey_data['type'] = "1" + new_survey_data['date_update'] = str(datetime.now()) + new_survey_data['update_by'] = str(my_partner['_id']) + new_survey_data['created_by'] = str(my_partner['_id']) + + print(" ~~~~ A inserer = new_survey_data = ", new_survey_data) + inserted_id = MYSY_GV.dbname['survey'].insert_one(new_survey_data).inserted_id + + if (not inserted_id): + mycommon.myprint(" Impossible de créer l'enquete (2) ") + return False, " Impossible de créer l'enquete (2) " + + print(" Inserted_id = ", inserted_id) + + return True, " L'enquete a été créée" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de créer l'enquete unitaire " + + + + +""" +Cron d'envoie du questionnaire de positionnement en automatique. + +Pour memo, dans le mode automatique (CRON) ne doit etre envoyé que les questionnaire non envoyés +L'utilisateur a toujours la possibilité de RENvoyer manuellement ceux non envoyés +""" +def Cron_Send_Survey_TabIds(diction): + try: + field_list_obligatoire = [ 'token', 'session_id', 'survey_type'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + 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 + + """ + Recuperation des données de la session + """ + my_session_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str( + my_partner['recid'])}) + + if (my_session_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + + my_survey_ids = "" + if ("tab_ids" in diction.keys()): + if diction['tab_ids']: + my_survey_ids = diction['tab_ids'] + + tab_my_survey_ids = [] + print(" ### tab_my_survey_ids QRY = ", {'session_id':str(diction['session_id']), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0', + 'survey_type':str(diction['survey_type']), + 'related_collection':'inscription', + 'statut':'0'}) + + + for survey_data in MYSY_GV.dbname['survey'].find({'session_id':str(diction['session_id']), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0', + 'survey_type':str(diction['survey_type']), + 'related_collection':'inscription', + 'statut':'0'}): + tab_my_survey_ids.append(str(survey_data['_id'])) + + + """ + Les enquete etant toutes valides, on va preceder à l'envoie des email de demande + """ + """ + Recuperation des parametre SMTP du partner si le client a decidé d'utiliser son propre smpt + """ + partner_own_smtp_value = "0" + partner_own_smtp = MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'partner_smtp', + 'valide': '1', + 'locked': '0'}) + + if (partner_own_smtp and "config_value" in partner_own_smtp.keys()): + partner_own_smtp_value = partner_own_smtp['config_value'] + + if (str(partner_own_smtp_value) == "1"): + partner_SMTP_COUNT_password = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_user_pwd', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_smtpsrv = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_server', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_user = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_user', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_From_User = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_count_from_name', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_port = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_count_port', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + + for my_survey_id in tab_my_survey_ids: + # Recuperation des données de l'inscript + + qry = { '_id':ObjectId(str(my_survey_id)), 'partner_owner_recid': str(my_partner['recid']),'valide':'1', 'locked':'0'} + print(" ### my_survey_id Qry = ", qry) + local_survey_retval = MYSY_GV.dbname['survey'].find_one(qry) + + if(local_survey_retval is None ): + mycommon.myprint(str(inspect.stack()[0][3]) + " L'identifiant de l'inscrit est invalide ") + return False, " L'identifiant de l'inscrit est invalide " + + """ + 13/067/2024 : + S'il s'agit de l'evaluation d'une ressource humaine, ( related_collection = 'ressource_humaine' et related_collection_id : est valide) + on va aller chercher la personne concernée dans la collection 'ressource_humaine'. + + par exemple pour evaluer un enseignant, on va aller recuperer les données de l'enseignant + + """ + related_rh_data = None + + if ("related_collection" in local_survey_retval.keys() and local_survey_retval['related_collection'] and local_survey_retval['related_collection'] == "ressource_humaine" and + 'related_collection_id' in local_survey_retval.keys() and local_survey_retval[ + 'related_collection_id'] ): + # Verifier la validité de la ressource humaine concernée + is_valide_related_collection_id = MYSY_GV.dbname['ressource_humaine'].count_documents( + {'_id': ObjectId(str(local_survey_retval['related_collection_id'])), + 'valide': '1', 'locked': '0', 'partner_recid': str(my_partner['recid'])}) + + + + if ( is_valide_related_collection_id != 1): + str(inspect.stack()[0][3]) + " L'identifiant de la personne à évaluer est invalide " + return False, " L'identifiant de la personne à évaluer est invalide " + + related_rh_data = MYSY_GV.dbname['ressource_humaine'].find_one( + {'_id': ObjectId(str(local_survey_retval['related_collection_id'])), + 'valide': '1', 'locked': '0', 'partner_recid': str(my_partner['recid'])}, {'_id':1, 'nom':1, 'prenom':1, 'email':1, 'civilite':1}) + + + print(" ### local_survey_retval = ",local_survey_retval) + courrier_ref_interne = "" + if ( "survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "pos"): + courrier_ref_interne = "QUESTION_POSITIONNEMENT" + + elif ( "survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "hot_eval"): + courrier_ref_interne = "EVAL_FORMATION" + + elif ( "survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "cold_eval"): + courrier_ref_interne = "EVAL_FORMATION" + + elif ("survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "human_eval"): + courrier_ref_interne = "EVAL_RESSOURCE_HUMAINE" + + elif ("survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "autre_eval"): + courrier_ref_interne = "EVAL_AUTRE" + + else : + mycommon.myprint(str(inspect.stack()[0][3]) + " Le type d'enquete est invalide ") + return False, " Le type d'enquete est invalide " + + """ + Recuperation du modele de courrier (unique) associé à l'envoie des questions de positionnement + le principe est de prendre le module du partenaire. si pas de modele du partenaire on + prend le modele par default + """ + + courrier_template_model = MYSY_GV.dbname['courrier_template'].count_documents( + {'ref_interne': str(courrier_ref_interne), + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': str(my_partner['recid'])} + ) + if (courrier_template_model == 1): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'ref_interne': str(courrier_ref_interne), + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + else: + courrier_template_model = MYSY_GV.dbname['courrier_template'].count_documents( + {'ref_interne': str(courrier_ref_interne), + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': "default"} + ) + if (courrier_template_model == 1): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'ref_interne': str(courrier_ref_interne), + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': "default"} + ) + else: + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " Aucun modèle de document configuré pour envoyer les demandes pour les questionnaires de positionnement ") + return False, " Aucun modèle de document configuré pour envoyer les demandes pour les questionnaires de positionnement " + + if ("contenu_doc" not in courrier_template_data.keys() or str( + courrier_template_data['contenu_doc']).strip() == ""): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le modèle de document ne contient pas de valeur 'contenu_doc' ") + return False, " Le modèle de document ne contient pas de valeur 'contenu_doc' " + + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = diction['token'] + + is_apprenant = 0 + new_diction['list_stagiaire_id'] = [] + if( "inscription_id" in local_survey_retval.keys() and local_survey_retval['inscription_id']): + new_diction['list_stagiaire_id'].append(ObjectId(str( local_survey_retval['inscription_id']))) + + + new_diction['list_session_id'] = [] + if ("session_id" in local_survey_retval.keys() and local_survey_retval['session_id']): + new_diction['list_session_id'].append(ObjectId(str(local_survey_retval['session_id']))) + + new_diction['list_class_id'] = [] + if ("class_id" in local_survey_retval.keys() and local_survey_retval['class_id']): + new_diction['list_class_id'].append(ObjectId(str(local_survey_retval['class_id']))) + + + new_diction['list_client_id'] = [] + new_diction['list_apprenant_id'] = [] + + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + servey_url = MYSY_GV.CLIENT_URL_BASE + "Survey/" + str(local_survey_retval['_id']) + + convention_dictionnary_data["servey_url"] = str(servey_url) + convention_dictionnary_data["servey_email"] = str(local_survey_retval['email']) + convention_dictionnary_data["servey_nom"] = str(local_survey_retval['nom']) + convention_dictionnary_data["servey_prenom"] =str(local_survey_retval['prenom']) + + if (related_rh_data and "_id" in related_rh_data.keys()): + convention_dictionnary_data["related_rh_data_is_valide"] = "1" + else: + convention_dictionnary_data["related_rh_data_is_valide"] = "0" + + if (related_rh_data and "civilite" in related_rh_data.keys()): + convention_dictionnary_data["related_rh_data_civilite"] = str(related_rh_data['civilite']).capitalize() + else: + convention_dictionnary_data["related_rh_data_is_valide"] = "neutre".capitalize() + + if( related_rh_data and "email" in related_rh_data.keys()): + convention_dictionnary_data["related_rh_data_email"] = str(related_rh_data['email']) + else: + convention_dictionnary_data["related_rh_data_email"] = "" + + if (related_rh_data and "prenom" in related_rh_data.keys()): + convention_dictionnary_data["related_rh_data_prenom"] = str(related_rh_data['prenom']) + else: + convention_dictionnary_data["related_rh_data_prenom"] = "" + + if (related_rh_data and "nom" in related_rh_data.keys()): + convention_dictionnary_data["related_rh_data_nom"] = str(related_rh_data['nom']) + else: + convention_dictionnary_data["related_rh_data_nom"] = "" + + + body = { + "params": convention_dictionnary_data + } + + + + html = contenu_doc_Template.render(params=body["params"]) + + subject_doc_Template = jinja2.Template(str(courrier_template_data['sujet'])) + subject = subject_doc_Template.render(params=body["params"]) + + + html_mime = MIMEText(html, 'html') + + # Creation de l'email à enoyer + msg = MIMEMultipart("alternative") + + if (str(partner_own_smtp_value) == "1"): + smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) + else: + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + + + if (str(partner_own_smtp_value) == "1"): + msg.attach(html_mime) + msg['From'] = partner_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = str(subject) + # msg['to'] = "billardman01@hotmail.com" + + msg['to'] = str(local_survey_retval['email']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(partner_SMTP_COUNT_user, partner_SMTP_COUNT_password) + + else: + msg.attach(html_mime) + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = str(subject) + # msg['to'] = "billardman01@hotmail.com" + + msg['to'] = str(local_survey_retval['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 envoyé " + str(val)) + + """ + Mettre à jour l'enquete pour dire que c'est envoyé + """ + now = str(datetime.now()) + + qry = {'_id': ObjectId(str(my_survey_id)), 'partner_owner_recid': str(my_partner['recid']), + 'valide': '1', 'locked': '0'} + result = MYSY_GV.dbname['survey'].find_one_and_update(qry, + { + '$unset': { + 'user_response' : "", + 'date_reponse' : "" + }, + '$set':{'statut':'1', 'date_update':str(now), + 'update_by':str(my_partner['_id']), + 'date_envoi':now} + } + ) + + + courrier_ref_interne = "" + if ("survey_type" in result.keys() and result['survey_type'] == "pos"): + courrier_ref_interne = "QUESTION_POSITIONNEMENT" + + elif ("survey_type" in result.keys() and result['survey_type'] == "hot_eval"): + courrier_ref_interne = "EVAL_FORMATION" + + elif ("survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "cold_eval"): + courrier_ref_interne = "EVAL_FORMATION" + + elif ("survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "human_eval"): + courrier_ref_interne = "EVAL_RESSOURCE_HUMAINE" + + elif ("survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "autre_eval"): + courrier_ref_interne = "EVAL_AUTRE" + + else: + mycommon.myprint(str(inspect.stack()[0][3]) + " Le type d'enquete est invalide ") + return False, " Le type d'enquete est invalide " + + """ + Apres que l'envoie est fait, on va loguer le traitement dans la collection : courrier_template_tracking_history + """ + if( "related_collection_id" in local_survey_retval.keys() and 'related_collection' in local_survey_retval.keys()): + # Cette demande d'enquete concerne une inscription + local_inscription_id = local_survey_retval['related_collection_id'] + + qry = {'_id': ObjectId(str(local_inscription_id)), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid'])} + + #print(" ### qry 010101 = ", qry) + + #print(" #### str(local_survey_retval['related_collection']) = ", str(local_survey_retval['related_collection'])) + + + partner_owner_recid = "partner_owner_recid" + if( str(local_survey_retval['related_collection']) == "ressource_humaine"): + partner_owner_recid = "partner_recid" + + """ print(" #### str(local_survey_retval['related_collection']) = ", str(local_survey_retval['related_collection'])) + """ + """print(" #### qry = ", + {'_id': ObjectId(str(local_inscription_id)), + 'valide': '1', + str(partner_owner_recid): str(my_partner['recid'])})""" + + inscription_data = MYSY_GV.dbname[str(local_survey_retval['related_collection'])].find_one({'_id': ObjectId(str(local_inscription_id)), + 'valide': '1', + str(partner_owner_recid): str(my_partner['recid'])}) + + + + + #print(" inscription_data = ", inscription_data) + + if (inscription_data and "session_id" in inscription_data.keys() and inscription_data['session_id']): + local_status, local_retval = module_editique.Editic_Log_History_Action_From_courrier_template_type_document_ref_interne( + my_partner, str(courrier_ref_interne), str(inscription_data['session_id']), 'inscription', + str(local_inscription_id),"") + if (local_status is False): + mycommon.myprint( + " WARNING : Impossible de logguer l'historique pour l'inscrit (2) : " + str(local_inscription_id)) + + + return True, " Les demandes d'enquete ont été envoyées " + + + 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 demande " + + + + +""" +CRON : +Initialisation de la liste des attestation pour les inscrits pour lesquels aucune initialisation +n'a ete faite. +""" +def Cron_Init_Attestation_Formation_With_Template(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'session_id', 'courrier_template_id', ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + + # Verifier la valididé du model de courrier + is_courrier_valide = MYSY_GV.dbname['courrier_template'].count_documents({'_id':ObjectId(str(diction['courrier_template_id'])), + 'valide':'1', + 'locked':'0', + 'default_version':'1', + 'partner_owner_recid':str(my_partner['recid'])}) + + if (is_courrier_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le modèle de courrier '" + str(diction['courrier_template_id']) + "' n'est pas valide ") + return False, " Le modèle de courrier '" + str(diction['courrier_template_id']) + "' n'est pas valide " + + + # A présent les inscriptions sont ok, le modele de courrier ok, on peut proceder à l'initialisation des attestations + + warning_message = " WARNING : " + is_warning_message = 0 + is_courrier_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'])}) + + + cpt = 0 + for my_inscription in MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid'])}): + + """ + 01/03/2025 : Regarder si cet inscrit a déjà une initialisation d'attestation faite + ou qu'une atteste existe déjà dans la collection : 'attestation_formation' + """ + is_init_attestation_exist_count = MYSY_GV.dbname['attestation_formation'].count_documents( + {'inscription_id':str(my_inscription['_id']), + 'partner_owner_recid':str(my_partner['recid']), + 'session_id':str(diction['session_id']), + 'valide':'1', + 'locked':'0'}) + + if( is_init_attestation_exist_count == 0 ): + # Aucune attestation (ni initialisée, ni envoyé), on peut donc initialiser l'attestation + new_attestation_data = {} + new_attestation_data['date_update'] = str(datetime.now()) + new_attestation_data['update_by'] = str(my_partner['_id']) + new_attestation_data['partner_owner_recid'] = str(my_partner['recid']) + new_attestation_data['valide'] = "1" + new_attestation_data['locked'] = "0" + new_attestation_data['statut'] = "0" + + new_attestation_data['inscription_id'] = str(my_inscription['_id']) + new_attestation_data['session_id'] = str(my_inscription['session_id']) + new_attestation_data['courrier_template_id'] = str(is_courrier_data['_id']) + + update_key = {} + update_key['inscription_id'] = str(my_inscription['_id']) + update_key['partner_owner_recid'] = str(my_partner['recid']) + + ret_val2 = MYSY_GV.dbname['attestation_formation'].find_one_and_update( + update_key, + {"$set": new_attestation_data}, + return_document=ReturnDocument.AFTER, + upsert=True, + ) + + if (ret_val2 is None): + mycommon.myprint(str(inspect.stack()[0][3]) + " - WARNING : Impossible d'initialiser l'attestation de formation pour l'inscription : "+str(my_inscription['_id'])) + warning_message = warning_message +" Impossible d'initialiser l'attestation de formation pour l'inscription : "+str(my_inscription['_id']) +" - " + is_warning_message = 1 + else: + cpt = cpt +1 + + + if( is_warning_message == 1 ): + return True, str(cpt) + " Attestation(s) initialisée(s) : "+str(warning_message) + + return True, str(cpt)+" Attestation(s) initialisée(s) " + + 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'initialiser les attestations" + + + +""" +CRON : +Cette fonction prepare et envoi les attestation de formation qui n'a pas déjà été envoyé + a chaque """ +def Cron_Send_Attestation_From_Session_By_Email_for_not_sent(tab_files, Folder, diction): + try: + + field_list_obligatoire = ['token', 'session_id', 'email_test', 'email_production',] + + 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 " + + + + for attestation_formation_data in MYSY_GV.dbname['attestation_formation'].find({"session_id":str(diction['session_id']), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':"1", + "locked":'0', + 'statut':'1', + }): + + + + # 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(attestation_formation_data['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" + + + #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(attestation_formation_data['inscription_id']) + new_diction_no_client['courrier_template_id'] = attestation_formation_data['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) + tab_saved_file_full_path = [] + local_status, local_retval = Cron_Sent_Attestation_Stagiaire_By_Email(tab_saved_file_full_path, Folder, new_diction_no_client) + + if (local_status is False): + mycommon.myprint(" WARNING impossible d'envoyer l'attestation de formation a l'apprenant : " + str(attestation_formation_data['inscription_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_From_courrier_template_type_document_ref_interne( + my_partner, "ATTESTATION_FORMATION", str(diction['session_id']), 'inscription', + str(attestation_formation_data['inscription_id']), + str(attestation_formation_data['courrier_template_id'])) + + # Mettre à jour avec la date d'envoi de l'attestation + updata_data = {} + updata_data['date_update'] = datetime.now().strftime("%d/%m/%Y %H:%M:%S") + updata_data['update_by'] = str(my_partner['recid']) + updata_data['statut'] = "1" + updata_data['date_envoie'] = datetime.now().strftime("%d/%m/%Y %H:%M:%S") + + + MYSY_GV.dbname['attestation_formation'].find_one_and_update({'_id':ObjectId(str(attestation_formation_data['_id'])), + 'partner_owner_recid':str(my_partner['recid'])}, + {'$set':updata_data}) + + + return True, " Les attestation 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 attestation pour un participant donné par email +Si le participants est rattaché à un client , alors on va mettre en copie de +l'email les contacts de communication du client de rattachement +""" +def Cron_Sent_Attestation_Stagiaire_By_Email(tab_files, Folder, diction): + try: + + field_list_obligatoire = ['token', 'inscription_id', 'courrier_template_id', 'email_test', 'email_production'] + + 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 le stagiaire est bien inscrit. Le statut de l'inscription doit etre "1" + is_inscription_valide = MYSY_GV.dbname['inscription'].count_documents( + {'_id': ObjectId(str(diction['inscription_id'])), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_inscription_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de l'inscription est invalide ") + return False, " L'identifiant de l'inscription est invalide " + + # Traitement de l'eventuel fichier joint + tab_files_to_attache_to_mail = [] + + for saved_file in tab_files: + """ + status, saved_file = 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" + """ + + file_to_attache_to_mail = MIMEBase('application', "octet-stream") + file_to_attache_to_mail.set_payload(open(saved_file, "rb").read()) + + encoders.encode_base64(file_to_attache_to_mail) + file_to_attache_to_mail.add_header('Content-Disposition', + 'attachment; filename="{0}"'.format(os.path.basename(saved_file))) + + new_node = {"attached_file": file_to_attache_to_mail} + tab_files_to_attache_to_mail.append(new_node) + + # Verification de la validité des adresses email_recu + """ + /!\ : Si l'email de test est repli, alors on considere que c'est un test, on ne prend pas en compte l'email de email_production. + Ceci pour forcer les utilisateur à ne remplir que l'email de prod s'il veulent l'envoyer en prod. + + Si l'adresse email_prodution = "defaul", cela veut dire qu'on envoie la convention à : + - l'adresse email du stagiaire et ses tuteurs (si les tuteurs on cochés la case 'inclu com' + + """ + + send_in_production = 0 + + tab_emails_destinataire = [] + + if ("email_test" in diction.keys() and diction['email_test']): + send_in_production = 0 + tab_email_test = str(diction['email_test']).replace(";", ",").split(",") + for email in tab_email_test: + email = email.strip() + if (mycommon.isEmailValide(email) is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'adresse email " + str(email) + " est invalide ") + return False, " L'adresse email " + str(email) + " est invalide " + tab_emails_destinataire = tab_email_test + + elif ("email_production" in diction.keys() and diction['email_production']): + send_in_production = 1 + if (str(diction['email_production']) != "default"): + tab_email_prod = str(diction['email_production']).replace(";", ",").split(",") + for email in tab_email_prod: + email = email.strip() + if (mycommon.isEmailValide(str(email)) is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'adresse email '" + str(email) + "' est invalide ") + return False, " L'adresse email " + str(email) + " est invalide " + tab_emails_destinataire = tab_email_prod + else: + send_in_production = 1 + # On va chercher les adresse email de communication du + local_dict = {'token': str(diction['token']), '_id': str(diction['inscription_id'])} + + local_status, tab_apprenant_contact = Inscription_mgt.Get_Statgiaire_Communication_Contact(local_dict) + if (local_status is False): + return local_status, tab_apprenant_contact + + tmp_tab = [] + # print(" ### tab_apprenant_contact = ", tab_apprenant_contact) + + for tmp in tab_apprenant_contact: + if ("email" in tmp.keys()): + tab_emails_destinataire.append((tmp['email'])) + + if (len(tab_emails_destinataire) <= 0): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Aucune adresse email n'a été fourni. ") + return False, " Aucune adresse email n'a été fourni. " + + # print(" ### tab_emails_destinataire = ", tab_emails_destinataire) + + # Verifier que le 'courrier_template_id' est valide + # Ici le template doit etre un email + is_courrier_template_id_valide = MYSY_GV.dbname['courrier_template'].count_documents( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'type_doc': 'email', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + if (is_courrier_template_id_valide != 1): + mycommon.myprint(str(inspect.stack()[0][3]) + " L'identifiant du modèle de courrier est invalide ") + return False, " L'identifiant du modèle de courrier est invalide " + + # Recupération des données du modèle de document + 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'])} + ) + + # Recuperation des eventuelles pièces jointes du modèle que courrier + local_dic = {} + local_dic['token'] = str(diction['token']) + local_dic['object_owner_collection'] = "courrier_template" + local_dic['object_owner_id'] = str(courrier_template_data['_id']) + + local_status, local_retval = attached_file_mgt.Get_List_object_owner_collection_Stored_Files(local_dic) + if (local_status is False): + return local_status, local_retval + + # print(" ### file stocké = ", local_retval) + + # Recuperation des fichiers attachés au modele de courrier, s'il y en a + for file in local_retval: + local_JSON = ast.literal_eval(file) + + saved_file = local_JSON['full_path'] + + file_to_attache_to_mail = MIMEBase('application', "octet-stream") + file_to_attache_to_mail.set_payload(open(saved_file, "rb").read()) + + encoders.encode_base64(file_to_attache_to_mail) + file_to_attache_to_mail.add_header('Content-Disposition', + 'attachment; filename="{0}"'.format(os.path.basename(saved_file))) + + new_node = {"attached_file": file_to_attache_to_mail} + tab_files_to_attache_to_mail.append(new_node) + + # Recuperation des données du stagaire + inscription_data = MYSY_GV.dbname['inscription'].find_one({'_id': ObjectId(str(diction['inscription_id'])), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + tab_apprenant_client_rattachement_contact = "" + # Verifier si le modele de courrier n'est par 'edit_by_client', au quel cas on verifie que l'appressant est bien lié à un client + if ("edit_by_client" in courrier_template_data.keys() and str(courrier_template_data['edit_by_client']) == "0"): + stagiaire_client_id = "" + + if ("client_rattachement_id" in inscription_data.keys() and inscription_data['client_rattachement_id']): + stagiaire_client_id = str(inscription_data['client_rattachement_id']) + local_diction = {"token":str(diction['token']), "_id":stagiaire_client_id } + + print(" ##### local_diction pr Get_Partner_Client_Communication_Contact= ", local_diction) + local_status, partner_client_contact_communication = partner_client.Get_Partner_Client_Communication_Contact(local_diction) + + if (local_status is True): + 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"])) + + tab_apprenant_client_rattachement_contact = ",".join(tab_local_email_production) + + + tab_participant = [] + tab_participant.append(inscription_data['_id']) + + """ + update du 30/01/2024 + si le participant à un apprenant_id, alors on recupere la valeur de l'apprenant id. On doit travailler sur cette dernier. + En general, avant d'envoyer une convocation ou convention, l'inscription est validée et donc le dossier apprenant existe. + Du coup si tout se passe bien, dans cette fonction, on travaillera tjrs avec l'apprenant_id + """ + tab_apprenant = [] + if( "apprenant_id" in inscription_data.keys() and inscription_data['apprenant_id']) : + tab_apprenant.append(ObjectId(str(inscription_data['apprenant_id']))) + + + + # Recuperations des info de la session de formation + session_data = MYSY_GV.dbname['session_formation'].find_one( + {'_id': ObjectId(str(inscription_data['session_id'])), 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + tab_session = [] + tab_session.append(session_data['_id']) + + # Recuperation du titre de la formation + class_data = MYSY_GV.dbname['myclass'].find_one( + {'internal_url': str(session_data['class_internal_url']), 'valide': '1', + 'partner_owner_recid': str(my_partner['recid']), 'locked': '0'}) + + tab_class = [] + tab_class.append(class_data['_id']) + + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = diction['token'] + new_diction['list_stagiaire_id'] = tab_participant + new_diction['list_session_id'] = tab_session + new_diction['list_class_id'] = tab_class + new_diction['list_client_id'] = [] + new_diction['list_apprenant_id'] = tab_apprenant + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + body = { + "params": convention_dictionnary_data, + } + + orig_file_name = None + outputFilename = None + # Verifier s'il s'agit d'un document à envoyer avec une version de pièce jointe. + if ("joint_pdf" in courrier_template_data.keys() and str(courrier_template_data['joint_pdf']) == "1"): + # Il s'agit bien d'un envoie avec 'contenu_doc' en pièce jointe PDF + """ + 1 - Creation du PDF + """ + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + + sourceHtml = contenu_doc_Template.render(params=body["params"]) + + todays_date = str(date.today().strftime("%d/%m/%Y")) + ts = datetime.now().timestamp() + ts = str(ts).replace(".", "").replace(",", "")[-5:] + + orig_file_name = "Attestation_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" + outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) + + # open output file for writing (truncated binary) + resultFile = open(outputFilename, "w+b") + + # convert HTML to PDF + pisaStatus = pisa.CreatePDF( + src=sourceHtml, # the HTML to convert + dest=resultFile) # file handle to receive result + + # close output file + resultFile.close() + + # Attachement du fichier joint + file_to_attache_to_mail = MIMEBase('application', "octet-stream") + file_to_attache_to_mail.set_payload(open(outputFilename, "rb").read()) + + encoders.encode_base64(file_to_attache_to_mail) + file_to_attache_to_mail.add_header('Content-Disposition', + 'attachment; filename="{0}"'.format(os.path.basename(outputFilename))) + + new_node = {"attached_file": file_to_attache_to_mail} + tab_files_to_attache_to_mail.append(new_node) + + ## Creation du mail au format email + + corps_mail_Template = jinja2.Template(str(courrier_template_data['corps_mail'])) + + sourceHtml = corps_mail_Template.render(params=body["params"]) + + html_mime = MIMEText(sourceHtml, 'html') + + # Creation de l'email à enoyer + msg = MIMEMultipart("alternative") + + else: + # Il s'agit d'une simple email + + ## Creation du mail au format email + + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + + sourceHtml = contenu_doc_Template.render(params=body["params"]) + + html_mime = MIMEText(sourceHtml, 'html') + + # Creation de l'email à enoyer + msg = MIMEMultipart("alternative") + + """ + Recuperation des parametre SMTP du partner si le client a decidé d'utiliser son propre smpt + """ + partner_own_smtp_value = "0" + partner_own_smtp = MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'partner_smtp', + 'valide': '1', + 'locked': '0'}) + + if (partner_own_smtp and "config_value" in partner_own_smtp.keys()): + partner_own_smtp_value = partner_own_smtp['config_value'] + + if (str(partner_own_smtp_value) == "1"): + partner_SMTP_COUNT_password = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_user_pwd', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_smtpsrv = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_server', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_user = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_user', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_From_User = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_count_from_name', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_port = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_count_port', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + if (str(partner_own_smtp_value) == "1"): + smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) + else: + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + + if (str(partner_own_smtp_value) == "1"): + msg.attach(html_mime) + msg['From'] = partner_SMTP_COUNT_From_User + msg['Cc'] = tab_apprenant_client_rattachement_contact + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = courrier_template_data['sujet'] + # msg['to'] = "billardman01@hotmail.com" + toaddrs = ",".join(tab_emails_destinataire) + msg['to'] = str(toaddrs) + + # Attacher l'eventuelle pièces jointes + for myfile in tab_files_to_attache_to_mail: + msg.attach(myfile['attached_file']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(partner_SMTP_COUNT_user, partner_SMTP_COUNT_password) + + else: + msg.attach(html_mime) + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User + msg['Cc'] = tab_apprenant_client_rattachement_contact + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = courrier_template_data['sujet'] + # msg['to'] = "billardman01@hotmail.com" + toaddrs = ",".join(tab_emails_destinataire) + msg['to'] = str(toaddrs) + + for myfile in tab_files_to_attache_to_mail: + msg.attach(myfile['attached_file']) + + 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 envoyé " + str(val)) + + """ + # Ajout de l'evenement dans l'historique + """ + + # L'action n'est loggué pour les envois reels (en prod) + if (send_in_production == 1): + now = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + history_event_dict = {} + history_event_dict['token'] = 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'] = "Attestation de formation 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): + mycommon.myprint( + " WARNING : Impossible de logguer l'historique pour l'évènement : " + str(history_event_dict)) + + + """ + Après avoir loggé l'envoie reelle en production, on va aller stocker le document dans la collection : download_files + si et seulement si on bien un fichier PDF (voir variables : orig_file_name et outputFilename) + """ + + print(" ### orig_file_name = ", orig_file_name) + print(" ### outputFilename = ", outputFilename) + + + if (orig_file_name and outputFilename): + new_file = {} + new_file['token'] = diction['token'] + type_document = "Attestation" + + new_file['file_business_object'] = str(orig_file_name) + + new_file['file_name'] = str(orig_file_name) + new_file['status'] = "1" + new_file['type_document'] = str(type_document) + + new_file['object_owner_collection'] = "partner_client" + new_file['object_owner_id'] = str(inscription_data['client_rattachement_id']) + + new_file['file_name_to_store'] = outputFilename + + # print(" ### new_file new_file = ", new_file) + local_status, local_retval = attached_file_mgt.Internal_Usage_Store_User_Downloaded_File( + MYSY_GV.upload_folder, new_file) + + if (local_status is False): + print(" ## WARNINGGG Impossible de stocker le fichier d'attestation") + + return True, "L'email a été correctement envoyé " + + 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 l'attestation de formation par email " + + +""" +Cette Fonction permet d'envoyer l'email de notification +au gestionnaire de formation du traitement automatique d'une session. + +Par exemple, lorsque le système envoi automatiquement les convocations, les questionnaires de positionnement etc +le gestionnaire de l'organisme de formation doit etre notifié par email + +L'email de notification est envoyé au contact principal du partenaire + +""" +def Cron_Qualiopi_Automatic_Traitement_Notification(diction): + + try: + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'session_id', 'tab_message'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + 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'] = [] + new_diction['list_apprenant_id'] = [] + + new_diction['list_session_id'].append(ObjectId(str(diction['session_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 + + """ + Recuperer le modèle de document + """ + local_diction = {} + local_diction['ref_interne'] = "QUALIOPI_AUTOMATIC_DOCUMENT_SENDING" + local_diction['type_doc'] = "email" + local_diction['partner_owner_recid'] = str(my_partner['recid']) + + courrier_data_status, courrier_data_retval = mycommon.Get_Courrier_Template_Include_Default_Data(local_diction) + if (courrier_data_status is False): + return courrier_data_status, courrier_data_retval + + 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 'QUALIOPI_AUTOMATIC_DOCUMENT_SENDING' n'est pas correctement configuré ") + return False, " Le modèle de courrier 'QUALIOPI_AUTOMATIC_DOCUMENT_SENDING' n'est pas correctement configuré " + + # Recuperation des donnes smtp + local_stpm_status, partner_SMTP_COUNT_smtpsrv, partner_own_smtp_value, partner_SMTP_COUNT_password, partner_SMTP_COUNT_user, partner_SMTP_COUNT_From_User, partner_SMTP_COUNT_port = mycommon.Get_Partner_SMTP_Param( + my_partner['recid']) + + if (local_stpm_status is False): + return True, " WARNING : Impossible d'envoyer l'email de notification du traitement automatique (2) " + + body = { + "params": dictionnary_data, + } + + print(" ### MYSY_GV.O365_SMTP_COUNT_password = ", MYSY_GV.O365_SMTP_COUNT_password) + print(" ### MYSY_GV.O365_SMTP_COUNT_smtpsrv = ", MYSY_GV.O365_SMTP_COUNT_smtpsrv) + print(" ### MYSY_GV.O365_SMTP_COUNT_port = ", MYSY_GV.O365_SMTP_COUNT_port) + print(" ### partner_SMTP_COUNT_user = ", partner_SMTP_COUNT_user) + print(" ### MYSY_GV.O365_SMTP_COUNT_user = ", MYSY_GV.O365_SMTP_COUNT_user) + + + if (str(partner_own_smtp_value) == "1"): + smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) + else: + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(MYSY_GV.O365_SMTP_COUNT_user, MYSY_GV.O365_SMTP_COUNT_password) + + # 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') + + # Creation de l'email à envoyer + msg = MIMEMultipart("alternative") + + if (str(partner_own_smtp_value) == "1"): + msg.attach(html_mime) + msg['From'] = partner_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = sujetHtml + + # toaddrs = ",".join(client_email) + dest_email = str(dictionnary_data['company_data']['contact_mail']) + print(" ### dest_email 010101 = ", dest_email) + + msg['to'] = dest_email + + val = smtpserver.send_message(msg) + print(" Email de notification envoyé " + str(val)) + + else: + msg.attach(html_mime) + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = sujetHtml + + # toaddrs = ",".join(client_email) + dest_email = str(dictionnary_data['company_data']['contact_mail']) + print(" ### dest_email 01010222 = ", dest_email) + + msg['to'] = dest_email + val = smtpserver.send_message(msg) + print(" Email de notification envoyé " + str(val)) + + smtpserver.close() + + + return True, "L'email de notification a été correctement envoyé " + + 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 l'email de notification du traitement automatique" diff --git a/Log/log_file.log b/Log/log_file.log index 3e9e2a3..0983a24 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -3079500,3 +3079500,9540 @@ INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_P INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - INFO:root:2025-02-27 19:28:58.107549 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ 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-27 20:44:48.511011 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 20:44:48.511994 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 20:44:48.511994 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 20:44:48.511994 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 20:44:48.511994 : ++ 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-27 20:44:58.103669 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 20:44:58.103669 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 20:44:58.103669 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 20:44:58.103669 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 20:44:58.104678 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 20:48:19.260360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:19.503522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.507916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.511766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.515769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.519263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.526496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:19.552216 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:19.559220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.564428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.584790 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:19.632563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.636283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.642246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.651433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:19.666155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:19.674713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.684082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:19.688563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:19.704396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:19.730399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.451166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.454163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.459172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.465163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.469172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.478829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.481289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.490374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.495885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.500274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.504840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.515533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.521289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.528362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.534367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.541754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.546899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.559617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.569470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.577528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.581526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:34.585931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.597725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:34.609782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:40.110950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:40.115608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:40.120250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:40.125375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:40] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:40.131222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:40.136243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:40.145273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:40] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:45.200551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:45.203551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:45.207550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:45.211553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:45.216551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:45.221555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:45.226816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:45.236408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:45.241878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:45.252270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:48:59.635464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 20:48:59.639331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:59] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:48:59] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:49:59.032203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:49:59] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:54:28.456662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:54:28] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 20:55:34.918074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 20:55:34] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-27 21:18:27.740895 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 21:18:27.740895 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 21:18:27.740895 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 21:18:27.740895 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 21:18:27.740895 : ++ 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-27 21:18:41.827142 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 21:18:41.827142 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 21:18:41.827142 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 21:18:41.828146 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 21:18:41.828146 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 21:18:41.896116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:18:41.899887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:18:41] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:18:41] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:18:52.549391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:18:52] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:25:31.586432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:25:31.653110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:25:31] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:25:31] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:26:02.986969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:26:02] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:30:05.140027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:30:05] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:30:29.621673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:30:29] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:31:17.816609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:31:17] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:31:49.849116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:31:49] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:32:46.836830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:32:46] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:33:16.291024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:33:16] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:09.574972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.583798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.598961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.610710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:09.636101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:09.670300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.716893 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-02-27 21:34:09.716893 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:09.850230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.856197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.867436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.879777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:09.890608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.903943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:09.916580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:09.928036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.938035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:09.981888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:09.987648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:09] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.008300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:10.018446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.030500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.038727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.050672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.069381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:10.098219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.131947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:10.139880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.150648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.161509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:10.176553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:10.193349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.221709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:25.228921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:25.235175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:25.242174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.252056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:25.262072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.274936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.286702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.297204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.307502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:25.316453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:25.325460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.337869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:25.347240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.355339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.361222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 21:34:25.366390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:25.379626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:25] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:34:26.833183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:34:26] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:40:16.317681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:40:16] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 21:40:16.339144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 21:40:16] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\formulaire_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-27 22:00:01.490428 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 22:00:01.490428 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 22:00:01.490428 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 22:00:01.490428 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 22:00:01.490428 : ++ 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\\formulaire_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-27 22:00:24.443100 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 22:00:24.444100 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 22:00:24.444100 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 22:00:24.444100 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 22:00:24.444100 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 22:25:45.375347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:25:45] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:25:45.449461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:25:45] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\formulaire_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-27 22:28:11.675155 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 22:28:11.676191 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 22:28:11.676191 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 22:28:11.676191 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 22:28:11.676191 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 22:28:51.460589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:28:51] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:29:01.004733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:29:01] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:30:32.773972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:30:32] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:32:05.183263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:32:05] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:32:10.068739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:32:10] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:34:23.968334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:34:23] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:34:25.786597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:34:25] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:34:46.475714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:34:46] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:34:46.954295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 22:34:46.959803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:34:46] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:34:46] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:36:17.956611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:36:17] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:36:26.010445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:36:26] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 22:36:26.468551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 22:36:26.475008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:36:26] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 22:36:26] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 12:08:10.084582 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:08:10.084582 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:08:10.085575 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:08:10.085575 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:08:10.085575 : ++ 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-28 12:08:23.599837 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:08:23.599837 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:08:23.599837 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:08:23.599837 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:08:23.599837 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:13:01.778697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:01] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:01.920211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:01.926508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:01.933762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:01.941314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:01.948399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:01.955399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:02.003492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:02.019461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:02.031101 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:02.065632 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:02.177094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:02.187190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:02.197841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:02.206847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:02.246104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:02.267101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:02.285649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:02.298429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:02.306789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:02.352361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.791522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.795298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.799297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.806298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.812156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.820425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.823012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.839297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.844895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.851015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.857167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.872094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.878795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.888002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.889004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.899001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.913860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.923384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.931706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.947293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.952932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:14.957932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.974677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:14.988034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:21.552518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:21.562832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:21.568027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:21.575403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:21.588152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:21.600968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:21.616310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:27.747158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:27.753426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:27.763897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:27.775608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:27.781484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:27.793303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:27.810585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:13:27.828722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:27.840718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:27.853595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:28] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:28] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:34.886809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:34] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:13:35.035229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:13:35] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:01.311836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.319240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.325230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.332785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.343495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:01.357342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.363158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.374776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:01.395152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.402659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.412612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:01.426861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:01.435985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:01.448880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:01.455404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.465254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:01.473813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:14:01.481969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:01] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:03.513646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:13.601292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:13] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:14:13.711155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:14:13] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.583178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.588175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.600523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.608102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.612106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.628927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.644570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.653900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.674548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.680942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.686945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.696046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.718303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.738073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.753345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.767705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.776219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.789644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.799020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.823986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.845769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:16:46.855794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.869747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:16:46.886620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:16:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:17:04.336098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:04] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:17:05.237542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:17:05.243944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:05] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:17:59.537748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:17:59.552027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:17:59.559635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:17:59.566914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:17:59.575448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:17:59.588452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:17:59.600609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:17:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:18:03.267655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:18:11.416995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:12] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:18:12.575516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:18:12.582552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:18:12.589661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:18:12.595912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:18:15.597135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:18:29.057445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:18:30.843702 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-28 12:18:30.849313 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-28 12:18:31.364511 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-28 12:18:31.369498 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-28 12:18:31.908100 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-28 12:18:31.912112 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:31] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:18:31.996000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:18:32.002491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:18:53.555860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:18:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.607613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.614813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.623821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.627178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.634664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.640663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.657628 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-02-28 12:20:08.658640 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.827992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.832056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.837543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.844438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.851452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.860263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.866401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.878752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.885353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.893359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.899544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.913421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.928208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.942250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.948739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.958236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.981731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:08.989371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:08.994936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:09.002460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:09] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:09] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:09.020846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:09] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:09.032087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:09.041948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:09.062234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:09] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:14.725916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:14.729976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:14.733072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:14.738122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:14.744293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:14.756298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:14.763928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:20.945714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:20.954729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:20.962727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:20.977305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:20.987390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:20.993404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:20:21.010722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:21.039672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:21.056741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:21.074258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:30.720441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:30] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:30.818808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:30] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:34.678081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:34] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:34.772829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:34] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:42.285437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:42] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:42.375917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:47.281715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:47] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:20:47.367008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:20:47] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:22:39.489987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:22:39] "GET /myclass/api/Send_document_from_base_document_automatic_setup/ HTTP/1.1" 404 - +INFO:root:2025-02-28 12:23:02.631901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:23:02.633404 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:23:02.640373 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:23:02.643373 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:23:02.647373 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:23:02.651623 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:23:02] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:24:47.982346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:24:48] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:24:48.089308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:24:48] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:25:04.431497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:25:04.432498 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:25:04.440991 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:25:04.444990 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:25:04.448932 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:25:04.470066 : Cron_Init_Survey_Tab_For_Inscrit_Not_Init L'identifiant du formulaire est invalide +INFO:root:2025-02-28 12:25:04.475115 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:25:04] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 12:26:47.623902 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:26:47.623902 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:26:47.624903 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:26:47.624903 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:26:47.624903 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:27:32.091092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:27:32.091092 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:27:32.697891 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:27:32.699889 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:27:32.701887 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:27:32.716883 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:27:32] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 12:29:30.599339 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:29:30.599339 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:29:30.599339 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:29:30.600336 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:29:30.600336 : ++ 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\\Job_Cron_Common.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-28 12:29:51.275083 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:29:51.276085 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:29:51.276085 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:29:51.276085 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:29:51.276085 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:29:55.701357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:29:55.701357 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:29:56.284903 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:29:56.286899 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:29:56.288899 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:29:56.304914 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:29:56] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 12:31:03.211141 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:31:03.211141 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:31:03.212141 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:31:03.212141 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:31:03.212141 : ++ 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\\Job_Cron_Common.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-28 12:31:26.733848 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:31:26.733848 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:31:26.733848 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:31:26.733848 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:31:26.733848 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:31:32.539663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:31:32.539663 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:31:33.168962 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:31:33.170943 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:31:33.172980 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:31:33.184940 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:31:33] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 12:33:14.248811 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:33:14.248811 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:33:14.248811 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:33:14.248811 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:33:14.248811 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:33:19.086935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:33:19.086935 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:33:19.782732 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:33:19.785071 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:33:19.787071 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:33:19.803305 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:33:19] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 12:38:46.265681 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:38:46.265681 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:38:46.266681 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:38:46.266681 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:38:46.266681 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:38:50.534402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:38:50.534402 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:38:51.134762 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:38:51.136758 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:38:51.138762 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:38:51.152758 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:38:51] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 12:39:48.752864 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:39:48.752864 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:39:48.752864 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:39:48.752864 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:39:48.752864 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:40:04.776887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:40:04.776887 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:40:05.377697 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:40:05.380786 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:40:05.382786 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:40:05.397766 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:40:05] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 12:40:36.157395 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:40:36.157395 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:40:36.157395 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:40:36.157395 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:40:36.157395 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:40:36.196130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:40:36.197125 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:40:36.759151 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:40:36.761359 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:40:36.763378 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:40:36.810010 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:40:36] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:41:48.364081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:41:48.364081 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:41:48.368716 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:41:48.371749 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:41:48.373749 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:41:48.390480 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:41:48] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 12:43:21.294042 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:43:21.294042 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:43:21.294042 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:43:21.294042 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:43:21.294042 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:43:30.796367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:43:30.799372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:43:30] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:43:30] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:43:52.928032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:43:53.576614 : Send_Survey_TabIds -[Errno 11001] getaddrinfo failed - Line : 1400 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:43:53] "POST /myclass/api/Send_Survey_TabIds/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 12:47:21.697637 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:47:21.697637 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:47:21.697637 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:47:21.697637 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:47:21.697637 : ++ 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\\Job_Cron_Common.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-28 12:55:16.658658 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:55:16.658658 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:55:16.658658 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:55:16.658658 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:55:16.658658 : ++ 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-28 12:55:27.127974 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 12:55:27.127974 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 12:55:27.127974 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 12:55:27.127974 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 12:55:27.128974 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 12:55:41.624939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:55:41.628491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:55:41.630905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:55:41.635615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:55:41.639610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:55:41.645615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:55:41.650622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:55:41.656614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:55:41.664615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:55:41.683402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:55:49.227820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:55:49.230834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:49] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:55:49] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:56:05.518413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:56:05.519426 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:56:06.081657 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:56:06.083701 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:56:06.085693 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 12:56:06.152328 : Cron_Send_Survey_TabIds -[Errno 11001] getaddrinfo failed - Line : 1684 +INFO:root:2025-02-28 12:56:06.155372 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:06] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:56:21.189705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:56:21.192410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:56:21.196153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:56:21.200153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:56:21.205167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:56:21.210982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:56:21.217779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:56:21.225962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:56:21.236153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:56:21.244794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:56:24.613302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:56:24.615784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:24] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 12:56:24] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 12:57:47.383736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 12:57:47.383736 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 12:57:47.388749 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 12:57:47.390749 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 12:57:47.392727 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 13:01:00.339540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:01:00.340913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:01:00.346762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:01:00.351787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:01:00.355785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:01:00.362458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:01:00.367038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:01:00.379634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:01:00.381632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:01:00.393880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:00] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:01:04.568311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:01:04.571328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:04] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:04] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:01:57.677891 : Cron_Send_Survey_TabIds -Connection unexpectedly closed - Line : 1713 +INFO:root:2025-02-28 13:01:57.679896 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:01:57] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:02:03.050983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:03.054137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:03.056641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:03.062639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:03.063637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:03.069050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:02:03.077438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:03.083998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:02:03.092042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:03.097289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:02:06.765768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:06.769054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:06] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:02:06] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:02:20.834269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:02:20.834269 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-28 13:02:20.838267 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:02:20.840267 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:02:20.843270 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 13:03:52.257347 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:03:52.257347 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:03:52.257347 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:03:52.257347 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:03:52.257347 : ++ 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\\Job_Cron.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-28 13:04:35.682242 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:04:35.683244 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:04:35.683244 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:04:35.683244 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:04:35.683244 : ++ 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\\Job_Cron.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-28 13:09:45.609875 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:09:45.610873 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:09:45.610873 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:09:45.610873 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:09:45.610873 : ++ 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-28 13:10:11.906082 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:10:11.906082 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:10:11.906082 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:10:11.906082 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:10:11.906082 : ++ 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\\Job_Cron.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-28 13:11:35.131848 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:11:35.131848 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:11:35.131848 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:11:35.131848 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:11:35.131848 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:12:25.721788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:25.724027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:25.727217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:25.730217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:25.737215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:25.742218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:25.751224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:25.762225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:25.768223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:25] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:25.779296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:25] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:34.964728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:34] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:35.001961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:35] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:45.060432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:45] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:45.100326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:45] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:52.594286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:54.866960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:54.871337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:54.875677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:54.881059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:54.883054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:54.897030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:54.905083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:54.913988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:54.915991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:54.928076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:12:56.931497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:12:56.934509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:56] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:12:56] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:14:01.353310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:14:03.262165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:14:03.264186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:14:03.268474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:14:03.272966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:14:03.274954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:14:03.282670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:14:03.292593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:14:03.295648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:14:03.302311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:14:03.313313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:14:20.754389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:14:20.754389 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:14:21.493569 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:14:21.502801 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:14:21.504801 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-28 13:14:57.237832 : Cron_Send_Survey_TabIds -Connection unexpectedly closed - Line : 1713 +INFO:root:2025-02-28 13:14:57.245823 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c19b30408a1c854742d121 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:14:57] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 13:17:20.670340 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:17:20.670340 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:17:20.670340 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:17:20.670340 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:17:20.670340 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:17:20.707903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:17:23.876246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:23.880520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:23.884249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:23.887255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:23.889990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:17:23.897776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:23.907189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:23] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:17:23.910676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:23.918320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:23.924947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:23] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:17:37.726509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:37.729019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:37] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:37] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:17:42.768378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:42.771824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:42.776302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:42.780913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:17:42.788563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:42.794615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:42.801978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:42.802995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:17:42.814944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:42.820999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:43] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:17:50.436694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:17:50.436694 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:17:51.120117 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:17:51.123340 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:17:51.125341 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:17:51] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 13:19:21.241695 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:19:21.241695 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:19:21.241695 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:19:21.241695 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:19:21.241695 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:19:37.063732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:19:37] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:19:37.547836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:19:37.551129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:19:37] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:19:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:20:50.639051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:50.642190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:50.646408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:50.649714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:50.652723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:20:50.659327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:50.664573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:20:53.382491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:53.384496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:53.389564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:53.394240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:53.396452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:20:53.405401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:53.409497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:53.414461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:20:53.420877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:20:53.430445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:20:59.950966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:20:59] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:20:59.997996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:21:00] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:21:04.266764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:21:04] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:21:04.311562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:21:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:21:08.777307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:21:08] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:21:08.817239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:21:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:21:15.721339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:21:15] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:21:15.758594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:21:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:21:39.387875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:21:39.387875 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:21:39.956059 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:21:39.959055 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:21:39.961057 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:21:39] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:22:11.067695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:22:11.070403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:22:11.075110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:22:11.078118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:22:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:22:11.084917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:22:11.089010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:22:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:22:11.094875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:22:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:22:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:22:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:22:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:22:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 13:23:02.055717 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:23:02.055717 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:23:02.055717 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:23:02.055717 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:23:02.055717 : ++ 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\\Job_Cron.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-28 13:23:17.634374 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:23:17.634374 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:23:17.634374 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:23:17.634374 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:23:17.634374 : ++ 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\\Job_Cron.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-28 13:23:31.959571 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:23:31.959571 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:23:31.959571 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:23:31.959571 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:23:31.959571 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:23:45.047533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:23:45.047533 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:23:45.963676 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:23:45.966674 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:23:45.969672 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:23:45] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:24:48.166028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:24:48.208528 : Delete_List_SessionFormation1 Document supprimé. La session_id 67c1a9d996857014f893246f a été correctement supprimée +INFO:root:2025-02-28 13:24:48.212523 : Delete_List_SessionFormation1 Document supprimé. La session_id 67c1a9d996857014f893246d a été correctement supprimée +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:24:48] "POST /myclass/api/Delete_List_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:24:48.327424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:24:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:25:15.093165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:25:15.093165 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:25:15.096666 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:25:15.098694 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:25:15.101024 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:25:15] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ 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-28 13:27:26.327933 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:27:26.327933 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:27:26.329072 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:27:26.329072 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:27:26.329072 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:27:46.011613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:27:46.815159 : Add_Update_SessionFormation -'' - ERRORRRR AT Line : 540 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:27:46] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ 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-28 13:28:54.141964 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:28:54.142962 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:28:54.142962 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:28:54.142962 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:28:54.142962 : ++ 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-28 13:30:47.584938 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:30:47.584938 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:30:47.584938 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:30:47.584938 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:30:47.584938 : ++ 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-28 13:30:57.338141 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:30:57.338141 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:30:57.338141 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:30:57.338141 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:30:57.338141 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:31:10.810397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:31:11] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:31:11.259327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:31:11.263985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:31:11] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:31:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:03.814669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:03.941332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:03.946895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:03.950399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:03] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:03.960815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:03.963043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:03.972499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:03] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:03] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:03.980477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:03.983475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:03.997071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:04.007738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.210089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.221083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.229084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.232080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.237507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.248503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.262265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.277266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.284639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.303448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.310451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.318452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.332250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.336800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.346636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.382484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.386203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.396044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.408242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.437282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.448444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.457492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:05.484255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:05.493152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:34:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:34:16.199809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:34:16.199809 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:34:16.813759 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:34:16.815757 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:34:16.818761 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_98189.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_19326.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: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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_14119.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:root:2025-02-28 13:35:18.107773 : Sent_Convention_Stagiaire_By_Email_By_Partner_client -Connection unexpectedly closed - Line : 11486 +INFO:root:2025-02-28 13:35:18.107773 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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

 

\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_67474.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: * 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-28 13:36:35.304037 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:36:35.304037 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:36:35.304037 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:36:35.304037 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:36:35.304037 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:36:35.344444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:36:35.344444 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:36:35.958857 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:36:35.960891 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:36:35.962894 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_20157.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_48284.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: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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_70388.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: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 13:37:36.583056 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:37:36.583056 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:37:36.583056 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:37:36.583056 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:37:36.583056 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:37:40.664339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:37:40.664339 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:37:41.240541 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:37:41.242556 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:37:41.244558 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_98462.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_06039.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: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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_12117.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_27757.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-28 13:38:05.186902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:05.190182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:05.194294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:05.197906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:05.203400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:05] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:05.211157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:05.221760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:05] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:05] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:08.077804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:08.080795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:08.085246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:08.090905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:08.098303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:08.101784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:08.112851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:08.121993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:08.128770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:08.138414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:08] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:14.829944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:14.831929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:14] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:14] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:17.859106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:17.862442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:17.865434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:17.869443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:17.873441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:17.881975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:17.888364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:38:17.898940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:17] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:17.902942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:17] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:38:17.915767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:17] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:17] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:38:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:39:24.939090 : Cron_Send_Survey_TabIds -Connection unexpectedly closed - Line : 1713 +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/03/2025 25/03/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 , 28/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_37785.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/03/2025 25/03/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 , 28/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_74972.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/03/2025 25/03/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 , 28/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_98893.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:39:26] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:40:21.407925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:40:23.587122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:40:23.592120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:40:23.598565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:40:23.607813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:40:23.611811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:40:23.621865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:40:23.633526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:23] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:40:23.648049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:40:23.665395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:40:23.669762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:23] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:40:51.774916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:51] "POST /myclass/api/Get_Collection_Eligible_Champ_Specific/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:40:51.782989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:40:51.785598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:51] "POST /myclass/api/Get_Collection_Eligible_Champ_Specific/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:40:51.794251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:51] "POST /myclass/api/get_list_specific_field_partner_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:40:51] "POST /myclass/api/get_list_specific_field_partner_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.725696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:41:01.733278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:41:01.739812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:41:01.745073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.758943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.773219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.783420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:41:01.788704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.805323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.815731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:41:01.824298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.833718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:41:01.844906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.855560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.861564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.871639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.887425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:01.902157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:01] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:04.763110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:17.632119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:17] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:17.749227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:17] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:30.769454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:30] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:30.875994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:30] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:43.120886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:43] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:43.317177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:43] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:56.820973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:56] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:41:57.016741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:41:57] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:42:09.099338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:42:09] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:42:09.274584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:42:09] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.210400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.217449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.226766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.233012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.246858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.260566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.267376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.280927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.299590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.304571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.316425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.325153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.334579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.344066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.369247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.388966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.394333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.407902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.418257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.432875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.446473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:02.457943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.466489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:02.482626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:14.899884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:15] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:15.841485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:15.846556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:15] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:20.669954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:20.676096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:20.684688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:20.698987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:20.709240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:20.717445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:20.726500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:30.697888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:36.756752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:37] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:37.711756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:37.717759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:37.720996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:44:37.734088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:37] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:42.398749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:44:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:44:53.960664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:45:15.588106 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-28 13:45:15.591106 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-28 13:45:37.203742 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-28 13:45:37.211167 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-28 13:45:58.810393 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-28 13:45:58.813393 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:45:58] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:45:58.897499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:45:58.903758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:45:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:45:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:20.857609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:24.392527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:24.398023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:24.404434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:24.410513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:24.427799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:24.443905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:24.460839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:24.473335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:24.507116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:24.517788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:32.703314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:32.721580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:32.728047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:32.736403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:32.743403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:32.762131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:32.773123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:57.830603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:57.839738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:57.849642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:57.859961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:57.873972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:57.892866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:57.896882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:57.913642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:57] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:57] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:46:57.932127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:46:57.942594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:58] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:58] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:58] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:46:58] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:47:19.880255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:47:19.881250 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:47:19.887633 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:47:19.891637 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:47:19.895994 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_99776.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_04733.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: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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_84488.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_84342.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: * 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-28 13:49:40.056897 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 13:49:40.056897 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 13:49:40.056897 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 13:49:40.056897 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 13:49:40.056897 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 13:49:40.111380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:49:42.398019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:49:42.412026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:49:42.420259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:49:42.429258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:49:42.438219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:49:42.449879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:49:42.452867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:49:42.468873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:49:42.486745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:49:42.502668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:43] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:49:47.742577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:49:47.748259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:47] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:49:47] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:50:05.546328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:50:05.546328 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 13:50:06.796796 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 13:50:06.800980 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 13:50:06.805104 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_18271.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_42053.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: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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_22055.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_50741.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-28 13:51:08.881242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:51:08.888412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:51:08.896406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:51:08.909124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:51:08.921711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:51:08.935005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:51:08.951364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:51:08.971659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:51:08.981210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:51:09.001818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:09] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:51:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:54:24.720307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:54:24.725712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:54:24] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:54:24] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:55:50.924012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:55:50.930203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:55:50.937665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:55:50.945288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:55:50.951297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:50] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:55:50.963033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:55:50.977180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:50] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:50] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:55:50.991220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:55:51.000996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:55:51.012940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:55:53.120505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:55:53.124679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:53] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:55:53] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:10.664018 : Cron_Send_Survey_TabIds -Connection unexpectedly closed - Line : 1713 +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/03/2025 25/03/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 , 28/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_75584.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/03/2025 25/03/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 , 28/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_49563.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/03/2025 25/03/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 , 28/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_10525.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:11] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:27.057025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:27.063033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:27.074073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:27.078070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:27.097358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:27.116722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:27.128724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:27.149199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:27.160263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:27.173775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:30.551984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:30.557986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:30] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:30] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:36.429811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:36.436007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:36.444002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:36.451580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:36.463731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:36.477897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:36.493887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:36.509725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:36] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 13:56:36.527407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 13:56:36.539929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:36] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 13:56:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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-28 18:09:26.727544 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:09:26.727544 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:09:26.728546 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:09:26.728546 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:09:26.728546 : ++ 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-28 18:09:39.079975 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:09:39.079975 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:09:39.079975 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:09:39.079975 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:09:39.081013 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 18:10:10.472892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:10.630770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.637418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.643154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.649457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.657534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:10.669389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.680138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.712607 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:10.723705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:10.784447 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:10.856959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.863574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.870476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.879665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:10.925326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:10.944808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:10.971781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:10.993760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:11.003693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:11.065857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.143725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.160852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.174149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.189459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.195797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.220123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.233719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.256560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.260577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.275719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.298970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.316012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.351729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.365724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.397209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.436152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.445887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.508992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.517290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.574903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:15.593097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.660163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.722175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:15.799137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:29.919085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:30] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:30.469163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:30.472381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:35.751989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:35.766802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:35.771846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:35.782062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:35.797660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:35.801638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:35.815781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:40.293896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:40.298891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:40.306358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:40.308566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:40.321084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:40.328449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:40.341279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:10:40.348214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:40.362542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:10:40.365559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:10:40] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:19.423844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:19] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:20.003548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:20.007540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:20] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:24.435876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:24.440982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:24.447837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:24.455227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:24.460016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:24.473607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:24.475601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:27.505131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:27.511712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:27.517011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:27.521958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:27.530382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:27.543506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:27.546621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:27.560339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:13:27.573636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:13:27.582529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:13:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:14:10.758608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:14:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:14:15.760510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:14:16] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:14:16.579217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:14:16.584760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:14:16.592759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:14:16.599156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:14:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:14:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:14:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:14:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:14:21.525235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:14:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:14:43.312083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:15:06.426468 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-28 18:15:06.430753 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-28 18:15:28.050393 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-28 18:15:28.053391 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-28 18:15:49.750815 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-28 18:15:49.754336 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:15:49] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:15:49.840139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:15:49.847527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:15:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:15:49] "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\\Job_Cron.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-28 18:16:20.623765 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:16:20.624763 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:16:20.624763 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:16:20.624763 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:16:20.624763 : ++ 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\\Job_Cron.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-28 18:17:35.696976 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:17:35.697977 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:17:35.697977 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:17:35.697977 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:17:35.697977 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 18:17:35.746434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:17:40.079737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:40.086293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:40.104466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:40.116486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:40] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:17:40.129484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:40.133473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:40.150781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:40] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:17:45.684413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:45.690605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:45.695775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:45.703311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:45.713017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:45.727137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:17:45.741360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:45] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:17:45.753992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:17:45.765998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:17:45.778646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:45] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:46] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:17:46] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:18:03.384800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:18:03] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:18:03.476556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:18:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:18:08.177377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:18:08] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:18:08.270295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:18:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:18:12.490879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:18:12] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:18:12.589174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:18:12] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:18:16.405100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:18:16] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:18:16.493872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:18:16] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:19:32.984817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:19:32.985841 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 18:19:33.952298 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-28 18:19:33.957334 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-28 18:19:33.961334 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_60137.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_69377.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: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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_06263.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_94015.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-28 18:23:28.378620 : Cron_Send_Survey_TabIds -Connection unexpectedly closed - Line : 1713 +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/03/2025 25/03/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 , 28/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_78433.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/03/2025 25/03/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 , 28/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_13234.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/03/2025 25/03/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 , 28/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_58701.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:23:28] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:24:40.795160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:40.801326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:40.810325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:40.819534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:40] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:24:40.832056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:24:40.836393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:24:40.847228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:40] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:24:44.866952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:44.876410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:44.879934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:24:44.890872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:44.900690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:44.910835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:44.920839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:24:44.930545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:44] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:24:44.945431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:24:44.957675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:44] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:24:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:25:26.975272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:25:26.976634 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_71308.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_06966.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: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 :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/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 , 28/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_05576.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° 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 : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/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 , 28/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_02667.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-28 18:26:59.730822 : Cron_Send_Survey_TabIds -Connection unexpectedly closed - Line : 1713 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:26:59] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 18:28:41.048030 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:28:41.048030 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:28:41.048030 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:28:41.048030 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:28:41.048030 : ++ 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-28 18:28:54.199939 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:28:54.199939 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:28:54.199939 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:28:54.199939 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:28:54.199939 : ++ 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\\Job_Cron.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-28 18:30:42.958580 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:30:42.958580 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:30:42.958580 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:30:42.958580 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:30:42.958580 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 18:30:48.072440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:30:48.072440 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:30:48] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 18:34:49.924133 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:34:49.924133 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:34:49.924133 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:34:49.924133 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:34:49.924133 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 18:34:49.982248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:34:49.986257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:34:49] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:34:50] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-28 18:35:33.535795 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:35:33.535795 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:35:33.535795 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:35:33.536792 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:35:33.536792 : ++ 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\\Job_Cron_Common.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-28 18:39:16.384640 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:39:16.384640 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:39:16.385642 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:39:16.385642 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:39:16.385642 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 18:39:36.831499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:39:36] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:39:48.889349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:39:48] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:39:49.443937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:39:49.448933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:39:49] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:39:49] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:00.152532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:00.153677 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 18:40:09.964252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:09.971374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:09.976500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:09.985484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:09.997554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.017017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:10.020644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:10.025656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:10.035102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.047269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.056878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:10.069085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.081424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:10.086705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.100451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:10.109227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.120662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.133727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:10.141878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.154220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.161950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.171228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:10.186112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:10.190486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:15.577847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:15.583229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:15.588405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:15.598420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:15.606413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:15.610972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:15.626907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:20.157152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:20.162585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:20.168183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:20.175035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:20.191256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:20.199355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:20.210231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:20.223235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:20.236004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:20.249346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:23.083173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:23.088513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:23.095905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:23.105811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:23.116532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:23.125270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:23.131274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:23.145806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:23.154434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:23.178154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:54.448154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:54.452174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:54.460126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:54.466562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:54.475142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:54.487315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:54.497665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:54.509657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:54.525874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:54.530411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:40:57.850026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:40:57.856551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:57] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:40:57] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:15.175112 : Cron_Send_Survey_TabIds -Connection unexpectedly closed - Line : 1714 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:15] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:15.829828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:15.836404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:15.843145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:15.846142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:15.859903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:15.875452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:15.889648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:15.897804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:15.911984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:15.916998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:16] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:16] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:18.659974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:18.667549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:18.673617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:18.682006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:18.692508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:18.705876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:42:18.715977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:18.735182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:18.745171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:42:18.753165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:42:18] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 18:43:43.585655 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 18:43:43.585655 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 18:43:43.585655 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 18:43:43.585655 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 18:43:43.585655 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-28 18:43:43.653307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:43.657296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:43.661657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:43.667590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:43.671619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:43.678773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:43.683263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:43.691885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:43.708025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:43] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:43:43.735550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:43] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:43] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:43] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:43:48.026996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:48.034987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:48.040656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:48.050906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:43:48.060409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:43:48.064490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:43:48.079490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:43:48.091615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:43:48.105918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:43:48.112682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:43:48] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:31.520894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:31] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:32.881686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:45:32.886697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:32] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:38.041341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:45:38.045914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:45:38.051114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:45:38.058135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:45:38.063179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:38] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:38.073489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:38.081988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:38] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:38] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:38] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:42.544366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:49.432381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:50] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:50.329320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:45:50.332312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:45:50.342602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:45:50.350091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:45:55.135427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:45:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:15.570278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:17.142240 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-28 18:46:17.145237 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-28 18:46:17.660453 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-28 18:46:17.664622 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-28 18:46:18.226557 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-28 18:46:18.230780 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:18] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:18.320321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:18.324817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:35.092451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:35.104917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:35.114924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:35.120279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:35.129437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:35.139457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:35.156457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:39.963710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:42.053584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:42.058716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:42.064011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:42.070961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:42.081624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:42.092101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:42.105522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:42.119242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:42.123522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:46:42.135680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:51.116892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:51] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:51.232027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:55.073991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:55] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:55.199990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:55] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:59.141215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:59] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:46:59.239002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:46:59] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:47:03.563644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:47:03] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:47:03.678874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:47:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 18:47:24.549250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 18:47:24.549250 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-02-28 18:48:42.532923 : Cron_Send_Survey_TabIds -Connection unexpectedly closed - Line : 1714 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 18:48:42] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:27.656207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:28.902847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:28.905887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:28.909696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:28.914737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:28.921939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:28.925148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:28.932934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:28.942814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:28.958589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:28] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:28.966921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:28] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:31.198900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:31.201894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:31.207342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:31.211752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:31.216978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:31.223503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-28 19:00:31.228355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:31.234274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:31.247427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-28 19:00:31.256785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2025 19:00:31] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-28 19:04:42.821055 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 19:04:42.821055 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 19:04:42.821055 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 19:04:42.821055 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 19:04:42.821055 : ++ 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\\Job_Cron_Common.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-28 19:06:04.543327 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-28 19:06:04.543327 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-28 19:06:04.543327 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-28 19:06:04.543327 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-28 19:06:04.543327 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +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-03-01 12:14:37.210644 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:14:37.210644 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:14:37.210644 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:14:37.210644 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:14:37.210644 : ++ 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-03-01 12:14:51.669306 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:14:51.670705 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:14:51.670705 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:14:51.670705 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:14:51.670705 : ++ 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\\Job_Cron.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-03-01 12:16:29.195181 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:16:29.196199 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:16:29.196199 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:16:29.196199 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:16:29.196199 : ++ 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\\Job_Cron.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-03-01 12:18:32.090755 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:18:32.091848 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:18:32.091848 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:18:32.091848 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:18:32.091848 : ++ 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\\Job_Cron.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-03-01 12:21:20.075946 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:21:20.075946 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:21:20.082312 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:21:20.082312 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:21:20.082312 : ++ 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\\Job_Cron.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-03-01 12:21:50.283237 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:21:50.283237 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:21:50.283237 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:21:50.283237 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:21:50.283237 : ++ 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\\Job_Cron.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-03-01 12:24:11.766710 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:24:11.766710 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:24:11.766710 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:24:11.766710 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:24:11.766710 : ++ 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\\Job_Cron_Common.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-03-01 12:25:34.067859 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:25:34.067859 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:25:34.068859 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:25:34.068859 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:25:34.068859 : ++ 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\\Job_Cron.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-03-01 12:28:08.782397 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:28:08.783399 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:28:08.783399 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:28:08.783399 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:28:08.783399 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 12:28:55.551634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.681388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.685778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.693227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.697225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.702707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.710646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.727665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.744310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.753488 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.758633 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.837078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.842595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.848592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.850003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.884261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.891750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.897240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:55.907006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.925608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:55.957824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.261077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.265578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.281179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.291840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.302157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.317604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.335973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.369342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.378960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.386030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.418861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.435564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.472742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.486486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.523447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.553468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.575938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.611784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:28:59.629754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.693501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.742339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.826354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.900162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:28:59.959235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:28:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:07.876708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:07.881287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:07.886939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:07.893398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:07.901560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:07.909643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:07.916646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:11.425640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:11.430640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:11.435667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:11.441898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:11.452358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:11.459771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:11.468036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:11.480480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:11.488837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:11.495181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:19.459867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:19] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:19.559713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:19] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:29:29.371357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:29:29.371357 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-01 12:29:30.428746 : Send_document_from_base_document_automatic_setup -myprint() takes from 0 to 1 positional arguments but 2 were given - Line : 1470 +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:29:30] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 12:30:52.778722 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:30:52.778722 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:30:52.778722 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:30:52.778722 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:30:52.779723 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 12:30:52.831191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:30:52.835191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:30:52] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:30:52] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:30:57.992327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:30:58] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:31:08.288528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:31:08] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:31:08.532570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:31:08.537251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:31:08] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:31:08] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:32.361734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:32.361734 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:32] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.647546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.652286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.658316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.666312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.672215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.676215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.687766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.695272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.702780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.708493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.723960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.729136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.735133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.748463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.756930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.766721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.775387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.782482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.797635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.799049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.810729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.817085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:32:55.827221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:32:55.832712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:32:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:28.667428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:28.675953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:28.679741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:28.687124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:28.694734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:28.699767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:28.708396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:39.459491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:43.412412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:43.417330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:43.425792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:43.432738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:43.444151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:43.448952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:43.467205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:43.474529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:43.487276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:43.503053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:43] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:45.928668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:45.932189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:45.939559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:45.952083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:45.954183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:45.968245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:45.978252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:45.983745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:45] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:45] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:45] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:33:45.993536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:33:46.002882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:46] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:46] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:33:46] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 12:34:42.651581 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:34:42.651581 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:34:42.651581 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:34:42.652595 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:34:42.652595 : ++ 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\\Job_Cron_Common.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-03-01 12:36:28.494387 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:36:28.495392 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:36:28.495392 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:36:28.495392 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:36:28.495392 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 12:36:28.549526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:36:28.549526 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:36:28] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 12:38:46.536461 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:38:46.537461 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:38:46.537461 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:38:46.537461 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:38:46.537461 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 12:38:46.603641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:38:46.604662 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:38:46] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:06.460317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:06.465987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:06.473109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:06.478672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:06.485359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:06.496768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:06.514893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:06.525470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:06.544369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:06.558370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:08.970941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:08.977013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:08.986881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:08.997891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:09.004286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:09.018054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:09.044983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:39:09.058625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:09.070161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:39:09.082921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:39:09] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:19.073958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:21.800744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:21.810102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:21.815900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:21.829205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:21.839649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:21.857194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:21.876003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:21.897756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:21.899995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:21.908235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:26.806283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:26.812866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:26.820872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:26.827447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:26.836486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:26.852040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:26.876619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:26.882357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:42:26.893095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:42:26.909662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:42:26] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:44:49.060996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:44:49] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:44:58.539640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:44:58] "POST /myclass/api/Init_Survey_Tab_For_All_Session_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:44:58.982597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:44:59] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:31.995622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:33.968335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:33.972334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:33.980351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:33.984347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:33.995866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:34.001106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:34.012112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:34.026107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:34.044873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:34.051306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:34] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:36.187872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:36.194222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:36.199742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:36.209481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:36.219480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:36.224472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:36.234622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:36.242349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:46:36.268730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:46:36.273733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:46:36] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 12:47:48.963693 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:47:48.963693 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:47:48.964689 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:47:48.964689 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:47:48.964689 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +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-03-01 12:55:53.982476 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:55:53.983474 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:55:53.983474 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:55:53.983474 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:55:53.983474 : ++ 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-03-01 12:56:09.784476 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 12:56:09.784476 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 12:56:09.784476 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 12:56:09.784476 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 12:56:09.784476 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 12:56:36.291686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.557761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.565189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.570221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.575349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.582319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.589311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.602532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.634835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.650873 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.651875 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.772436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.777279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.792032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.803836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.831837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.866850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.883869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.884865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:36.886914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:36.931380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:38.806455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:38.816631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:38.829410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:38.847827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:38.860299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:38.886162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:38.911017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:38.935666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:38.946806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:38.966965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:38.984663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:39.009300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:39.048135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:39.063559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:39.096848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:39.127833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:39.141967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:39.206868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:39.223291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:39.274803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:39.304897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:39.319613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:39.405020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:39.490942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:46.244567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:46.245573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:46.260175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:46.314273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:46.341231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:46.363909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:46.391078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:50.989973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:50.993936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:51.000938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:51.009190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:51.016311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:51.028046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:51.036137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:51.046591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:51.056881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:51.065255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:52.851716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:52.856715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:52.861710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:52.869223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:52.879777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:52.885966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:52.896128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:56:52.901272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:52.907072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:56:52.915027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:56:52] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:58:31.978390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:58:31] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 404 - +INFO:root:2025-03-01 12:58:47.739403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:58:47.740391 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:58:47] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:58:59.955905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:58:59.961907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:58:59.970927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:58:59.978930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:58:59.992484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:58:59.997471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:59:00.006470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:59:00.032974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:59:00.045014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:59:00.064555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:59:03.361732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:59:03.366783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:59:03.378020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:59:03.384012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:59:03.393010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:59:03.400329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:59:03.414998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:59:03.416035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 12:59:03.423534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:59:03.441563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 12:59:41.272553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 12:59:41] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 13:02:13.613211 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 13:02:13.613211 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 13:02:13.613211 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 13:02:13.613211 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 13:02:13.613211 : ++ 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\\Job_Cron.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-03-01 13:02:53.101547 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 13:02:53.101547 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 13:02:53.101547 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 13:02:53.101547 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 13:02:53.101547 : ++ 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\\Job_Cron.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-03-01 13:03:09.186743 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 13:03:09.186743 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 13:03:09.186743 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 13:03:09.186743 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 13:03:09.186743 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 13:03:25.082270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 13:03:25] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-01 13:03:25.764589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 13:03:25.769617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 13:03:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 13:03:26] "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\\Job_Cron.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-03-01 14:13:26.160948 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:13:26.160948 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:13:26.160948 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:13:26.160948 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:13:26.160948 : ++ 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-03-01 14:13:39.773613 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:13:39.773613 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:13:39.774651 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:13:39.774651 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:13:39.774651 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 14:13:39.821741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:13:39] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:13:39.825751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:13:39.829345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:13:39.834383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:13:39] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:13:39] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:13:39] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 14:14:04.550602 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:14:04.550602 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:14:04.550602 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:14:04.550602 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:14:04.550602 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 14:14:04.619534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:14:04.623729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:14:04] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:14:04] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:14:19.892018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:14:19] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:14:33.017174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:14:33] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:14:33.432283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:14:33.437596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:14:33] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:14:33] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 14:15:02.795888 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:15:02.795888 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:15:02.795888 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:15:02.795888 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:15:02.795888 : ++ 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\\Job_Cron.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-03-01 14:15:21.738334 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:15:21.738334 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:15:21.738334 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:15:21.738334 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:15:21.739339 : ++ 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\\Job_Cron.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-03-01 14:15:40.835280 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:15:40.835280 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:15:40.835280 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:15:40.835280 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:15:40.835280 : ++ 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\\Job_Cron.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-03-01 14:16:29.880466 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:16:29.881471 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:16:29.881471 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:16:29.881471 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:16:29.881471 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 14:16:42.292338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:42.292338 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:42] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.290793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.295480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.300955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.306682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.315123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.328359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.339894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.353047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.357064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.373968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.385074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.395848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.405023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.413736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.421924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.459690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.469057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.479216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.497439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.515123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.537911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.553163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:54.559168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:54.574059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:59.969432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:59.980188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:59.982202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:16:59.989700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:16:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:16:59.999493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:17:00.004494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:00.014498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:17:04.248288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:04.253826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:04.259189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:04.266195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:17:04.272528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:04.284704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:04.298013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:17:04.318187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:04.325541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:04.332722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:17:07.209171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:07.215208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:07.228227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:07.231202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:17:07.244270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:07.259055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:17:07.273301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:07.289553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:07.307451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:17:07.316215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:17:07] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 14:18:27.622864 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:18:27.622864 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:18:27.622864 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:18:27.622864 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:18:27.622864 : ++ 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\\Job_Cron.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-03-01 14:19:04.293352 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:19:04.293352 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:19:04.293352 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:19:04.293352 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:19:04.293352 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 14:19:04.343767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:04.347961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:04.351608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:04.354898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:04.359089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:04.361110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:04.368041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:04.379833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:04.383255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:19:04.408940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:19:09.767964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:19:09.772754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:09] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:09] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:19:46.442079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:19:46] "POST /myclass/api/Get_List_Modele_Attestion_Formation_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:20:52.511855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:20:52] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:20:52.544112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:20:52] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:21:03.201543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:21:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:21:03.208292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:21:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:21:03.234055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:21:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:21:03.239053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:21:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:21:11.393335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:21:11] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:21:13.734874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:21:13.740724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:21:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:21:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-03-01 14:23:55.838790 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:23:55.838790 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:23:55.838790 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:23:55.838790 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:23:55.838790 : ++ 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\\Job_Cron_Common.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-03-01 14:25:05.289876 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:25:05.289876 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:25:05.289876 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:25:05.289876 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:25:05.289876 : ++ 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\\Job_Cron_Common.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-03-01 14:26:11.062614 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:26:11.062614 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:26:11.063781 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:26:11.063781 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:26:11.063781 : ++ 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\\Job_Cron_Common.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-03-01 14:26:54.880741 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:26:54.880741 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:26:54.880741 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:26:54.880741 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:26:54.880741 : ++ 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\\Job_Cron_Common.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-03-01 14:27:43.501147 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:27:43.502149 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:27:43.502149 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:27:43.502149 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:27:43.502149 : ++ 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\\Job_Cron_Common.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-03-01 14:29:21.298230 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:29:21.298230 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:29:21.298230 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:29:21.298230 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:29:21.298230 : ++ 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\\Job_Cron_Common.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-03-01 14:35:51.155766 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:35:51.155766 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:35:51.155766 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:35:51.155766 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:35:51.155766 : ++ 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\\Job_Cron.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-03-01 14:36:13.424229 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:36:13.425233 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:36:13.425233 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:36:13.425233 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:36:13.425233 : ++ 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\\Job_Cron.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-03-01 14:37:13.104442 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:37:13.104442 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:37:13.104442 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:37:13.104442 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:37:13.104442 : ++ 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\\Job_Cron.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-03-01 14:38:06.958141 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:38:06.958141 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:38:06.958141 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:38:06.958141 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:38:06.958141 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 14:38:07.007852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.011060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.015460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.019925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.025853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.032393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.041275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.050102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.057049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.065283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.077811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.085953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.094900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.105969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.112921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.119789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.131045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.143085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.148409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.160829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.172350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.182622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:07.193030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:07.206857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:15.720335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:15.725082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:15.735646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:15.746203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:15.759016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:15.777018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:15.791613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:24.238363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:24.242094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:24.251318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:24.257652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:24.264388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:24.270740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:24.277174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:24.286966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:38:24.301267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:38:24.305422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:38:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:25.669222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.675872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.684388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.690903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:25.702676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.711880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.724276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:25.742422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.746424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:25.761982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:25.773493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.776868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.787254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:25.801802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.812084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:25.833207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:25.843700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:40:25.853040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:25] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:27.933710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:27] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:45.898443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:45] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:40:46.018889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:40:46] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:41:39.252830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:41:39] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:41:39.371216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:41:39] "POST /myclass/api/Get_List_base_document_automatic_setup/ 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-03-01 14:42:40.376960 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:42:40.376960 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:42:40.376960 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:42:40.376960 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:42:40.376960 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 14:44:01.579941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.586237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.592348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.597849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.604956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.618724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.626721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.634404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.647920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.665253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.678475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.686987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.703514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.717527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.731522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.747601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.754844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.763853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.772844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.789984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.809448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.813431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:01.833930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:01.844386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:09.614563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:09] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:10.116262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:10.119257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:10] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:25.689015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:27.113353 : Delete_List_SessionFormation1 Document supprimé. La session_id 67c30f29a14df4a6e31c19fc a été correctement supprimée +INFO:root:2025-03-01 14:44:27.118788 : Delete_List_SessionFormation1 Document supprimé. La session_id 67c30f29a14df4a6e31c19fa a été correctement supprimée +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:27] "POST /myclass/api/Delete_List_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:27.128694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:32.668340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:32.683116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:32.691561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:32.703534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:32.717624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:32.725299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:32.737351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:37.760589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:46.830361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:47] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:48.031447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:48.036692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:48.042716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:44:48.048581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:48] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:44:55.366784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:44:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:07.486162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:08.154849 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-03-01 14:45:08.157848 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-03-01 14:45:08.695957 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-03-01 14:45:08.699158 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-03-01 14:45:09.257017 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-03-01 14:45:09.260017 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:09] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:09.366553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:09.368542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:18.105245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:18.121355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:18.129757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:18.139152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:18] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:18.151194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:18.164571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:18] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:18.174198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:18] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:18] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:26.390968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:26.398807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:26.406815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:26.417307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:26.430277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:26.450117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:26.456946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:26.478099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:26.488448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:45:26.506332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:39.709256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:39] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:39.848190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:39] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:44.187631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:44] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:44.270080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:44] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:48.079820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:48] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:48.141914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:48] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:52.503480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:52] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:52.590471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:52] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:58.423354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:58] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:45:58.485721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:45:58] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:46:03.257161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:46:03] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:46:03.347726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:46:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:46:19.115009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:46:19] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:46:19.263478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:46:19] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:46:28.948295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:46:28] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:46:29.051098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:46:29] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:46:41.125348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:46:41.126345 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-01 14:46:41.147248 : Cron_Init_Attestation_Formation_With_Template Le modèle de courrier '65f05a36c544f77525a30632' n'est pas valide +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:46:41] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 14:49:18.377735 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:49:18.377735 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:49:18.377735 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:49:18.377735 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:49:18.377735 : ++ 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\\Job_Cron_Common.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-03-01 14:49:55.216465 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:49:55.216465 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:49:55.217469 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:49:55.217469 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:49:55.217469 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 14:49:55.267178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:49:55.267178 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-01 14:49:56.097318 : Get_Courrier_Template_Include_Default_Data Le champ 'default_version' n'est pas autorisé +INFO:root:2025-03-01 14:49:56.101568 : Send_document_from_base_document_automatic_setup Impossible de récuperer le modèle de courrier 'ATTESTATION_FORMATION', (type : Email) +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:49:56] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 14:50:51.681135 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:50:51.681135 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:50:51.681135 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:50:51.681135 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:50:51.681135 : ++ 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\\prj_common.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-03-01 14:51:41.025931 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:51:41.025931 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:51:41.025931 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:51:41.026940 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:51:41.026940 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-01 14:51:45.750182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:51:45.750182 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:51:45] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:52:08.081400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:52:12.214270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:52:12.221586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:52:12.229681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:52:12.236703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:52:12.250326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:52:12.272882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:52:12.294544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:52:12.309984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:52:12.326064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:52:12.340609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:12] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-01 14:52:16.325331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-01 14:52:16.332070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:16] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Mar/2025 14:52:16] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-01 14:53:08.412087 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 14:53:08.412087 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 14:53:08.412087 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 14:53:08.412087 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 14:53:08.412087 : ++ 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\\Job_Cron_Common.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-03-01 15:02:02.612987 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-01 15:02:02.612987 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-01 15:02:02.612987 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-01 15:02:02.612987 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-01 15:02:02.612987 : ++ 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-03-02 17:19:32.134419 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:19:32.134419 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:19:32.135425 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:19:32.135425 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:19:32.135425 : ++ 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-03-02 17:19:48.107034 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:19:48.108498 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:19:48.108498 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:19:48.108498 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:19:48.108498 : ++ 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\\Job_Cron_Common.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-03-02 17:31:18.920880 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:31:18.921871 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:31:18.921871 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:31:18.928506 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:31:18.928506 : ++ 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\\Job_Cron.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-03-02 17:33:30.576666 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:33:30.577667 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:33:30.577667 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:33:30.577667 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:33:30.577667 : ++ 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\\Job_Cron.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-03-02 17:38:39.291443 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:38:39.291443 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:38:39.291443 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:38:39.291443 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:38:39.291443 : ++ 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\\Job_Cron.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-03-02 17:38:58.268413 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:38:58.268413 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:38:58.268413 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:38:58.268413 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:38:58.268413 : ++ 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\\Job_Cron.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-03-02 17:40:16.091986 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:40:16.092993 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:40:16.092993 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:40:16.092993 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:40:16.092993 : ++ 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\\Job_Cron.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-03-02 17:42:29.245239 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:42:29.245239 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:42:29.246344 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:42:29.246344 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:42:29.246344 : ++ 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\\Job_Cron.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-03-02 17:46:57.548141 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:46:57.548141 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:46:57.548141 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:46:57.548141 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:46:57.548141 : ++ 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\\Job_Cron.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-03-02 17:50:10.738875 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:50:10.738875 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:50:10.738875 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:50:10.738875 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:50:10.738875 : ++ 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\\Job_Cron_Common.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-03-02 17:54:06.192006 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:54:06.192006 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:54:06.192006 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:54:06.192006 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:54:06.192006 : ++ 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\\prj_common.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-03-02 17:56:27.241299 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:56:27.241299 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:56:27.241299 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:56:27.241299 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:56:27.241299 : ++ 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\\prj_common.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-03-02 17:56:53.710017 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 17:56:53.710017 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 17:56:53.710017 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 17:56:53.710017 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 17:56:53.710017 : ++ 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\\Job_Cron_Common.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-03-02 18:09:14.497265 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 18:09:14.497265 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 18:09:14.497265 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 18:09:14.497265 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 18:09:14.497265 : ++ 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\\Job_Cron_Common.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-03-02 18:27:27.431675 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 18:27:27.431675 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 18:27:27.431675 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 18:27:27.431675 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 18:27:27.431675 : ++ 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\\Job_Cron_Common.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-03-02 18:30:10.575944 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 18:30:10.575944 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 18:30:10.576934 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 18:30:10.576934 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 18:30:10.576934 : ++ 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\\Job_Cron_Common.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-03-02 18:34:17.982870 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 18:34:17.983870 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 18:34:17.983870 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 18:34:17.983870 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 18:34:17.983870 : ++ 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\\Job_Cron.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-03-02 18:55:38.492565 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 18:55:38.492565 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 18:55:38.493567 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 18:55:38.493567 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 18:55:38.493567 : ++ 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\\Job_Cron.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-03-02 18:56:14.652363 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 18:56:14.653802 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 18:56:14.653802 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 18:56:14.653802 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 18:56:14.653802 : ++ 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\\Job_Cron.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-03-02 18:57:02.799129 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 18:57:02.800129 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 18:57:02.800129 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 18:57:02.800129 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 18:57:02.800129 : ++ 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\\Job_Cron.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-03-02 18:57:42.240537 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 18:57:42.240537 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 18:57:42.240537 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 18:57:42.240537 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 18:57:42.241538 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-02 19:02:32.711656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:32] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:02:32.865978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:32.872969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:32.881134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:32.890533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:32.898917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:32.907484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:02:32.920961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:02:32.948987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:32.973091 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-03-02 19:02:32.973091 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:02:33.086452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:33.091096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:33.103100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:33.111092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:02:33.150103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:02:33.184732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:02:33.209745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:33.222068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:02:33.227655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:02:33.293462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:02:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.811929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:04:35.819376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:04:35.826836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.837524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.846361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:04:35.858056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:04:35.869584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.888525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:04:35.895768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.901237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.915757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:04:35.926318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.944280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.959928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:04:35.967693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.977554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-02 19:04:35.984902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:35] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:35.995694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:36] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:36] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:04:38.057462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:04:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:05:33.009644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:05:33] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:05:33.121519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:05:33] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:05:44.831147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:05:44] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:05:44.931497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:05:44] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:06:26.869157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:06:26] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-03-02 19:06:27.031353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Mar/2025 19:06:27] "POST /myclass/api/Get_List_base_document_automatic_setup/ 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-03-02 19:07:58.495030 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 19:07:58.496033 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 19:07:58.496033 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 19:07:58.496033 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 19:07:58.496033 : ++ 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-03-02 19:08:10.648714 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 19:08:10.648714 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 19:08:10.648714 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 19:08:10.649715 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 19:08:10.649715 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +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-03-02 19:11:44.381774 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 19:11:44.381774 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 19:11:44.382772 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 19:11:44.382772 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 19:11:44.382772 : ++ 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-03-02 19:12:06.504219 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-02 19:12:06.504219 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-02 19:12:06.504219 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-02 19:12:06.504219 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-02 19:12:06.504219 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +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-03-03 18:29:33.985967 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-03 18:29:33.985967 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-03 18:29:33.985967 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-03 18:29:33.986968 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-03 18:29:33.986968 : ++ 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-03-03 18:29:54.688451 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-03 18:29:54.688451 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-03 18:29:54.688451 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-03 18:29:54.688451 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-03 18:29:54.688451 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-03 18:32:24.601311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:32:24] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents HTTP/1.1" 308 - +INFO:root:2025-03-03 18:32:24.643308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:32:24.643308 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-03 18:32:31.545790 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c30f29a14df4a6e31c19f8 Id du CRON courrier_template_type_document_id = 65b4187d76e1f67db04d0350 +INFO:root:2025-03-03 18:32:31.605341 : Cron_Qualiopi_Automatic_Traitement_Notification - La valeur 'token' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:32:31] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-03 18:39:32.051174 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-03 18:39:32.052177 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-03 18:39:32.052177 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-03 18:39:32.053177 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-03 18:39:32.053177 : ++ 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\\Job_Cron.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-03-03 18:40:03.664855 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-03 18:40:03.664855 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-03 18:40:03.665856 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-03 18:40:03.665856 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-03 18:40:03.665856 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-03 18:40:33.738415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:33] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:33.972212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:33.978315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:33.985473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:33.990716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:33.996272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:34.001593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:34.034704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:34.044952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:34.046955 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:34.065323 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:34.128093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:34.139281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:34.145278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:34.151620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:34.161658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:34.181576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:34.194047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:34.203446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:34.221738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:34.260596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:34] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:39.974709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:39.991548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:39.998818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:40.015015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:40.031421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.062582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.072392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:40.089775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.103796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.120672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.145410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.158571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:40.169635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.238173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.256342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:40.274317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.319837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.351973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.405862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:40:40.419272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.507307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.610372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.708342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:40:40.790127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:44] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:44] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:40:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:17.640788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:41:17.647788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:41:17.655230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:41:17.663689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:17.674079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:17.682198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:17] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:17.693232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:17] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:40.291131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:43.078440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:41:43.087144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:41:43.089464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:41:43.093940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:41:43.100146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:43.115555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:43] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:43.130593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:41:43.132593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:43] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:43.142312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:41:43.151927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:43] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:43] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:41:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:42:02.273225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:42:02] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:42:02.389382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:42:02] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:42:14.555080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:42:14] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents HTTP/1.1" 308 - +INFO:root:2025-03-03 18:42:14.562122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:42:14.563128 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-03 18:42:15.867454 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c30f29a14df4a6e31c19f8 Id du CRON courrier_template_type_document_id = 65b4187d76e1f67db04d0350 +INFO:root:2025-03-03 18:42:15.881640 : Cron_Qualiopi_Automatic_Traitement_Notification -'BONDU01_Mar' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 2568 +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:42:15] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.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-03-03 18:44:00.518610 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-03 18:44:00.518610 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-03 18:44:00.519346 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-03 18:44:00.519346 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-03 18:44:00.519346 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-03 18:44:00.599960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:44:00] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents HTTP/1.1" 308 - +INFO:root:2025-03-03 18:44:00.608466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:44:00.608466 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-03 18:44:01.714693 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c30f29a14df4a6e31c19f8 Id du CRON courrier_template_type_document_id = 65b4187d76e1f67db04d0350 +INFO:root:2025-03-03 18:44:07.799094 : Cron_Qualiopi_Automatic_Traitement_Notification -STARTTLS extension not supported by server. - Line : 2612 +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:44:07] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:root:2025-03-03 18:56:05.805571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:56:05] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents HTTP/1.1" 308 - +INFO:root:2025-03-03 18:56:05.815589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 18:56:05.815589 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-03 18:56:05.825596 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c30f29a14df4a6e31c19f8 Id du CRON courrier_template_type_document_id = 65b4187d76e1f67db04d0350 +INFO:root:2025-03-03 18:56:05.899144 : Cron_Qualiopi_Automatic_Traitement_Notification -[Errno 11001] getaddrinfo failed - Line : 2609 +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 18:56:05] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-03-03 19:00:41.419172 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-03 19:00:41.419172 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-03 19:00:41.419172 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-03 19:00:41.420657 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-03 19:00:41.420657 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-03 19:00:41.482252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 19:00:41] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents HTTP/1.1" 308 - +INFO:root:2025-03-03 19:00:41.490620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 19:00:41.490620 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-03 19:00:42.512262 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c30f29a14df4a6e31c19f8 Id du CRON courrier_template_type_document_id = 65b4187d76e1f67db04d0350 +INFO:root:2025-03-03 19:00:49.685017 : Cron_Qualiopi_Automatic_Traitement_Notification -STARTTLS extension not supported by server. - Line : 2619 +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 19:00:49] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.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-03-03 19:03:17.924387 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-03 19:03:17.925390 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-03 19:03:17.925390 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-03 19:03:17.925390 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-03 19:03:17.925390 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-03 19:03:18.061530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 19:03:18] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents HTTP/1.1" 308 - +INFO:root:2025-03-03 19:03:18.066531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-03 19:03:18.066531 : ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = +INFO:root:2025-03-03 19:03:18.837999 : Cron_Daily_Automatic_Qualiopi_Documents CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67c30f29a14df4a6e31c19f8 Id du CRON courrier_template_type_document_id = 65b4187d76e1f67db04d0350 +INFO:root:2025-03-03 19:03:25.128624 : Cron_Qualiopi_Automatic_Traitement_Notification -STARTTLS extension not supported by server. - Line : 2619 +INFO:werkzeug:127.0.0.1 - - [03/Mar/2025 19:03:25] "GET /myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/ 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-03-04 11:31:24.654996 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-04 11:31:24.654996 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-04 11:31:24.654996 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-04 11:31:24.654996 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-04 11:31:24.654996 : ++ 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-03-04 11:31:38.750346 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-04 11:31:38.751435 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-04 11:31:38.751435 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-04 11:31:38.751435 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-04 11:31:38.751435 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-04 11:33:53.400519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.564042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.570510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.577676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.585242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.591543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.600385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.623622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.656042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.690627 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.704322 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.802667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.817142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.828517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.833000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.875741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.896936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.921690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.942399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:53.956145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:53.991985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:53] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.523921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.528978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.542986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.552394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.564021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.582609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.613482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.645023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.657301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.677745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.692733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.722851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.733832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.770875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.799915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.821119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.846114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.893308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.911089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:56.966929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:33:56.989239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:57] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:57.077553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:57.145369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:33:57.213522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:33:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:34:17.047707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:17.051863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:17.059949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:17.068017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:34:17.079889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:17.085143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:34:17.094168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:17] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:17] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:34:21.800735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:21.806131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:21.810990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:21.820236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:34:21.831182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:21.839364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:21.847973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:21.870844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:34:21.884208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:34:21.905614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:34:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:44.735439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:44.753385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:44.811347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:44.816340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:44.833963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:44.844790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:44.872478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:44.883510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:44.963488 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:44.969012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:44.995406 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:45.005377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:45.017315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:45.053989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:45.088297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:45.139784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:45.169301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:45.203218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:45.214129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:45.264140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.263350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:47.279718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:47.330623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.377681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.443303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:47.484303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.516342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:47.536880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.563958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:47.588958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:47.646191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.722958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.779742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.832101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:47.916982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:47.962565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:48.012945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:48.081957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:48.178824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:48.239900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:48.298366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:48.426585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:48.458973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:48.502131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:55.465297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:55.489943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:55.527421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:55] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:55.612810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:55] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:55.662133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 11:55:55.678262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:55] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 11:55:55.718763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:55] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 11:55:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:07:14.446074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:07:14.461691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:07:14.473401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:07:14.485486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:07:14.498722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:07:14.526860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:07:14.543263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:14] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:07:14.558520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:07:14.579221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:07:14.599968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:14] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:07:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:13:53.310103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:13:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:18:01.763538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:18:01.784252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:18:01.795417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:18:01.806501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:18:01.830770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:18:01.834975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:18:01.858784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:01] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:18:01.884200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:18:01.898539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:01] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:18:01.918794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:01] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:01] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:02] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:18:02] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:20:06.248356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:20:06.254805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:20:06.261792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:20:06.268313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:20:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:20:06.278512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:20:06] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:20:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:20:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:20:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:23:01.469507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:23:01.475510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:23:01.485159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:23:01.494612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:23:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:23:01.505659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:23:01] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:23:01] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:23:01] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:23:01] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:26:34.287889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:26:34.306625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:26:34.313547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:26:34.324213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:26:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:26:34.338742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:26:34] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:26:34] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:26:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:26:34] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:27:29.219350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:27:29.227987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:27:29.230075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:27:29.241144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:27:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:27:29.251583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:27:29] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:27:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:27:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:27:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:28:35.752718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:28:35.757503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:28:35.765778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:28:35.771415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:28:35.782300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:28:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:28:35] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:28:35] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:28:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:28:35] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:46:01.195146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:46:01.209729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:46:01.218480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:46:01.224421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:46:01.235407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:46:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:46:01] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:46:01] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:46:01] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:46:01] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:54:36.210292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:54:36.229541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:54:36.238541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 12:54:36.249912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:54:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 12:54:36.262478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:54:36] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:54:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:54:36] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 12:54:36] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:04:14.327409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:04:14.339330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:04:14.349490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:04:14.364298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:04:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:04:14.378302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:04:14] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:04:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:04:14] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:04:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:06:40.279187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:06:40.290740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:06:40.298816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:06:40.307627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:06:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:06:40.322628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:06:40] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:06:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:06:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:06:40] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:13:22.370211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:13:22.377946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:13:22.387002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:13:22.396614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:13:22.407654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:13:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:13:22] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:13:22] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:13:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:13:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:15:03.900218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:15:03.913242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:15:03.923836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:15:03.935773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:15:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:15:03.953997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:15:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:15:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:15:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:15:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:17:01.284970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:01.292433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:01.295425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:01.315531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:17:01.322388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:01] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:01] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:01] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:01] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:17:46.278271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:46.284539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:46.291302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:46.295861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:46.304049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:46] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:46] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:46] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:17:59.068459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:59.074962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:59.078961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:17:59.087976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:17:59.098506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:59] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:59] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:59] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:17:59] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:18:58.810709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:18:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:19:02.376521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:19:02.381463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:19:02.387060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:19:02.397130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:19:02.406444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:19:02.416708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:19:02.422779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:19:02.441166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:19:02.446183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:19:02.453172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:19:02] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:20:14.589268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:20:14.596965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:20:14.600963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:20:14.614002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:20:14.623081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:20:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:20:14] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:20:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:20:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:20:14] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:21:02.490706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:21:02.495926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:21:02.501925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:21:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:21:02.508625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:21:02.515997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:21:02] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:21:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:21:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:21:02] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.473747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.484175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.493588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.498668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.516757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.534540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.551913 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.561216 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.705583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.715313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.721855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.727848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.743846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.749176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.764555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.776555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.785564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.794758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.805756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.818066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.828687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.856855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.865884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.873564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.880627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.906461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.918877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.924602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.930609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.954020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:33.965020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:33.975630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:41.156588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:41.159182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:41.165467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:41.174467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:41.178467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:41.188458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:41.196952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:41] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:41] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:45.306405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:45.311623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:45.318626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:45.321942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:45.332003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:45.340535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:45.347656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:45.379802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:29:45.400557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:29:45.406703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:29:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.370238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.377777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.388661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.394665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.405990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.413105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.442000 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.458725 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.603548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.609608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.615615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.631854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.640285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.651601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.660579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.670226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.677227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.702436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.713794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.733765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.749982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.758065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.764909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.777231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.797740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.804823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.821412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.830977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.860529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:46.870959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.905786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:46.918938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:51.580422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:51.584947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:51.591513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:51.593510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:51.602151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:51.611109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:51.621702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:54.613532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:54.615862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:54.624999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:54.632802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:54.647261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:54.657592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:54.667233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:54.681680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 13:30:54.696741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 13:30:54.706360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 13:30:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ 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-03-04 17:49:03.215921 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-04 17:49:03.216927 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-04 17:49:03.217921 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-04 17:49:03.217921 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-04 17:49:03.217921 : ++ 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-03-04 17:49:32.988476 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-04 17:49:32.988476 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-04 17:49:32.988476 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-04 17:49:32.988476 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-04 17:49:32.988476 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-04 17:53:07.246810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.576937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.584472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.590437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.597017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.603140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.605166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.632672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.650525 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-03-04 17:53:07.651533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.660747 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.762959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.768299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.782995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.787992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.817300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.835405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.848006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.857193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:07.871704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:07.909536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:07] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.615969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.623479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.633778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.642768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.654193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.664011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.684195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.692194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.704730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.721590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.725597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.733734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.748921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.767822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.780921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.803763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.819404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.830604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.844062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.850091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.862142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.875144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:47.888988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:47.908362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:54.072883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:54.080133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:54.085820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:54.092453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:54.100794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:54.110810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:54.119080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:58.431162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:58.437678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:58.446483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:58.449542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:58.463407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:58.474048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:53:58.487220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:58.499238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:58.510701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:53:58.524496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:53:58] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.365533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.369581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.373084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.382376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.384473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.397358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.401386 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.407778 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.514445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.516447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.520443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.528005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.534001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.543007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.560593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.566950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.575896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.581103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.593223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.609212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.625464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.628479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.637326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.657475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.669475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.677946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.684450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.707350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.717354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.724392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:54:56.733661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:54:56.756920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:54:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:55:01.275839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:01.282853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:01.287691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:01.292753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:55:01.302980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:55:01.310304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:55:01.320882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:55:04.576368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:04.582607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:04.585246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:04.590944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:04.598285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:55:04.611774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:04.616778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:55:04.623358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:55:04.635062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:55:04.647326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:55:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.110099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.126287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.130818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.137251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.142053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.157435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.167307 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.174990 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.319901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.322896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.329903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.334977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.347492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.358698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.368237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.380316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.388306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.392750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.402113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.412481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.424809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.443649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.455049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.461816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.469780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.489639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.497724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.511738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.522605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.536116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:27.543567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:27.566360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:27] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:33.521974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:33.543098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:33.549097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:33.561120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:33.571117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:33.589650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:33] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:33.598648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:37.048837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:37.055076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:37.065554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:37.075551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:37.084435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:37.094458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:37.101378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:37.120661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:56:37.134408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:56:37.143963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:56:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.491331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.498336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.507330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.513339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.519169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.529731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.537953 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.547576 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.659108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.664106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.671424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.675417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.682417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.690427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.709633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.713629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.721959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.728693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.737768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.742201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.755977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.766991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.783157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.793154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.804171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.812609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.829821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.836079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.839096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:44.846848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.868188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:44.875996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:50.640185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:50.648485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:50.658262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:50.674300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:50.685413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:50.692436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:50.708445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:55.556073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:55.573242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:55.579042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:55.583909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:55.593939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:55.611871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:55.624535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:55.636190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 17:59:55.659938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 17:59:55.671787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 17:59:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:05.734249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:10.620055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:10.626053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:10.631638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:10.636648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:10.646298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:10.652288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:10.667048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:10.676573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:10.698626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:10.708192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:38.023919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:38.029913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:38.039228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:38.053315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:38.060591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:38] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:50.928224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:50.932519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:50.938037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:02:50.943473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:50] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:02:50.951470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:50] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:50] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:02:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:04:39.463626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:04:39.475530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:04:39.484159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:04:39.491031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:04:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:04:39.505968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:04:39] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:04:39] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:04:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:04:39] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:05:09.810565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:05:09.819291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:05:09.824586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:05:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:05:09.833585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:05:09.838609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:05:09] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:05:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:05:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:05:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:06:35.702996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:06:35.708996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:06:35.716996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:06:35.723996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:06:35.730996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:06:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:06:35] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:06:35] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:06:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:06:35] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:07:11.162530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:07:11.166529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:07:11.172533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:07:11.178062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:07:11.187059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:07:54.136137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:07:54.141570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:07:54.152144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:07:54.161665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:07:54.171205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:07:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:08:07.671665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:08:10.756979 : Update_SessionFormation_Doc_Automatic_Setup -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 14058 +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:08:10] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:09:18.449537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:09:18.571471 : Update_SessionFormation_Doc_Automatic_Setup -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 14058 +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:09:18] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:12:51.133637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:51.139743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:51.145537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:51.162772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:51.170809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:12:54.643583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:54.651594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:54.658997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:54.666159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:12:54.680987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:54.703761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:12:54.713040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:12:58.315390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:58.319905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:58.327945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:58.331473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:12:58.346757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:58.353985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:58.368256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:12:58.390111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:12:58.393341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:12:58.399521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:12:58] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:13:07.776892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:13:07] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:13:07.888221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:13:07] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:13:15.684011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:13:15] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:13:15.761206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:13:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:13:23.609585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:13:23] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:13:23.686378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:13:23] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:14:13.258288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:14:13.262291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:14:13.266572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:14:13.272362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:14:13.279183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:14:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:14:13] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:14:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:14:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:14:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:14:56.674751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:14:57] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:14:57.344663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:14:57.349086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:14:57] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:14:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:15:03.327082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:03.342756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:03.344756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:03.356926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:03] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:15:03.373551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:03.379015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:15:03.389056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:03] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:03] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:15:10.290696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:10.297707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:10.305136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:10.318166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:15:10.328620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:10.337945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:10.353277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:10.367502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:15:10.389444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:15:10.391422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:15:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:20.543687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:20.554252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:20.561389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:20.572422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:20.586613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:20.597531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:20.605535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.061508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.068039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.076438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.082432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.092904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.102379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.108621 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.120959 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.358337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.363643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.369901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.385774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.392509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.411973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.421808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.433845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.451274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.469151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.486284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.495520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.526594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.544415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.553828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.565215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.583718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.590836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.597393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.609971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.622138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.649695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:17:37.655582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:17:37.663669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:37] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:17:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:18:02.419612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:02] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:18:03.189678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:03.194518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:03] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:18:13.896912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:13.905111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:13.911958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:13.913958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:13.922910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:18:13.939461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:13] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:18:13.951706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:18:17.646543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:17.651748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:17.656553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:18:17.674602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:17.680128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:17.689551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:17.706494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:17.712535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:18:17.726080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:18:17.741545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:18:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:19:16.099187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:19:21.283577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:22] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:19:22.307337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:19:22.313602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:19:22.325893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:19:22.329894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:22] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:19:29.083346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:19:29.089337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:19:29.107115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:19:29.116239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:19:29.123550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:19:29.133847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:19:29.148865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:19:29.167891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:19:29.192587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:19:29.208583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:19:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:21:10.681119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:21:10.687123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:21:10.696137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:21:10.700120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:21:10.710137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:21:10.724587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:21:10.762100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:21:10.790162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:21:10.804102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:21:10.825104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:21:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:30:53.785617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:30:53.787613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:30:53.799229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:30:53.807699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:30:53.819697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:30:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:30:53] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:30:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:30:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:30:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:32:53.710188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:32:53.717126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:32:53.721656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:32:53.727283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:32:53.738282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:32:53.746050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:32:53.761829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:32:53.787727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:32:53.796442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:32:53.809737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:32:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:36:34.281902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:36:34.287068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:36:34.290615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:36:34.299322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:36:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:36:34.308591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:36:34] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:36:34] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:36:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:36:34] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:37:28.490440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:37:28.496441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:37:28.500480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:37:28.508480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:37:28.519061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:28] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:28] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:37:46.938737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:37:46.943127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:37:46.947582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:37:46.956779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:37:46.964034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:46] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:46] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:37:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:08.092444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:08.093436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:08.102637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:08.107633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:08.114643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:08] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:24.765454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:24.775003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:24.779876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:24.789560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:24.805454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:24.820643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:24.840414 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:24.844742 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:24.982153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:24.985711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:24.992140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:25.001127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.006168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.018385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.031807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:25.040779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.051889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.062625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.071796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:25.084610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:25.096152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.107313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.135967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.145554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:25.156691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.172512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.181869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:25.184870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:25.196932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.217507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:25.229355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:25.247878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:34.635451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:34.650914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:34.653922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:34.668582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:34] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:34.679672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:34.697547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:34.704192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:34] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:34] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:38.473129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:38.479552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:38.485745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:38.494682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:38.501341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:38.512228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:38.518783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:38.528131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:38.541662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:38.562045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:49.054705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:55.998733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:56.008163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:56.016029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:56.023413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:56.036714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:56.047459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:56.056033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:56.079731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:38:56.104791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:38:56.119715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:38:56] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:39:03.192058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:39:14.774729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:39:36.654708 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-03-04 18:39:36.660705 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:36] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:39:36.784581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:39:36.789121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:39:48.104683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:39:48.113933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:39:48.126632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:39:48.139822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:39:48.147189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:39:48.163422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:39:48.175115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:39:48.192596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:39:48.221433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:39:48.240975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:39:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:40:03.984538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:40:20.897291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:42.452061 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-03-04 18:40:42.455061 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:42] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:40:42.566700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:42.573697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:40:47.865754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:47.878884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:47.890915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:47.902516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:40:47.923308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:47.932878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:47.950862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:47.968055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:40:47.977154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:47] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:40:47.990726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:48] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:48] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:40:59.356347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:59] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:40:59.471832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:40:59] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:41:06.026914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:41:06] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:41:06.140335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:41:06] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:41:16.785765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:41:16] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:41:16.891109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:41:16] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:41:30.504977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:41:30] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:41:30.607389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:41:30] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.223225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.227755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.233757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.243416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.252651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.261860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.263320 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.278007 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.509742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.515360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.521377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.533889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.538944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.546326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.558895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.561893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.579333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.586337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.593044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.603437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.611872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.630530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.641575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.654721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.664748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.673311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.685681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.695904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.709800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:42:29.715049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.730783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:42:29.752773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:42:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.038906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.043906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.050242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.060034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.068643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.074293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.095179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.101247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.111083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.118788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.134655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.143453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.416373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.421648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.433986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.435982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.455589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.470689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.478287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.490100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.568655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.596081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:50:45.619324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:50:45.627066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:50:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:51:44.733741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:51:44.737833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:51:44.742961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:51:44.748553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:51:44.753551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:51:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:51:44] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:51:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:51:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:51:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:57:57.250043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:57:57.255217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:57:57.260611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:57:57.266015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:57:57.277344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:57:57.281990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:57:57.284401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:57:57.320587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 18:57:57.329998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 18:57:57.346102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 18:57:57] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:00:10.185458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:00:10.202703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:00:10.217040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:00:10.282557 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:00:10.625477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:00:10.630679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:00:10.638804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:00:10.648722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:00:10.662206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:00:10.666201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:00:10.687423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:00:10.712978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:00:10.729070 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:00:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:01:04.915892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:04.931814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:04.939837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:04.944829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:04] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:01:04.961450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:04.971654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:04] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:01:04.996802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:05] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:05] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:01:08.902404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:08.908838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:08.914555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:01:08.926732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:08.935750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:08.944658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:08.955859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:01:08.969724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:01:08.989905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:01:09.000902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:09] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:01:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:02:25.239168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:25.243683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:25.251703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:25.260017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:02:25.271028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:02:25.638168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:25.641971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:25.647658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:25.655187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:25.662011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:02:49.552303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:49.559307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:49.565315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:49.574537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:02:49.582536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:49.595539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:49.606538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:02:49.648087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:02:49.658546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:02:49.673665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:02:49] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:14.944791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:14.948309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:14.955549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:14.964577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:14.969579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:14.989331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:15.000710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.036888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:15.048059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:15.050777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.080448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.099383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.116952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.304837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.352788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.365729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:15.375162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.400727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:03:15.427129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:03:15.435020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:03:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:04:51.740684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:51.742010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:51.812500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:51.821174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:51.823588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:51.868567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:04:51.890276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:51.895534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:04:51.936301 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:52] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:52] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:04:53.830554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:53.890488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:53.894511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:53.987849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:53.993842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:04:54.008585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:04:54.013646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:04:54.091552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:04:54.144922 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:04:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:04:59.992732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.006230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.020236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.038795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.047334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.073537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.089379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:00.135371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.190892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:00.255784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:00.271605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.289737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.307101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.335505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:00.355659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.403962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:00.455866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:00.476599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:00.797470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.805973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:00.828743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:00.835743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:04.839044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:04.847487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:04.863051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:04.876228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:04.888177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:04] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:04.906411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:04.914832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:04] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:04.930737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:04] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:04.944540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:04] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:04.982662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:05.000920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:05.011640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:05] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:05.027641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:05] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:05.036641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:05] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:05] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:05] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:05] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:06.542677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:06] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:07.786807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:07.788787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:07.797798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:07.811820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:07.820075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:07.841456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:07.866810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:07.884602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:07.891329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:07.903071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:07.922981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:07] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:08] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:37.469107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.477511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.487400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.500937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.508943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.534120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.542659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.547654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.577485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:37.594419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.314843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.324071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.333119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.342582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.356593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.362587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.379528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.386829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.396361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.402458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.408918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.417654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.429847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.435255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.442636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.448502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.457838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.467940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.470453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.477058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.484608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.487598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.494067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.499382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.505131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.512703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.518957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.526283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.537351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.543216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.548464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.557360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.563812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.567538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.577729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.585182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.591439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.601733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.606745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.615009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.620273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.628767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.631745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.638844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.643972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.649672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.658383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.667372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.669359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.676474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.684534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.690294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.694524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.702951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.708814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.716769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.726776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.734147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:38.739042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:38.746043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:56.998509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:57.110340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.116342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.123339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.131490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.139591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.144594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:57.164124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.171937 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-03-04 19:05:57.175219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:57.210885 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:57.296293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.306004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.315205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.327715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:57.351415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.361501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:57.387126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.396066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:05:57.404657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:05:57.442128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:05:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.081097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.097037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.107903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.116682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.133273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.169025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.221111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.235904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.256558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.266615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.335472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.349695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.398240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.430777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.476486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.509577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.576392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.599535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.614075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.668915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.732006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.748994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:00.881523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:00.885533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:07.242341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:07.245353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:07.252750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:07.290784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:07.343971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:07.365853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:07.390057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:11.298014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:11.316315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:11.328899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:11.370495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:11.498598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:11.559930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:11.617665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:11.850467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:11.863386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:11.868443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:12] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:39.329622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.335618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.338079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.340168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.343375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.345839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:39.352358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.355249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.358736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.363108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:39.972473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.985007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:39.993838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:39.999228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.008215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.013234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.020857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.026963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.034457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.039787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.045212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.057706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.062619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.071164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.073983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.081875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.090484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.097437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.107515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.115481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.119123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.123297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.134574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.141808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.146819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.156529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.161805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.166802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.174154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.179635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.189016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.194880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.200675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.210833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.219071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.224403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.230327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.237428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.242866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.253201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.258917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.269352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.274659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.278746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.285312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.296397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.302116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.308265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.313990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.321762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.327798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.332167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.339160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.346519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.350982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.356675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.360625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.369265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:40.377379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:40.380668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:56.672327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:56] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:56.804359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:56.810361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:56.818007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:56.827198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:56.839202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:56.853923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:56.865257 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-03-04 19:06:56.869253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:56.910167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:56.918978 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:57.021722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:57.025199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:57.042743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:57.050743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:57.081533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:57.100568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:57.115420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:57.137008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:57.171600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:57.182597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:58.679580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:58.693394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:58.702925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:58.712654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:58.719412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:58.741896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:58.762390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:58.795651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:58.808244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:58.817754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:58.843329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:58.858346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:58.892928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:58.914345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:58.933735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:58.964543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:59.003336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:59.021456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:59.053374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:59.079891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:06:59.110005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:59.149743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:59.196637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:06:59.227060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:06:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:07:06.740026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:06.756081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:06.773889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:06] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:07:06.836323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:06.842517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:06.854783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:07:06.918410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:07:11.282239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:11.287817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:11.291299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:11.296373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:11.304515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:07:11.312608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:07:11.324389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:11.330546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:07:11.341506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:07:11.349959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:07:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:10:04.609340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:04.613655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:10:04.625011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:04.630184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:04.640034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:10:07.488573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:10:11.278763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:11.286134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:10:11.304360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:11.309371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:11.320121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:11.331072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:11.335468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:11.345763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:11.369848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:10:11.386318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:10:57.902099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:57.905773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:10:57.914061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:10:57.926071 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:10:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:11:01.471179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:11:05.722748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:11:05.731480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:11:05.740902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:11:05.753949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:11:05.761811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:11:05.778818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:11:05.789537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:11:05.795540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:05] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:11:05.822335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:11:05.823342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:05] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:05] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:05] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:11:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:46.912635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:46.920938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:46.923086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:46.926432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:46.929431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:46] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:46.939430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:46.946429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:46.949673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:46.952671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:46.956761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:46] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.586957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.595103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.604872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.614355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.618907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.629050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.633055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.644243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.647244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.654863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.661498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.675322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.683662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.690224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.700429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.710769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.716080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.729314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.737892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.747153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.757450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.763448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.772134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.779503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.789028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.794511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.805140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.818375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.823802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.832729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.841152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.849360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.856315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.867077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.874256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.888444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.892433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.901505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.911203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.920762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.929515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.938935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.947948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.957236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.964246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.970256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:47.980255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.984766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:47.991781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:48.002218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:48.007648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:48.012643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:48.024559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:48.034463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:48.040711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:48.051344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:48.056460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:12:48.064229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:48.072997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:12:48.079366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:12:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.091551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.201320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.205524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.211938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.218942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.227334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.240576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.245671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.260141 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.285803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.291301 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.395325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.404903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.414424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.423200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.444437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.470218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.477369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:31.484378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.506549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:31.533593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.447723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.454450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.468074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.490932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.509631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.527908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.538631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.549879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.556955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.585367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.615514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.622436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.657202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.673690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.683756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.714125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.742595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.757444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.791770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.808062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.829838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.858389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:13:34.910349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:13:34.937309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:42] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:42] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:13:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +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-03-04 19:18:05.851624 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-04 19:18:05.851624 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-04 19:18:05.852674 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-04 19:18:05.852674 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-04 19:18:05.852674 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-04 19:18:42.548321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:42.552322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:42.557321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:42.570317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:42.581379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:42] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:42.591048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:42.595094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:42.598141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:42.602099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:42.606095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:42] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.136027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.147024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.154743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.162728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.167751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.174107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.179268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.184732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.192335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.198795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.204794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.208595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.215760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.221738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.232936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.236931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.241353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.248498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.256619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.260620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.266620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.269618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.280649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.286649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.294183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.298717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.308729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.320051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.325053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.329056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.337052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.343346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.348352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.355358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.360713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.371344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.379079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.385086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.392789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.396818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.405864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.414689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.425249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.433514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.439569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.443172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.454698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.457691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.462696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.472367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.481852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.484555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.493063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.504433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.508812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.516814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.523817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:18:43.527815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.534816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:18:43.540812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:18:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.409601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.550973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.557089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.571633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.585385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.596652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.605020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.615892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.643776 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-03-04 19:19:00.645526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.676533 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.800562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.817730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.829496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.847310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.861457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.900175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.916429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.946380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:00.952953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:19:00.975018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:01] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +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-03-04 19:19:55.327356 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-04 19:19:55.327356 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-04 19:19:55.327356 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-04 19:19:55.327356 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-04 19:19:55.327356 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-04 19:19:55.374857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.378148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.379422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.381977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.383233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.385242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.389236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.389236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.392238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:19:55.393235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:55] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:55] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:55] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:55] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:55] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:55] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:55] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:19:55] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.199261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.346519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.351758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.360444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.374965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.376975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.393448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.398603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.399896 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.426211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.448590 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.573781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.584876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.599569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.613672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.639779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.676198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.693432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.700666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:20:04.717542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:20:04.754061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:20:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +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-03-04 19:21:17.675446 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-03-04 19:21:17.676435 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-03-04 19:21:17.676435 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-03-04 19:21:17.676435 : ++ FLASK PORT 5001 ++ +INFO:root:2025-03-04 19:21:17.676435 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-03-04 19:21:56.733048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:56.738188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:56.741189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:56.743193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:56.746197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:56] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:56.762188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:56.770187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:56.774188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:56.783188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:56.792195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:56] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.325849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.335511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.341656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.346033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.352167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.359168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.362042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.370478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.374936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.378863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.388149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.393531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.398798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.404801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.410804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.417690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.426241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.431184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.437103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.441558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.445766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.449855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.460191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.467705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.475374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.478764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.486554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.491549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.498545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.506714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.509606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.518050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.525113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.530063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.536268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.541983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.548250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.555100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.559280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.564354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.574932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.581772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.590164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.594668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.602121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.610811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.618691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.624195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.634656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.641228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.644731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.654034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.660486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.664756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.672335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.676339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.686826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:21:57.691826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.698233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:21:57.706160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:21:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:11.539814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:11.679232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.685401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.693451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.701455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:11.714279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.725081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.736744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.743102 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:11.772410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.788148 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:11.906225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:11.927541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.939391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.948806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:11.953715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:12.000637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:12.032456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:12.059175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:12.076503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:12.095519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.685044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:15.699382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:15.711596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:15.721131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.742291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:15.751055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.780799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:15.788975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.808547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.817830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:15.835158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.854610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.885760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.913091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:15.922657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.966700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:15.994779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:16.020446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:16.051819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:16] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:16.071391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:16.085781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:16.121356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:16] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:16.191011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:16.207490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:23.107014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:23.123291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:23.138802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:23.154545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:23.197062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:23.222145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:23.229197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:23] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:26.897607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:26.903603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:26.906708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:26.912313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:26.923340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:26.932029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:26.938031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:22:26.945518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:26] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:26.955360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:22:26.966964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:26] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:22:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:25:22.233850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:22.240101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:22.246065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:22.253422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:22.260700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:25:22.272181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:22.283301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:25:22.304761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:22.308108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:22.320292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:25:55.114019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:55.121008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:55.131008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:25:55.136010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:25:55.140009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:55] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:25:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:04.801013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:04.806377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:04.812925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:04.821654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:04.832138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:05] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:09.105334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:11.632239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:11.637491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:11.644680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:11.650725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:11.662064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:11.677831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:11.680889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:11.695907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:11.711214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:11.725017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:53.943651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:53.945741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:53.950650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:53.952977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:53.954114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:53.961125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:53.964131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:53.968129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:53.970671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:53.973958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.482556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.487869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.494663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.502814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.507884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.512489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.519630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.525645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.531815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.536821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.544559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.549591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.557510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.564031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.571738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.576016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.586387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.589393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.596377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.599770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.605088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.615848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.623087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.628628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.630615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.638000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.646588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.651731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.659958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.661976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.665470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.672085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.682014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.689525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.694116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.700491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.705977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.710086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.715597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.718061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.726708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.736595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.739955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.748807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.757472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.761831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.768549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.775349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.784253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.789052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.795193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.800624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.806039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.813975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.820778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.826720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.832023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:26:54.839178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.843704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:26:54.848476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:26:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.348163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.470338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.475429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.481481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.488827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.502265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.504260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.517597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.522599 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.544199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.570751 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.669405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.678498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.690218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.700238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.733664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.750616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.758612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:12.772763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.786773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:12.810689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.063603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.084357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.100324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.122695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.130690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.142653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.160062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.177059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.189698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.221603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.231501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.253592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.256594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.275781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.308240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.329668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.357149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.374331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.407578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.419685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.463754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.477898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:14.540341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:14.561993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:21.628149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:21.636643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:21.655038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:21.720620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:21.736140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:21.757876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:21.785139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:25.868178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:25.877248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:25.894745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:25.911359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:25.947305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:25] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:25.996718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:26.009799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:26.069007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:26.397663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:26.431178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:26] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:35.785702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:38.563832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:38.567827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:38.572436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:38.580382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:38.588523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:38.594629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:38.604030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:38.622669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:27:38.731475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:27:38.738937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:27:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:28:38.125594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:38.132651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:38.136655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:38.141756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:28:38.151395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:38] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:28:39.574540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:28:42.990044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:42.994044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:43.001045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:28:43.010211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:43.018851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:43.029027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:43.038287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:28:43.057094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:28:43.073609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:28:43.104174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:28:43] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:29:19.790939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:29:19.795946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:29:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:29:19.803033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:29:19.813246 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:29:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:29:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:29:47.366897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:29:47.371002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:29:47.376157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:29:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-03-04 19:29:47.387458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-03-04 19:29:47.390458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:29:47] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:29:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:29:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Mar/2025 19:29:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index 9a602e3..0e9a580 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -533,11 +533,15 @@ def Add_Update_SessionFormation(diction): qry_automatic_setup = {'collection_target':'session_formation', 'valide':'1', 'locked':'0', - "actif": "1", 'partner_owner_recid':str(my_partner['recid'])} for base_document_automatic_setup_for_partner in MYSY_GV.dbname['base_document_automatic_setup'].find(qry_automatic_setup): - mydata['automatic_traitement'].append(base_document_automatic_setup_for_partner) + new_local_data = base_document_automatic_setup_for_partner + new_local_data['statut'] = "0" + new_local_data['created_date'] = str(datetime.now()) + new_local_data['created_by'] = str(my_partner['_id']) + + mydata['automatic_traitement'].append(new_local_data) #print(" ### mydata = ", mydata) coll_name = MYSY_GV.dbname['session_formation'] @@ -6135,7 +6139,7 @@ def Prepare_and_Send_Default_Convention_From_Session_By_PDF(diction): local_diction['courrier_template_id'] = default_courrier_template_client_data['_id'] local_diction['client_id'] = str(val) - print(" #### Traitemnt de local_diction aaa = ", local_diction) + #print(" #### Traitemnt de local_diction aaa = ", local_diction) 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 @@ -8303,7 +8307,7 @@ def Sent_Attestation_Stagiaire_By_Email(tab_files, Folder, diction): 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 la convention par email " + return False, " Impossible d'envoyer l'attestation de formation par email " """ diff --git a/formulaire_mgt.py b/formulaire_mgt.py index 15836d3..ca8fd3d 100644 --- a/formulaire_mgt.py +++ b/formulaire_mgt.py @@ -55,7 +55,8 @@ def Add_Formulaire(diction): """ Verification des input acceptés """ - field_list = ['token', 'code', 'nom', 'description', 'commentaire', 'message_introduction', 'type' ] + field_list = ['token', 'code', 'nom', 'description', 'commentaire', 'message_introduction', + 'type', 'default' ] incom_keys = diction.keys() for val in incom_keys: @@ -115,7 +116,7 @@ def Add_Formulaire(diction): mycommon.myprint(" Un formulaire avec le même code existe déjà ") return False, " Un formulaire avec le même code existe déjà " - mydata['date_update'] = str(datetime.now()) + mydata['date_created'] = str(datetime.now()) mydata['update_by'] = str(my_partner['_id']) mydata['partner_owner_recid'] = str(my_partner['recid']) mydata['valide'] = "1" @@ -665,6 +666,8 @@ def Get_List_Formulaire(diction): user = New_retVal user['id'] = str(val_tmp) val_tmp = val_tmp + 1 + if( "default" not in user.keys()): + user['default'] = "0" RetObject.append(mycommon.JSONEncoder().encode(user)) @@ -749,6 +752,8 @@ def Get_List_Formulaire_with_filter(diction): user['id'] = str(val_tmp) val_tmp = val_tmp + 1 + if ("default" not in user.keys()): + user['default'] = "0" RetObject.append(mycommon.JSONEncoder().encode(user)) return True, RetObject @@ -814,6 +819,8 @@ def Get_Given_Formulaire(diction): user = New_retVal user['id'] = str(val_tmp) val_tmp = val_tmp + 1 + if ("default" not in user.keys()): + user['default'] = "0" RetObject.append(mycommon.JSONEncoder().encode(user)) @@ -838,7 +845,8 @@ def Update_Formulaire(diction): """ Verification des input acceptés """ - field_list = ['token', 'code', 'nom', 'description', 'commentaire', 'form_id', 'message_introduction', 'type'] + field_list = ['token', 'code', 'nom', 'description', 'commentaire', 'form_id', 'message_introduction', + 'type', 'default'] incom_keys = diction.keys() for val in incom_keys: diff --git a/main.py b/main.py index 5958b2c..ef92da1 100644 --- a/main.py +++ b/main.py @@ -11966,13 +11966,13 @@ def Get_Given_base_document_automatic_setup(): """ API de test du cron qui va traiter automatiquement les documents à envoyer """ -@app.route('/myclass/api/Cron_Daily_Document_Sending/', methods=['POST', 'GET']) +@app.route('/myclass/api/Cron_Daily_Automatic_Qualiopi_Documents/', methods=['POST', 'GET']) @crossdomain(origin='*') -def Cron_Daily_Document_Sending(): - mycommon.myprint(" ### CRONNN Cron_Daily_Document_Sending : payload = ") - print(" ### CRONNN Cron_Daily_Document_Sending : payload = ") - status, retval = Job_Cron.Cron_Daily_Document_Sending() - print(" FIN traitement Cron_Daily_Document_Sending localStatus = ") +def Cron_Daily_Automatic_Qualiopi_Documents(): + mycommon.myprint(" ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = ") + print(" ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents : payload = ") + status, retval = Job_Cron.Cron_Daily_Automatic_Qualiopi_Documents() + print(" FIN traitement Cron_Daily_Automatic_Qualiopi_Documents localStatus = ", status) return jsonify(status=status, message="OK" ) diff --git a/module_editique.py b/module_editique.py index da08c8b..62a53d8 100644 --- a/module_editique.py +++ b/module_editique.py @@ -1228,7 +1228,7 @@ def Editic_Log_History_Action_From_courrier_template_type_document_ref_interne(m history_data_to_log['target_collection_recid'] = local_target_collection_recid - print( "#### history_data_to_log = ", history_data_to_log) + #print( "#### history_data_to_log = ", history_data_to_log) MYSY_GV.dbname['courrier_template_tracking_history'].insert_one(history_data_to_log) return True, " L'évènement Editique a été correctement enregistré " diff --git a/partner_client.py b/partner_client.py index 7a3b390..99f88d8 100644 --- a/partner_client.py +++ b/partner_client.py @@ -2729,7 +2729,6 @@ def Create_Partner_Client_Intranet_Account(diction): return True, " WARNING : Le compte intranet du client a été mais impossible d'envoyer l'email de notification au client (2) " - body = { "params": dictionnary_data, } @@ -2752,7 +2751,7 @@ def Create_Partner_Client_Intranet_Account(diction): sourceHtml = contenu_doc_Template.render(params=body["params"]) html_mime = MIMEText(sourceHtml, 'html') - # Creation de l'email à enoyer + # Creation de l'email à envoyer msg = MIMEMultipart("alternative") if (str(partner_own_smtp_value) == "1"): diff --git a/prj_common.py b/prj_common.py index 8afcf50..e78d6c8 100644 --- a/prj_common.py +++ b/prj_common.py @@ -4727,7 +4727,8 @@ def Get_Dictionnary_data_For_Template(diction): local_company_data = local_retval company_data = {} - company_liste_champ = ['nom', 'email', 'telephone', 'num_nda', 'website', 'adr_street', 'adr_zip', 'adr_city', 'adr_country', 'siret'] + company_liste_champ = ['nom', 'email', 'telephone', 'num_nda', 'website', 'adr_street', 'adr_zip', 'adr_city', + 'adr_country', 'siret', 'contact_nom', 'contact_prenom', 'contact_tel', 'contact_mail'] for champ in company_liste_champ: if (champ in local_company_data): new_champ_name = "societe_" + str(champ) @@ -6524,7 +6525,7 @@ def Get_Courrier_Template_Include_Default_Data(diction): """ Verification des input acceptés """ - field_list = ['partner_owner_recid', 'ref_interne', 'type_doc', 'default'] + field_list = ['partner_owner_recid', 'ref_interne', 'type_doc', 'default', 'default_version'] incom_keys = diction.keys() for val in incom_keys: