From b0c1fb553feba12260daba0b0e6ef533b452683e Mon Sep 17 00:00:00 2001 From: cherif Date: Sun, 15 Sep 2024 18:30:43 +0200 Subject: [PATCH] 15/09/2024 - 18:00 --- .idea/workspace.xml | 38 +- E_Sign_Document.py | 47 +- GlobalVariable.py | 12 + Inscription_mgt.py | 16 +- Log/log_file.log | 3416 +++++++++++++++++ Session_Formation.py | 18 +- base_partner_catalog_config.py | 20 +- class_mgt.py | 46 + crm_opportunite.py | 8 +- email_mgt.py | 24 +- .../pip/_internal/commands/configuration.py | 2 +- .../pip/_internal/commands/install.py | 2 +- .../pip/_internal/configuration.py | 2 +- env/Lib/site-packages/pip/_internal/index.py | 4 +- env/Lib/site-packages/pip/_internal/wheel.py | 2 +- .../site-packages/pip/_vendor/pyparsing.py | 2 +- .../pkg_resources/_vendor/pyparsing.py | 2 +- .../setuptools/_vendor/pyparsing.py | 2 +- note_evaluation_mgt.py | 8 +- partner_order.py | 10 +- 20 files changed, 3601 insertions(+), 80 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index a47db73..321da54 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,13 +1,27 @@ - + - + + + + + + + + + + + + + + + @@ -462,7 +476,6 @@ - @@ -487,6 +500,7 @@ - \ No newline at end of file diff --git a/E_Sign_Document.py b/E_Sign_Document.py index 0eb4cd6..9e8a4b0 100644 --- a/E_Sign_Document.py +++ b/E_Sign_Document.py @@ -394,12 +394,19 @@ def Get_Given_E_Document_Not_Signed_No_Token(diction): 'secret_key_open':str(diction['secret_key_open']), 'statut':'0'} + for New_retVal in MYSY_GV.dbname['e_document_signe'].find(qry).sort([("_id", pymongo.DESCENDING), ]): + if( "email_destinataire" in New_retVal.keys() and New_retVal['email_destinataire']): list_email = str(New_retVal['email_destinataire']).replace(",",";") - tab_list_email = list_email.split(";") + tab_list_email_tmp = list_email.split(";") - if( str(diction['user_email']) in tab_list_email ) : + tab_list_email= [] + for mail in tab_list_email_tmp: + tab_list_email.append(str(mail).strip()) + + + if( str(diction['user_email']).strip() in tab_list_email ) : user = New_retVal user['id'] = str(val_tmp) if( "signature_digitale" in New_retVal.keys() ): @@ -785,6 +792,30 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): """ Apresent que le message est signé, on va mettre à jour le doc """ + """ + /!\ : 14/09/2024 : + On recupere d'abord l'_id du document car comme on autorise plusieurs email, + une LIKE provoque un trou de securité et n'est pas bien adaptée + """ + qry_check = {'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['e_doc_id'])), + 'secret_key_signature': str(diction['secret_key_signature']), + } + + my_doc = MYSY_GV.dbname['e_document_signe'].find_one(qry_check) + my_doc_email_destinataire = [] + if( my_doc and "email_destinataire" in my_doc.keys() and my_doc['email_destinataire']): + my_doc_email_destinataire_tmp = str(my_doc['email_destinataire']).replace(",", ";").split(";") + for mail in my_doc_email_destinataire_tmp: + my_doc_email_destinataire.append(str(mail).strip()) + + + if( str(diction['email_destinataire']).strip() not in my_doc_email_destinataire ): + return False, " Impossible de signer le document. Email invalide " + + + + encoded_signed_pdf_to_string = base64.b64encode(decrypted_message) new_data = {} new_data['signature_digitale'] = msg.digitalsignature @@ -798,12 +829,8 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): qry_key = {'valide': '1', 'locked': '0', '_id': ObjectId(str(diction['e_doc_id'])), 'secret_key_signature': str(diction['secret_key_signature']), - 'email_destinataire': str(diction['email_destinataire'])} + } - print({'valide': '1', 'locked': '0', - '_id': ObjectId(str(diction['e_doc_id'])), - 'secret_key_signature': str(diction['secret_key_signature']), - 'email_destinataire': str(diction['email_destinataire'])}) result = MYSY_GV.dbname['e_document_signe'].find_one_and_update( qry_key, @@ -812,7 +839,7 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): return_document=ReturnDocument.AFTER ) - print(" result == ", result) + #print(" result == ", result) if ("_id" not in result.keys()): mycommon.myprint( " Impossible de signer le document (2) ") @@ -834,7 +861,7 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): qry_key = {'valide': '1', 'locked': '0', '_id': ObjectId(str(diction['e_doc_id'])), 'secret_key_signature': str(diction['secret_key_signature']), - 'email_destinataire': str(diction['email_destinataire'])} + } e_document_date_2 = MYSY_GV.dbname['e_document_signe'].find_one(qry_key) @@ -955,7 +982,7 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): qry_key = {'valide': '1', 'locked': '0', '_id': ObjectId(str(diction['e_doc_id'])), 'secret_key_signature': str(diction['secret_key_signature']), - 'email_destinataire': str(diction['email_destinataire'])} + } new_data = {} diff --git a/GlobalVariable.py b/GlobalVariable.py index 3b1e7fd..6800e53 100644 --- a/GlobalVariable.py +++ b/GlobalVariable.py @@ -26,6 +26,8 @@ if (MYSY_ENV == "PROD"): CLIENT_URL_BASE = 'https://www.mysy-training.com/' MYSY_DEBUG_LEVEL = 0 + # Domaine pour le catalogue public + MYSY_PUBLIC_CATALOG_DOMAIN = 'mysy-hosting.online' elif (MYSY_ENV == "DEV"): CONNECTION_STRING = "mongodb://localhost:27017/cherifdb_dev" @@ -34,6 +36,10 @@ elif (MYSY_ENV == "DEV"): CLIENT_URL_BASE = 'http://localhost:3009/' MYSY_DEBUG_LEVEL = 1 + # Domaine pour le catalogue public + MYSY_PUBLIC_CATALOG_DOMAIN = 'localhost:3009' + + elif (MYSY_ENV == "REC"): CONNECTION_STRING = "mongodb://localhost:27017/cherifdb_rec" client = MongoClient(CONNECTION_STRING) @@ -41,6 +47,9 @@ elif (MYSY_ENV == "REC"): CLIENT_URL_BASE = 'https://dev.mysy-training.com/' MYSY_DEBUG_LEVEL = 1 + # Domaine pour le catalogue public + MYSY_PUBLIC_CATALOG_DOMAIN = 'devmysy-hosting.online' + elif (MYSY_ENV == "DEM"): CONNECTION_STRING = "mongodb://localhost:27017/cherifdb_demo" client = MongoClient(CONNECTION_STRING) @@ -48,6 +57,9 @@ elif (MYSY_ENV == "DEM"): CLIENT_URL_BASE = 'https://demo.mysy-training.com/' MYSY_DEBUG_LEVEL = 1 + # Domaine pour le catalogue public + MYSY_PUBLIC_CATALOG_DOMAIN = 'devmysy-hosting.online' + YTUBES_CONNECTION_STRING = "mongodb://localhost:27017/" diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 42e6bc0..a7083b9 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -9140,7 +9140,7 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): new_e_document_diction = {} new_e_document_diction['token'] = diction['token'] new_e_document_diction['file_name'] = outputFilename - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) new_e_document_diction['email_destinataire'] = str(toaddrs) new_e_document_diction['source_document'] = new_model_courrier_with_code_tag @@ -9251,7 +9251,7 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] #msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes @@ -9268,7 +9268,7 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] #msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) @@ -9760,7 +9760,7 @@ def Sent_Convention_Individuelle_Stagiaire_By_Email(tab_files, Folder, diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes @@ -9777,7 +9777,7 @@ def Sent_Convention_Individuelle_Stagiaire_By_Email(tab_files, Folder, diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) for myfile in tab_files_to_attache_to_mail: @@ -11002,7 +11002,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat new_e_document_diction = {} new_e_document_diction['token'] = diction['token'] new_e_document_diction['file_name'] = outputFilename - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) new_e_document_diction['email_destinataire'] = str(toaddrs) new_e_document_diction['source_document'] = new_model_courrier_with_code_tag @@ -11122,7 +11122,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes @@ -11139,7 +11139,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) for myfile in tab_files_to_attache_to_mail: diff --git a/Log/log_file.log b/Log/log_file.log index 33b74d8..8bbbd64 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2795837,3 +2795837,3419 @@ INFO:root:2024-09-12 12:53:07.804975 : ++ FLASK PORT 5001 ++ INFO:root:2024-09-12 12:53:07.804975 : ++ LMS_BAS_URL mysy-training.com/ ++ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-13 21:14:02.161074 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-13 21:14:02.162108 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-13 21:14:02.162108 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-13 21:14:02.162108 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-13 21:14:02.162108 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-13 21:14:14.311739 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-13 21:14:14.312738 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-13 21:14:14.312738 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-13 21:14:14.312738 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-13 21:14:14.312738 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 11:59:43.886496 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 11:59:43.887494 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 11:59:43.887494 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 11:59:43.887494 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 11:59:43.887494 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 11:59:56.874215 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 11:59:56.874215 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 11:59:56.874215 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 11:59:56.874215 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 11:59:56.874215 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 12:01:15.833422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:15.835437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:15.837439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:15.838807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:15.842641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:15.844409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:15.848398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:15.850438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:15] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:15.909574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.214515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.470790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.474184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.478183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.482210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.486224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.490693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.503048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.507398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.518987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.521999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.525072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.534394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.536392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.540843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.547838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.553643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.557610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.565137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.570236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.575094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.578728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.585372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.590783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.596247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.609177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.610177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.614242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.615251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.622877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.627319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.630771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.636294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.640726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.647741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.652052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.656091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.659671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.663669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.670587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.675184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.678448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.682864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.688172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.691419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.698413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.702531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.706715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.714613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.718068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.725451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.729408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.735631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.740828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.747322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.752675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.756086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:01:16.760101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.766364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.770270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:01:16.776548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:01:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:09.766527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:09] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:09.991004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:09.995470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.000464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.010267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:10.019703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.025952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.031070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:10.047460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.061435 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:10.064436 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:10.142892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.146912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.150349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.155362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.159791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:10.167229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:10.188117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:10.198445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:10.237988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:10.245157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.809883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.814196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.818553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.823721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.831845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.837083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.841357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.846941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.853482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.861482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.865480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.874017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.889450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.902104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.913807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.919988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.932209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.938807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.946668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.960987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:14.970683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:14.977423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:19.784577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:19.787574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:19.792400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:19.797814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:19.802428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:19.812354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:19.817306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:19] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:19] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:22.967004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:24.830916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:54.108216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:54.113430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:54.116542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:54.119888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:03:54.126309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:54.133779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:03:54.137889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:03:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.049305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.052313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.056215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.061298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.065304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.070295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.084689 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.090996 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.274506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.278779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.283545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.290744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.300982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.312192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.313202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.319324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.326619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.346048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.353405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.358516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.364517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.375725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.394803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.404050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.411332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.414350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.438956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.452357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:20.460891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:20.467610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:25.523134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:25.527503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:25.530839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:25.535135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:25.543476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:25.551328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:25.557871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:28.167141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:28.170544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:28.173956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:28.179057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:28.184937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:28.190535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:28.194971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:28.206296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:39.569818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.463440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.467618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.471225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.476256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.479891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.485904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.500534 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.506695 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.755963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.758978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.763212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.768759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.774887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.782923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.786922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.795512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.802028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.819968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.829103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.835546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.843352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.848280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.867504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.875408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.878100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:04:49.884448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.905823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.918833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.929762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:04:49.937217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:04:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:05:00.219250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:00.222733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:00.226222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:00.233067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:00.237641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:00.241167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:05:00.252262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:05:02.473998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:05:03.660514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:03.664653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:03.667805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:03.672288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:03.677510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:03.682522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:05:03.693415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:05:03.699741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:05:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.494979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.498915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.503459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.507483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.511489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.517557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.530986 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-14 12:07:38.532458 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.676274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.679638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.682081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.686549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.690022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.695253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.707301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.709297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.722597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.726768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.735181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.741132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.745259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.751381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.773255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.776254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.783154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.785160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.811277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.814447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:38.819287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:38.837904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:46.522904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:46.526984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:46.529328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:46.534773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:46.539817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:46.545893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:46.553491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:48.856967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:50.675776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:50.679590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:50.683125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:50.687354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:50.692977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:50] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:07:50.701259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:50.707276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:07:50.712699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:50] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:50] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:50] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:07:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:35.325796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:35] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:35.669651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:35.672964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:40.003668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:40.007562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:40.010732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:40.017029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:40.024642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:40.032802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:40.039136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:40.046755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.196563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.200233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.201243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.207112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.210464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.216813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.225354 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.232876 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.372632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.376110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.380285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.385359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.393977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.397016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.401010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.406733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.414592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.421514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.439444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.445442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.452565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.463370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.477910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.485911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.491238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.495240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.517690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:47.527625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.529625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:47.534934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:51.236211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:51.240102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:51.243795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:51.246811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:51.253167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:08:51.262177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:08:51.271565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:51] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:08:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:13.082989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:13] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:13.426023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:13.429303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:16.561852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:16.565284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:16.568604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:16.573667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:16.577655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:16.582558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:16.596585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:16.607059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:18.459059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:18] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:25.317929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:28.124431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.669961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.673194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.675689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.681272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.685267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.690243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.697723 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.707087 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.884244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.888240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.892910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.894913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.904172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.914943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.919290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.926962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.935772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.945444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.954370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.961734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.969659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:58.978781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:58.989467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:59.002579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:59.006602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:59.014602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:59.023550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:59.039429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:09:59.044821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:09:59.065949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:09:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:02.792843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:10:02.795219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:06.101668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:06] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:08.363602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:10:08.366672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:10:08.372143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:10:08.377150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:10:08.383151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:08.390947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:08.398792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:08.407950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:10:08.414574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:08.419241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:10:08.425005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:08.431911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:08.439982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:08.452069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:21.732457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:21] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:21.753487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:21] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:34.806154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:34] "POST /myclass/api/Update_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:34.845391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:34] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:57.697909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:57] "POST /myclass/api/Add_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:10:57.736383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:10:57] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:11:16.475853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:11:16.477869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:11:16.482676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:11:16.487096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:11:16.492598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:11:16.499780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:11:16.507278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:11:16.518865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:11:18.567386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:18] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:11:22.630054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:22] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:11:27.048728 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

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

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

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

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

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

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
Nom formateur :  

\n

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

\n

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

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
part nom6_client   part 6   mysy1000formation+07@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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

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

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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 nom2   part 2   mysytraining+apprenant1@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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

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

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : msys boite   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : qsdsq@qsdsq.fr 

\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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
Nom formateur :  

\n

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

\n

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

\n
part nom5_client   part 5   mysy1000formation+04@gmail.com
part nom6_client   part 6   mysy1000formation+05@gmail.com
part nom6_client   part 6   mysy1000formation+06@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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_54088.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:31] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:11:31.990174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:11:32] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:14.716719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:14] "POST /myclass/api/Duplicate_List_Session_Formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:14.937974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:19.451663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:19.454695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:19.460068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:19.465082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:19.468102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:19.476874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:19.484570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:19] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:19] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:35.092240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:35] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:35.499669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:35.502930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:49.208633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:49.213499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:49.218122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:49.221135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:49.225845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:49.232302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:49.241790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:51.707599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:53.998264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:54.003286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:54.007220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:13:54.014065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:13:54.016068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:13:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:14:50.984384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:14:52] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:14:52.179517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:14:52.182793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:14:52.187337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:14:52.190323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:14:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:14:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:14:52] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:14:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:14:55.294443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:14:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:05.598851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:06] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:06.225977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:06.229464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:11.095810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:12.036770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:12.039766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:12.043779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:12.049782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:12.052781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:12.057320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:12.071830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:12.075832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:12] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:12] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:14.729130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:14.732659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:14.737046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:14.740871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:14.744405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:14.752036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:14.760047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:16.816694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:16.819786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:16.822868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:16.826961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:16.831958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:16.842247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:16.848261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:15:16.856601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:18.054834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:18] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:19.677912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:19] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:22.080150 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_90564.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:23] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:23.374453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:23] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:46.654065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:46] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:46.672395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:46] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:56.159598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:56] "POST /myclass/api/Update_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:15:56.190831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:15:56] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:16:07.833877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:16:07] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:16:09.503488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:16:09] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:16:13.157614 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_76962.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:16:14] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:16:14.743774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:16:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:17:16.027328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:17:18.513610 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:17:18] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:18:42.231926 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:18:42.231926 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:18:42.231926 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:18:42.231926 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:18:42.231926 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 12:19:36.135744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:19:36.622605 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:19:36] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:20:47.764435 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:20:47.764435 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:20:47.764435 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:20:47.765437 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:20:47.765437 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:20:57.201999 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:20:57.201999 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:20:57.201999 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:20:57.201999 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:20:57.201999 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 12:20:58.983625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:20:59.467043 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:20:59] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:22:30.612033 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:22:30.612033 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:22:30.612033 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:22:30.612033 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:22:30.612033 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 12:22:58.694877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:22:59] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:12.860679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:12.862887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:12] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.162593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:13.163607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:13.164606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:13.166717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:13.169952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:13.171078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.251115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.477834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.552275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.628570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.690965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:13.693362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.739064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.785508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.864155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:13.939857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.001394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:14.003867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.047834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.094617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.173076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.251420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.311838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.318546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.359099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.405208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.482859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.561414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.624529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:14.627532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.672718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.719360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.796965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.873585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.934847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:23:14.938842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:14.982640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.029600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.105015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.182492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.243342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.249474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.290040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.352170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.413436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.492901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.554377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.560335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.600261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.661578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.724600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.800550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.863495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.870161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.910452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:15.972212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.034393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.112687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.174596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.179456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.219464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.280221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.342236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.418480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.481189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.486243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.527714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:16.589611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:23:49.000734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:23:49] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:24:14.796817 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:24:14.797832 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:24:14.797832 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:24:14.797832 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:24:14.797832 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:25:51.976379 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:25:51.976379 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:25:51.976379 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:25:51.976379 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:25:51.976379 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 12:26:34.119418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:26:34] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:26:35.668201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:26:35] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:26:40.209584 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_24655.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:26:41] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:26:41.693120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:26:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:28:16.168482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:28:16.686996 : Add_Contact - Il existe déjà un contact qui porte le même email principal = mysy1000formation+02@gmail.com +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:28:16] "POST /myclass/api/Add_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:28:25.409608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:28:25] "POST /myclass/api/Add_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:28:25.439461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:28:25] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:28:46.665215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:28:46] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:28:48.240263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:28:48] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:28:51.357594 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_93222.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:28:53] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:28:53.063969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:28:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:29:47.316507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:29:47] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:30:13.909212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:30:13.992650 : Create_E_Signature_For_E_Document -'NoneType' object has no attribute 'keys' - Line : 823 +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:30:13] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:35:52.131425 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:35:52.131425 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:35:52.131425 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:35:52.131425 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:35:52.131425 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:41:06.366394 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:41:06.366394 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:41:06.366394 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:41:06.366394 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:41:06.366394 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:41:15.747126 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:41:15.747126 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:41:15.747126 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:41:15.747126 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:41:15.747126 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 12:41:25.381089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:41:25.985894 : Create_E_Signature_For_E_Document -'NoneType' object is not subscriptable - Line : 868 +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:41:25] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:43:26.783534 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:43:26.784593 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:43:26.784593 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:43:26.784593 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:43:26.784593 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 12:43:31.617005 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '


 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

\t
Signature Client

' + dest = <_io.BufferedRandom name='./temp_direct/convention_Signe_14_09_2024_32.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPUAAAD1AQMAAACyfyEmAAAABlBMVEUAAIv///+fga7nAAACW0lEQVR42u1ZPW6sYAw0oaDkCNyEvdhKIHGx5SYcgZIC4TczJpsuXfSmWArE5mtGtufHXyJ/fY74nH/O//Z8j4gmZ30Nx6NeT/wxpjy+4vfnr8+JaspcM7do9udwNHubAXyDDizwPaNbcx6AatqOsc+tu/pzAFwjfHv7RhVAmrb4op+H7mVVv3v+ABJTt6J0uVrNH/kLQML3fvnwt57z/ip8b/1xqF8LGezPAHWXrUsooUYPJDHBB1V55JLdFejqiFdeMW1gik39OrEC+GAdZErmsuXlgg8Dl6wfWVGTKH0ZXfwNhttQkPXzhdaWyLjoCwnxQJNJ3YA0J1t7DhhHG3ziLwg7U1pO2Ul2LvqSCgSqmkxkShRxDn2Z8AP1U5OrnAxZgNbY1I+Br90ActnoakoK4TN/qVpVk5lfMI5UQqP8XIFv7H/48QwffVngvwF9gfSl7IRJmp7s4h9R/rtCqWEdP0Noww+qMuunVBqhJh8u+QWlY2q5U59eLJ2NPnMhwla5sX4Vrbh/hE1+qeiH/YjRACEV/CVS/rTRZ27l2t8QEhhXy+Rc8im5OpdhiLXV6dVof6P+3ft57R/tJqaY6F/oVoipgEXkEMJJfPbfQYFPVVNIIF3SZz+/A0vp87rf1uGjf3Bdutqh/Hzh6/tOMH3uDwiI+7mcREnBZz+/71+KxJIbdtqmfrq/Ij70t/a3UsL00RdEA4TA6i9XyxdPHlb3u1xCUiYSIX05bO4Pbnx1/9JwiRPI1Wr+eElE/9CLm9LRWN2fwt9GtbZfsu6vVif9+/z/6nP+P87/AdH8wPBSxRIQAAAAAElFTkSuQmCC', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 603 +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:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATsAAADICAYAAACXrUbEAAAMD0lEQVR4Xu3dsY4kVxmG4ZmUBCwugPUdmIwEacmRWAdEJGtxAZiUxOvIZDYSKdoJyNcEiNBjidy+AjwRKSZHKv7Tni71bHtX3dNd1VXne0oqzbpdXef873f0qqqr6tT1lQUBBBAIIHAdUKMSEUAAgSuyMwgQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZRcSsSAQQIDtjAAEEIgiQXUTMikQAAbIzBhBAIIIA2UXErEgEECA7YwABBCIIkF1EzIpEAAGyMwYQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZRcSsSAQQIDtjAAEEIgiQXUTMikQAAbIzBhBAIIIA2UXErEgEECA7YwABBCIIkF1EzIpEAAGyMwYQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZRcSsSAQQIDtjAAEEIgiQXUTMikQAAbIzBhBAIIIA2UXErEgEECA7YwABBCIIkF1EzIpEAAGyMwYQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZRcSsSAQQIDtjAAEEIgiQXUTMikQAAbIzBhBAIIIA2UXErEgEECA7YwABBCIIkF1EzIpEAAGyMwYQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZdR3z8N7V1fXXXZeoOAQOJEB2B4Ja32bDi+rzR7V+W8J7Z33912MEzkuA7M7Lc0F7G76ozjwluwVFoisXJUB2F8U/ZeOj7FojdWR3XUd4FgRyCZBdt9kPr6q0Z/flkV23OSvsUAJkdyip1W3nyG51kenwpATIblK8l9z58FW1XldjN4sju0tGoe1FECC7RcQwRSeGb2qvT+73/FO3oEzB2D7XRIDs1pTWUX0dhp3Nye4odjbukQDZ9ZjqVbuZ+Kqdxm6XD+rI7qbLUhWFwIEEyO5AUOvabGhXYdvV2O3yh5LdJ+uqQW8ROC8Bsjsvz4XsbfhNdeSvO535Z8nu5wvpnG4gcBECZHcR7FM3Oj4qtm3o7yW7X07dqv0jsGQCZLfkdB7dt+HD+uqnO1+/K9m9++jd+SICHRAguw5C3C9heF6fvdz5/POS3ftdlqooBA4kQHYHglrXZnuyuy3Z/WJdNegtAuclQHbn5bmQve2dxtacdtd1r50FgVwCZNdl9n6z6zJWRZ1EgOxOwrfUL+/JzmnsUqPSr9kIkN1sqOdsyG92c9LW1joIkN06cjqyl47sjgRm8wACZNdlyGTXZayKOokA2Z2Eb6lfJrulJqNflyNAdpdjP2HLe4+LuUAxIW27XgcBsltHTkf2cmiPirVHxrYL2R1J0Ob9ESC7/jKtivZk53GxLnNW1DEEyO4YWqvZluxWE5WOzkaA7GZDPWdDD16j2Bq+qcfFarZiCwK5BMiuy+yHNuPJ853SPi7ZveiyVEUhcCABsjsQ1Lo22zuyI7t1Bai3ExAguwmgXn6XD16Q3brz+zqy++zy/dIDBC5HgOwux37ClveO7LxdbELadr0OAmS3jpyO7OXekV3NUnxdt59YEMglQHZdZk92XcaqqJMIkN1J+Jb65b3T2JqS/fp2qb3VLwTmIEB2c1CevY29W09qSvbrmprdgkAuAbLrMnuy6zJWRZ1EgOxOwrfUL+/NeuLIbqlR6ddsBMhuNtRzNkR2c9LW1joIkN06cjqyl3uTd75bv9ndHbkTmyPQFQGy6yrObTHD0/rXFzulvVOy+7bLUhWFwIEEyO5AUOvabHhS/f1mp89+s1tXgHo7AQGymwDq5Xc5/Kj68B+yu3wSerAcAmS3nCzO3JOhya5Jry1uKj4zXbtbHwGyW19mB/Z4+Ko2fI/sDsRls+4JkF23ET94ZMxEAN3mrLBDCZDdoaRWt92De+1M8bS6/HT43ATI7txEF7O/4Vl15dV9d0zeuZhcdORSBMjuUuQnb/fBFVmym5y3BpZOgOyWntBJ/RuG+697B8VJHH25BwJk10OKb6xhvCJ741WKXQetuAMIkN0BkNa7yfCX6ntdnLj6smRX99pZEMglQHZdZz9OCHBLdl0HrbgDCJDdAZDWu8k4IUCbBKDNfGIygPWGqecnEiC7EwEu++sPJgQwzdOyw9K7iQmQ3cSAL7v7ze0nbfaT9tfMJ5cNQ+sXJkB2Fw5g+uaHJrsntXqKYnrYWlgwAbJbcDjn6dp4+4l77c4D1F5WSoDsVhrc4d0ePq1tP6z11hXZw6nZsj8CZNdfpq9VNDyvD17WWldir2t6dgsCmQTIrvvchzanXZvbri3eRdF93gp8EwGy635sPJgQwLx23eetQLKLHgPjRYrP6lS2ZkCxIJBHwJFdRObjRYqvS3Z1v50FgTwCZBeR+YOJPP1uF5G5Il8nQHYRY8JEnhExK/KtBMguZoAM7faT57V+XqeydaHCgkAWAbKLydupbEzUCv1eAmQXNTDG52S9kyIqd8U2AmQXNQ7Gq7J3FX1N+WRBIIcA2eVkXZU+uFBhfruo7BVLdnFjYLxQceMlPHHhRxdMdnHxj8/KmhggLvvsgskuMn8TekbGHl402UUOgHHaJ4+PReafWTTZZebeLlZsp2v3+FjsGMgqnOyy8t6pdnhR//FRrWZCiR0DWYWTXVbeu7LbvnmsPjODcewwCCqc7ILC3i91+GN99ttaf13Cu41GofjuCZBd9xG/rcDxNhSTA0SPg4ziyS4j57dUOXxR//NprS5UxI+FvgGQXd/5HlDd0F6z2F63aHKAA2jZZL0EyG692Z2p5+Pzsu65OxNRu1kmAbJbZi4z92rzQp4ntdb7Ka7vZm5ccwjMQoDsZsG89EbGJyo+Ltm9WHpv9Q+BxxAgu8dQ6+4746msyQG6y1ZBWwJkZyzcExjfLWueO2OiSwJk12WsjylqfHzMVdnH4POdxRMgu8VHNFcHh3aBok0OUBcoTNk+F3XtzEeA7OZjvYKWxplQnMquIC1dPI4A2R3Hq/OtxxfymAml86QTyyO7xNTfWLOrsoZDvwTIrt9sH1nZ+EIeR3ePJOhryyRAdsvM5YK9Gi9UtD60JyrqMTILAusnQHbrz3CCCsbf7uom46t2saL9tSCwagJkt+r4puz8OPWTCQKmxGzfsxEgu9lQr62hzelsm+uu/W1HdiYJWFuE+vuAANkZEG8hsLk6u50RpQnv/ctO377pT8nX74iG7fEEyO54ZmHfeCC8/1Xxfy7Z1CNlcy+bI82XtT6t1ewsc+PvoD2y6yDE6UvYCO8ftf7svq12hbYd5d1N33ZrYfOujFffHdVtFrKbB3xXrZBdV3FOXcw4WcC2oRkmDdjMtdemjW/CbafSH9R66wrx1Fn3t3+y6y/TiSsanlYD7XRye5TVjvL+VPK5OW/Dm6PJJrkmu7a0dkp0fq87L+ecvZFdTtZnrnTvKK/tv566uPrbd2I69t68jdza0mTaTlt/V+v2s9v6dzttdr/fmVNM2h3ZJaV99lo3v6U1KW2PvnZbaGK6q7X93ZXUk52N2uc/qfXHtf7rXnKv76N+n7u6Ibqzhxe3Q7KLi3yKgjfSe1brr75HWMc22ATYTlm/vJdcE6YFgZMJkN3JCO3gIYHN6ejTe+n9sP5uT0XbZk1k/73fvklse9HhB/Xvf9faPqtt5rrKK7skAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCbwf+jUa9h3psMIAAAAAElFTkSuQmCC', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 41 3087 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 603 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 41 3087 +INFO:root:2024-09-14 12:43:32.413994 : Create_E_Signature_For_E_Document -'NoneType' object has no attribute 'keys' - Line : 996 +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:43:32] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-14 12:44:15.046304 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-14 12:44:15.047307 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-14 12:44:15.047307 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-14 12:44:15.047307 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-14 12:44:15.047307 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-14 12:44:20.938016 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '


 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

\t
Signature Client

' + dest = <_io.BufferedRandom name='./temp_direct/convention_Signe_14_09_2024_85.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPUAAAD1AQMAAACyfyEmAAAABlBMVEUAAIv///+fga7nAAACW0lEQVR42u1ZPW6sYAw0oaDkCNyEvdhKIHGx5SYcgZIC4TczJpsuXfSmWArE5mtGtufHXyJ/fY74nH/O//Z8j4gmZ30Nx6NeT/wxpjy+4vfnr8+JaspcM7do9udwNHubAXyDDizwPaNbcx6AatqOsc+tu/pzAFwjfHv7RhVAmrb4op+H7mVVv3v+ABJTt6J0uVrNH/kLQML3fvnwt57z/ip8b/1xqF8LGezPAHWXrUsooUYPJDHBB1V55JLdFejqiFdeMW1gik39OrEC+GAdZErmsuXlgg8Dl6wfWVGTKH0ZXfwNhttQkPXzhdaWyLjoCwnxQJNJ3YA0J1t7DhhHG3ziLwg7U1pO2Ul2LvqSCgSqmkxkShRxDn2Z8AP1U5OrnAxZgNbY1I+Br90ActnoakoK4TN/qVpVk5lfMI5UQqP8XIFv7H/48QwffVngvwF9gfSl7IRJmp7s4h9R/rtCqWEdP0Noww+qMuunVBqhJh8u+QWlY2q5U59eLJ2NPnMhwla5sX4Vrbh/hE1+qeiH/YjRACEV/CVS/rTRZ27l2t8QEhhXy+Rc8im5OpdhiLXV6dVof6P+3ft57R/tJqaY6F/oVoipgEXkEMJJfPbfQYFPVVNIIF3SZz+/A0vp87rf1uGjf3Bdutqh/Hzh6/tOMH3uDwiI+7mcREnBZz+/71+KxJIbdtqmfrq/Ij70t/a3UsL00RdEA4TA6i9XyxdPHlb3u1xCUiYSIX05bO4Pbnx1/9JwiRPI1Wr+eElE/9CLm9LRWN2fwt9GtbZfsu6vVif9+/z/6nP+P87/AdH8wPBSxRIQAAAAAElFTkSuQmCC', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 603 +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:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATsAAADICAYAAACXrUbEAAAMD0lEQVR4Xu3dsY4kVxmG4ZmUBCwugPUdmIwEacmRWAdEJGtxAZiUxOvIZDYSKdoJyNcEiNBjidy+AjwRKSZHKv7Tni71bHtX3dNd1VXne0oqzbpdXef873f0qqqr6tT1lQUBBBAIIHAdUKMSEUAAgSuyMwgQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZRcSsSAQQIDtjAAEEIgiQXUTMikQAAbIzBhBAIIIA2UXErEgEECA7YwABBCIIkF1EzIpEAAGyMwYQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZRcSsSAQQIDtjAAEEIgiQXUTMikQAAbIzBhBAIIIA2UXErEgEECA7YwABBCIIkF1EzIpEAAGyMwYQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZRcSsSAQQIDtjAAEEIgiQXUTMikQAAbIzBhBAIIIA2UXErEgEECA7YwABBCIIkF1EzIpEAAGyMwYQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZRcSsSAQQIDtjAAEEIgiQXUTMikQAAbIzBhBAIIIA2UXErEgEECA7YwABBCIIkF1EzIpEAAGyMwYQQCCCANlFxKxIBBAgO2MAAQQiCJBdRMyKRAABsjMGEEAgggDZdR3z8N7V1fXXXZeoOAQOJEB2B4Ja32bDi+rzR7V+W8J7Z33912MEzkuA7M7Lc0F7G76ozjwluwVFoisXJUB2F8U/ZeOj7FojdWR3XUd4FgRyCZBdt9kPr6q0Z/flkV23OSvsUAJkdyip1W3nyG51kenwpATIblK8l9z58FW1XldjN4sju0tGoe1FECC7RcQwRSeGb2qvT+73/FO3oEzB2D7XRIDs1pTWUX0dhp3Nye4odjbukQDZ9ZjqVbuZ+Kqdxm6XD+rI7qbLUhWFwIEEyO5AUOvabGhXYdvV2O3yh5LdJ+uqQW8ROC8Bsjsvz4XsbfhNdeSvO535Z8nu5wvpnG4gcBECZHcR7FM3Oj4qtm3o7yW7X07dqv0jsGQCZLfkdB7dt+HD+uqnO1+/K9m9++jd+SICHRAguw5C3C9heF6fvdz5/POS3ftdlqooBA4kQHYHglrXZnuyuy3Z/WJdNegtAuclQHbn5bmQve2dxtacdtd1r50FgVwCZNdl9n6z6zJWRZ1EgOxOwrfUL+/JzmnsUqPSr9kIkN1sqOdsyG92c9LW1joIkN06cjqyl47sjgRm8wACZNdlyGTXZayKOokA2Z2Eb6lfJrulJqNflyNAdpdjP2HLe4+LuUAxIW27XgcBsltHTkf2cmiPirVHxrYL2R1J0Ob9ESC7/jKtivZk53GxLnNW1DEEyO4YWqvZluxWE5WOzkaA7GZDPWdDD16j2Bq+qcfFarZiCwK5BMiuy+yHNuPJ853SPi7ZveiyVEUhcCABsjsQ1Lo22zuyI7t1Bai3ExAguwmgXn6XD16Q3brz+zqy++zy/dIDBC5HgOwux37ClveO7LxdbELadr0OAmS3jpyO7OXekV3NUnxdt59YEMglQHZdZk92XcaqqJMIkN1J+Jb65b3T2JqS/fp2qb3VLwTmIEB2c1CevY29W09qSvbrmprdgkAuAbLrMnuy6zJWRZ1EgOxOwrfUL+/NeuLIbqlR6ddsBMhuNtRzNkR2c9LW1joIkN06cjqyl3uTd75bv9ndHbkTmyPQFQGy6yrObTHD0/rXFzulvVOy+7bLUhWFwIEEyO5AUOvabHhS/f1mp89+s1tXgHo7AQGymwDq5Xc5/Kj68B+yu3wSerAcAmS3nCzO3JOhya5Jry1uKj4zXbtbHwGyW19mB/Z4+Ko2fI/sDsRls+4JkF23ET94ZMxEAN3mrLBDCZDdoaRWt92De+1M8bS6/HT43ATI7txEF7O/4Vl15dV9d0zeuZhcdORSBMjuUuQnb/fBFVmym5y3BpZOgOyWntBJ/RuG+697B8VJHH25BwJk10OKb6xhvCJ741WKXQetuAMIkN0BkNa7yfCX6ntdnLj6smRX99pZEMglQHZdZz9OCHBLdl0HrbgDCJDdAZDWu8k4IUCbBKDNfGIygPWGqecnEiC7EwEu++sPJgQwzdOyw9K7iQmQ3cSAL7v7ze0nbfaT9tfMJ5cNQ+sXJkB2Fw5g+uaHJrsntXqKYnrYWlgwAbJbcDjn6dp4+4l77c4D1F5WSoDsVhrc4d0ePq1tP6z11hXZw6nZsj8CZNdfpq9VNDyvD17WWldir2t6dgsCmQTIrvvchzanXZvbri3eRdF93gp8EwGy635sPJgQwLx23eetQLKLHgPjRYrP6lS2ZkCxIJBHwJFdRObjRYqvS3Z1v50FgTwCZBeR+YOJPP1uF5G5Il8nQHYRY8JEnhExK/KtBMguZoAM7faT57V+XqeydaHCgkAWAbKLydupbEzUCv1eAmQXNTDG52S9kyIqd8U2AmQXNQ7Gq7J3FX1N+WRBIIcA2eVkXZU+uFBhfruo7BVLdnFjYLxQceMlPHHhRxdMdnHxj8/KmhggLvvsgskuMn8TekbGHl402UUOgHHaJ4+PReafWTTZZebeLlZsp2v3+FjsGMgqnOyy8t6pdnhR//FRrWZCiR0DWYWTXVbeu7LbvnmsPjODcewwCCqc7ILC3i91+GN99ttaf13Cu41GofjuCZBd9xG/rcDxNhSTA0SPg4ziyS4j57dUOXxR//NprS5UxI+FvgGQXd/5HlDd0F6z2F63aHKAA2jZZL0EyG692Z2p5+Pzsu65OxNRu1kmAbJbZi4z92rzQp4ntdb7Ka7vZm5ccwjMQoDsZsG89EbGJyo+Ltm9WHpv9Q+BxxAgu8dQ6+4746msyQG6y1ZBWwJkZyzcExjfLWueO2OiSwJk12WsjylqfHzMVdnH4POdxRMgu8VHNFcHh3aBok0OUBcoTNk+F3XtzEeA7OZjvYKWxplQnMquIC1dPI4A2R3Hq/OtxxfymAml86QTyyO7xNTfWLOrsoZDvwTIrt9sH1nZ+EIeR3ePJOhryyRAdsvM5YK9Gi9UtD60JyrqMTILAusnQHbrz3CCCsbf7uom46t2saL9tSCwagJkt+r4puz8OPWTCQKmxGzfsxEgu9lQr62hzelsm+uu/W1HdiYJWFuE+vuAANkZEG8hsLk6u50RpQnv/ctO377pT8nX74iG7fEEyO54ZmHfeCC8/1Xxfy7Z1CNlcy+bI82XtT6t1ewsc+PvoD2y6yDE6UvYCO8ftf7svq12hbYd5d1N33ZrYfOujFffHdVtFrKbB3xXrZBdV3FOXcw4WcC2oRkmDdjMtdemjW/CbafSH9R66wrx1Fn3t3+y6y/TiSsanlYD7XRye5TVjvL+VPK5OW/Dm6PJJrkmu7a0dkp0fq87L+ecvZFdTtZnrnTvKK/tv566uPrbd2I69t68jdza0mTaTlt/V+v2s9v6dzttdr/fmVNM2h3ZJaV99lo3v6U1KW2PvnZbaGK6q7X93ZXUk52N2uc/qfXHtf7rXnKv76N+n7u6Ibqzhxe3Q7KLi3yKgjfSe1brr75HWMc22ATYTlm/vJdcE6YFgZMJkN3JCO3gIYHN6ejTe+n9sP5uT0XbZk1k/73fvklse9HhB/Xvf9faPqtt5rrKK7skAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCZAdsHhKx2BJAJkl5S2WhEIJkB2weErHYEkAmSXlLZaEQgmQHbB4SsdgSQCZJeUtloRCCbwf+jUa9h3psMIAAAAAElFTkSuQmCC', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 41 3087 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 603 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 41 3087 +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:21] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:23.654108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.656686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.658098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.660753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.662291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.663285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.666637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.667645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.670866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:23.675529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.099723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.102726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.106381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.110034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.113177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.122305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.126795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.136706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.142071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.147070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.151066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.159603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.165605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.175932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.182181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.189843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.192838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.202551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.211923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.224421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.234459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.242428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.249426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.254492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.261982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.264995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.271457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.280653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.284925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.297270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.301270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.304798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.313748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.317827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.324843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.330010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.340869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.349610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.358035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.363039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.367566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.373018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.380815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.393401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.410163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.414244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.418260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.422698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.440988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.445984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.449039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.462249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.464384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.470386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.475387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.486449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.490461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.499014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:44:24.505416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:44:24.508521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:44:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:45:04.595612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:45:05.055073 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:45:05] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:45:11.422534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:45:11.426388 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:45:11] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:45:38.418728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:45:38] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:45:40.199421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:45:40] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:45:48.047070 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_15497.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:45:49] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:45:49.901463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:45:50] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:22.459764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:23] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:37.940371 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '


 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

\t
Signature Client

' + dest = <_io.BufferedRandom name='./temp_direct/convention_Signe_14_09_2024_89.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPUAAAD1AQMAAACyfyEmAAAABlBMVEUAAIv///+fga7nAAACYklEQVR42u1ZMa6rQBAbPgUlR9ibwMUiBYmLwU32CCm3iDLf9oL0q9c9fRfZgoC2GXnGHs8k8sfT4nv/vf/d+1dEDPnmY68t4pnTZ8Yn39qf+Pn89j3je2aeeCC0R8HbWGN94Y0XFvE9YjrzXRhVxDJnJX4lBqf4XiNBfJQpgV8jfl7xofRUdXnMW5kOK/xUf8DviDFjBVOEpE/9kb9M7fnvw4e/9+mqMvR03/rjgd+k1C7zFlPmxiBBEjDZpf4A3V4TqFUUoT4R5GpSfyAECItfql5bESRARLgfG/wQEFlxoH+Qv0UiY4Nf1xcUIfHrdAZ1axtM+JE7Cy6pf8AveqY3dhKb+sOB4K2IVE5G7W5y0RcchLapa0Sj/pHEdbLhx8ha2yvxo8hspan1utQf9Y+qjKhIklv/bOoP+pIyLNH9AfRPSu2SX/GX1GV/Q1bf9Ae4+Lj4g42EfaZaG8sxuzSHC35Abe0i+BaIBaFdMdv4l3nv/rR/YhxhzOni7zFwQJAP+b9OjaunmPBXXa0xtcKv65+Nf6arUlbpZKg0cDLhU393w5DIcFLnfPlMeUKT+rtMakhVZFed/OnIrMJQaf497/mDdt8Ev6ImIkLEQhAXFuHHZj9UlVCaBNRflz51Ohv/gl77CC2xYrjGOSP9gz5D/6pQ65PmtRNMn/0Bt36ayjkaick++0ntX8aU/2Onq33SdKq/U0PIK/r8dpvoNNpP9qmIUweUZugmJq32p7B+mjTjkr7Vbb/L/ntbeyf8+n6D/S2r9n+Kz2e/Jv5GaQs/6aT7/up00r/v/1ff+/9x/xcqE76Me0kkswAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 610 +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:FileObject '', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='c', netloc='', path='\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__', params='', query='', fragment=''), 'c') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Unrecognized scheme, assuming local file path +WARNING:xhtml2pdf:Need a valid file name! +'' +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 610 +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:38] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:39.776054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:39.780415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:39.781705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:39.782715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:39.784723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:39.787733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:39.789734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:39.792726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:39.793726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:39.797731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.183816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.186856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.190908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.194907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.199948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.207076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.211093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.220895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.227988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.232873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.244023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.250749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.254197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.260661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.266994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.269454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.274857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.288094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.292237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.298901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.303048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.310742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.315029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.323480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.329253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.337338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.345251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.352144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.359306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.366909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.372841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.380598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.383852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.390198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.395495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.402062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.414976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.419542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.424456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.430292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.434362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.440740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.448901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.456544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.463739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.470454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.476452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.480309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.486621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.492200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.496195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.506200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.513197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:46:40.517580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.519594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.530116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.535978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.541196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.548157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:46:40.553441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:01.577344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:47:01.582362 : Get_Given_E_Document_Not_Signed_No_Token Aucun E-document trouvé +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:01] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:02.934814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:47:02.936809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.238920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:47:03.239427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:47:03.241442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:47:03.244444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.247464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:47:03.248459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.411635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.551907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.607189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.715169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.721691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.777077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.792618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.870276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:03.912621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:04.028355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:47:04.031391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:04.088754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:04.104204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:04.176977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:13.915446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:13] "POST /myclass/api/Delete_Given_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:13.937575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:13] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:16.212550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:16] "POST /myclass/api/Delete_Given_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:16.232944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:16] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:20.404584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:20] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:21.996799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:22] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:25.913441 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_18502.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:27] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:27.052801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:47:53.421768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:47:53] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:20.469932 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '


 

\n

\n

\n
\n
\n

 

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

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

\n

 

\n
\n

Et le bénéciaire : PP_EU1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    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 Colas Rail 

\n


Formation :  CONDUIRE UN PROJET 

Durée : 14.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 22/09/2024  26/09/2024 
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
uuu   ppp   billardman1@yahoo.fr
\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 , 14/09/2024 

\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

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

\t
Signature Client

' + dest = <_io.BufferedRandom name='./temp_direct/convention_Signe_14_09_2024_41.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPUAAAD1AQMAAACyfyEmAAAABlBMVEUAAIv///+fga7nAAACWElEQVR42u1ZMZKDQAwzR7FlnsBPwseYCTP5GPxkn5CSgmFPkknSXZc5FdmCgWzjkS1ZdqL9ebb43n/vP3v/iIgO73jc6xZxa+W47PgRb9tP/H0+fc/4bq2tj74pIL7VGB/ToAuL+KYoa5uHbXzcalwvrRK/ITqn+IAaHkKtrxvx84oP+DWiVpbLzIcTfqo6QLcEinBse7TVqv7IXwSk/L4ePvzNA9SY363LdD/1xwO/shCrK0sPlUg4QRIw2ab+gN/QgFptR+ozghyN+LvElPzdRgRZGjoJPj3wg7TElW9SlZFIUmRs8GsUPOBXlGTRGdStW+fCj16GgPpHVUFWkVrEbNR/RVik9p5Kw3bXiou+sLWJEJRmWhdUIvJbDht9qSQEBaVHkHQyar0u9acDViCgOcpL/2zqDweG5U5/Kn8A/UulNsrvkYInEHf6A1wcYeNfQI2gvrDT0elLmsOlf1BV6Krk6mkSENpMkXHBb9DUlv60o51ZIYLsxDb8EGsXTpVdUuPebPQP+U3Buz7LMT9t/LNyucs1V41GsAvhU39U5SUTSpMKueEkzHT78PeI6QQsUIQM18ifNrFW+hLv+YN238Vf5SxEQsBJa1JCEdr0j2lgV4MhoNM6pW8OH/9840DUqqihrUax0j8SNsAPocbQ6nsn6OP/TpOf1plOwWc/qf1LDPJ/G020xrnwqb9GVsj/0b8827FN/aU01/R/a7bjyCWRT3wTodu1STilb/Ta76rJvay9E37n/j4Ljvs/xeezXxN/+9P/ycnkuO6kf9//r773/3H/C8QvxgfQtuY3AAAAAElFTkSuQmCC', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 600 +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:FileObject '', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='c', netloc='', path='\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__', params='', query='', fragment=''), 'c') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Unrecognized scheme, assuming local file path +WARNING:xhtml2pdf:Need a valid file name! +'' +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 600 +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:21] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:22.529204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:22.531300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:22] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:22.834437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:22.835451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:22.836449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:22.838720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:22.841808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:22.841808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:22] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:22] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:22.973034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:22] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.148310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.228061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.288446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.316443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.379280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.385117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.455792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.548466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.595222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.626806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.690467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.695940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.766852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.859770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.905722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:23.937032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.000505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.005621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.077152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.169423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.217522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.249417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.310334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.315642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.386040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.478376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.525007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.555326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.617996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.623994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.693826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.787985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.834492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.865347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.927248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:24.932238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.010295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.099627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.147109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.177862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.238784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:25.241336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.331565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.410418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.456584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.486391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.548807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:25.550812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.642346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.721171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.766846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.795893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.860117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:25.863543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:25.953880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:26.031619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:26] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:26.079099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:26.110304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:26.172675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:48:26.175706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:26] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:48:26.267249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:48:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:51:06.920786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:06.924296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:06.927018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:06.928462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:06] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:06] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:51:06.952326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:06.955829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:06.959178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:06.963220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:06] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:06] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:51:34.123336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:34.126767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:34.128768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-14 12:51:34.135252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:34.137890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 12:51:34.142512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:34] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 12:51:34] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.031553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.035554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.038566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.041057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.046597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.050602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.051594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.058982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.068983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.413400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.771516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.794546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.824538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.831541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.840885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.845309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.855331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.860763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.872106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.878565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.883557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.890560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.899555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.904643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.911751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.919545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.924569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.929562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.938452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:00.941813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.947822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.952830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.959777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.966275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.971890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.978011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.984677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.992084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:00.999194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.006253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:01.013001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.021413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.026406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.035413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.042415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.051662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:01.056672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.063196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.070191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:01.073884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.081738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.088706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.094316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.098294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:01.103310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.108300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.119610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.125625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.133962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:01.135951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:01.140960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.153610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:01.157640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.162640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.167634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:01.169639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.179178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.183698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.192398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:01.196387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:17.595388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:17] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:17.864309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:17.871671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:17.881992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:17.888998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:17.902804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:17.912232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:17.924132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:17.941535 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-14 15:51:17.944758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:17.972902 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:18.177522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:18.183534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:18.191105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:18.199444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:18.208282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:18.222930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:18.242529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:18.251428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:18.279638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:18.292067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:18] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:23.429287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:23.435636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:23.443473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:23.452508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:23.463177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:23] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:23.482359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:23.484461 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:23.505189 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:23] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:23] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:23] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:25.658058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:25] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:37.793112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:37.798654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:37.800739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:37.804639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:37] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:37.811772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:37.816782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:37.820772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:37.840329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:37.845328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:37.854336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:37] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:37.933480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.047560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.352294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.357825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.361827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.367263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.370738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.374742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.383029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.386958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.393417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.406434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.411915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.415811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.419830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.425601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.431593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.435592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.440159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.447112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.449442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.452471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.458327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.467781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.470841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.474343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.480148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.488663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.492317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.496407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.502833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.504835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.515834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.519831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.524557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.530324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.536391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.541641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.549204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.552575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.559081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.562101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.566384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.571779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.579299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.581784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.590014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.593467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.598724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.605062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.607491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.614833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.620324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.623386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.631402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.637374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.641070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.645087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.652763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.658873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:51:38.662095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:51:38.666114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:51:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:52:35.387684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.392085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.396108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.399119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.403643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.407702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.412700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:52:35.420707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.425708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:52:35.442179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.448186 : Get_Partner_Data_From_Subdomain Sous Domaine invalide +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:52:35.453182 : Get_Partner_Data_From_Subdomain Sous Domaine invalide +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2024-09-14 15:52:35.458185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-14 15:52:35.461174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2024 15:52:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:01:20.184766 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 11:01:20.185773 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 11:01:20.185773 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 11:01:20.185773 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 11:01:20.185773 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 11:01:32.465806 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 11:01:32.465806 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 11:01:32.466822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 11:01:32.466822 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 11:01:32.466822 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-15 11:02:21.854411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:21.854411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:21.855408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:21.857960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:21.858795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:21.861794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:21.866088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:21.866088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:22] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:22] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:22] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:22] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:22] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:22.994264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:23.091427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:23.453109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:23.454137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:23.457129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:23.461181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:23.469143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:23.473629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:23.782198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:23.783283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:23.787770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:23.795618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:23.798632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:23.804369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.105971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:24.108981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.114487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.117603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.121602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.126131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.418036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.424031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.429032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:24.430032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:24.435753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.440757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.728550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.735182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.743797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:24.746828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:24.753375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:24.753899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.036461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.043143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.058215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:25.060485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.068513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:25.072060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.346705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.353013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.375800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:25.378824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.385044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:25.388046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.654473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.661676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.685447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.689724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.694628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:25.697985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.963472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.968706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.993491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:25.998674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:26.004864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:26.008877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:26.283612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:26.287617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:26.314452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 11:02:26.318003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:26.323007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 11:02:26.324996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 11:02:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 11:35:34.847920 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 11:35:34.847920 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 11:35:34.848933 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 11:35:34.848933 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 11:35:34.848933 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 11:36:13.095093 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 11:36:13.095093 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 11:36:13.095093 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 11:36:13.095093 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 11:36:13.095093 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 11:36:32.608215 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 11:36:32.608215 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 11:36:32.608215 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 11:36:32.608215 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 11:36:32.608215 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-15 15:53:10.076164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.083598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.084908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.099963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.111130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.116145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.118147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.120150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.157311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.380369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.693667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.698516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.704197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.714509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.718704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.726432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.726940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.735294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.741279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.748076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.752536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.755785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.762070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.767163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.770626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.779948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.784464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.787871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.791196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.798439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.801784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.810669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.815809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.820415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.826050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.832993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.839323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.845041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.852362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.854725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.859250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.868002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.872406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.878504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.884320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.889853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.897354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.905902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.913284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.922016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.930404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.935004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.940364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.948366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.955434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.959923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:10.964945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.971946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.976175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.981132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.988122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:10.996279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:11.002124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:11.010180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:11.014663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:11.017598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:11.024747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:11.027856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:11.032769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:11.037072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.452163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.596825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.601293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.605304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.610407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.618484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.624735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.632113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.642594 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.647043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.658987 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.782627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.785633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.790628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.794627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.799634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.803630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.822588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.831176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:14.838791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:14.843119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:17.281126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:17.284124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:17.288114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:17.292679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:17.297537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 15:53:17.306611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:17] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:17.311733 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:17.323052 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:17] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:17] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:17] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2024-09-15 15:53:18.733460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 15:53:18] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\base_partner_catalog_config.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 16:22:52.254080 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 16:22:52.255082 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 16:22:52.255082 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 16:22:52.255082 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 16:22:52.255082 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 16:23:03.157473 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 16:23:03.158472 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 16:23:03.158472 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 16:23:03.158472 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 16:23:03.158472 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-15 16:23:40.503976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.507410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.509808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.513842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.516851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:40.522855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:40.540765 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-09-15 16:23:40.542282 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:40.656413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.659841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.662851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.667382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.672536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.677530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:40.693109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:40.702147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:40.712434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:40.718623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:49.529821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:49] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:52.377021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:52.380354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:52.383372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:52.388960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:52.392072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:52.399668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:23:52.758784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:23:52.760808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:23:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.434648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.437751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.442833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.447405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.455209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.462552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.469516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.478021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.484273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.492023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.499654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.509725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.514119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.522945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.533816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.543741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.550674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.560699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.564700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.570030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.582744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.590952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:58.595821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:58.608645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:58] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:24:59.095129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:59.097834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:59.102242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:24:59.108453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:59] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:59] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:24:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:02.281953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:02] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:12.170388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:12] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:12.297848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:12] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:14.610026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:14] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:25.181221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:25] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:25.339501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:25] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:28.234192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:28] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:30.256778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:30.259410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:30.263133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:30] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:30] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:30.327260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:38.270582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:38] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:38.395769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:38] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:50.642006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.644657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.647677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:50.653904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.658188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:50.665305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.671796 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:50.678289 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:50.821031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.823300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.825765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.830777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.835898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:50.847066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:50.856163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:50.869158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.874753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:50.882917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:50] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:55.109407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:55.112424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:55.116813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:25:55.129728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:55] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:55.136119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:25:55.143576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:55] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:55] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:25:55] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:26:01.918754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:26:01.922332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:26:01] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:26:01] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:26:55.099892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:26:55] "POST /myclass/api/Update_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:26:55.289120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:26:55] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:27:00.883153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:27:00.885169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:27:00] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:27:00] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:27:15.194417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:27:15] "POST /myclass/api/Update_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:27:15.388959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:27:15] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:27:21.267366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:27:21.270363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:27:21] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:27:21] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:27:33.285238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:27:33] "POST /myclass/api/Update_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:27:33.487671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:27:33] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 16:30:02.633615 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 16:30:02.634615 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 16:30:02.634615 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 16:30:02.634615 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 16:30:02.634615 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 16:30:32.789626 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 16:30:32.789626 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 16:30:32.789626 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 16:30:32.789626 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 16:30:32.790624 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 16:38:00.491069 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 16:38:00.491069 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 16:38:00.491069 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 16:38:00.491069 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 16:38:00.491069 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 16:38:13.216863 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 16:38:13.216863 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 16:38:13.216863 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 16:38:13.217871 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 16:38:13.217871 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 16:41:50.117272 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 16:41:50.118273 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 16:41:50.118273 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 16:41:50.118273 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 16:41:50.118273 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-09-15 16:41:59.639602 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-09-15 16:41:59.640599 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-09-15 16:41:59.640599 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-09-15 16:41:59.640599 : ++ FLASK PORT 5001 ++ +INFO:root:2024-09-15 16:41:59.640599 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-09-15 16:42:13.144015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:42:13.147556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:42:13.151187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:13] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:13] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:42:13.222677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:42:44.401456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:42:44.404447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:42:44.409451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:42:44.416451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:42:44.421561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:42:44.430810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:44] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:44] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:44] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:44] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:42:44.762936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:42:45.132126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:42:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:47:57.106827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:47:57.113827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:47:57.117821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:47:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:47:57] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:47:57] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:47:57.200757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:47:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:48:05.181738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:48:05.187734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:48:05.192316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:48:05.199334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:05] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:05] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:48:05.230521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:48:05.234572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:05] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:05] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:48:05.798119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:48:06.135017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:06] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:48:50.280748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:48:50.283786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:48:50.289476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:50] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:50] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:48:50.348167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:48:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:54:26.699793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:54:26.705326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:54:26.709315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:54:26.714319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:54:26.719335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:54:26.724932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:54:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:54:26] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:54:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:54:26] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:54:26] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:54:26] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:54:26.785687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:54:26.789644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:54:26] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:54:26] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:56:01.586457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:56:01.591256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:56:01.595723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:01] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:01] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:56:01.664601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:56:17.546002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:56:17.551034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:56:17.555772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:56:17.558093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:56:17.567847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:56:17.606447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:17] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:17] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:17] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:17] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:56:18.342315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:56:18.344357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:56:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:59:01.553348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:01.556617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:01.559742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:01] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:01] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:59:01.622357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:59:11.521397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:11.526958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:11.532587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:11.540801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:11.548958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:59:11.555897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:11] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:11] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:11] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:11] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:59:11.828613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:11.831643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:59:44.361745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:44.364742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 16:59:44.369619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:44] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:44] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 16:59:44.451383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 16:59:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:09:39.470601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:09:39.474468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:09:39.476477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:09:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:09:39] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:09:39] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:09:39.556893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:09:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:12:20.902490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:12:20.907786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:12:20.912174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:12:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:12:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:12:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:12:20.997354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:12:21] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:15:18.332837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:15:18.340001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:15:18.346557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:15:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:15:18] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:15:18] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:15:18.473916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:15:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:46:34.961886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:46:34.972412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:46:34.978425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:46:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:46:35] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:46:35] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:46:35.082480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:46:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:16.625721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:16.631717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:16.663679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:16.691097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:16.720646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:16.736533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:16.738533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:16.744869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:16] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:16.786728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:16] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:16] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.091185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.326008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.334379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.340092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.343439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.353928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.361933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.372727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.383792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.435609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.446322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.452553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.464820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.476420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.488378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.505098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.517255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.522912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.530359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.540467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.547427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.552324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.573316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.582407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.590325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.602673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.613991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.626297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.641721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.654147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.657860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.667335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.673426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.680428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.687706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.695505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.710962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.720507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.728804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.739350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.747492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.756796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.767468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.773337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.785017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.793716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.803739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.810922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.816127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.822526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.829711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.842676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.851854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.857853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.867864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.877275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.880912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 17:58:17.886933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.908180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.917677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 17:58:17.923721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 17:58:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:01:51.860058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:01:51.866634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:01:51.873740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:01:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:01:51] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:01:51] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:01:51.981342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:01:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:09:16.843571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:09:16.850038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:09:16.854042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:09:16.861040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:09:16.873143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:09:16.880789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:09:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:09:16] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:09:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:09:16] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:09:16] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:09:16] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:09:17.249821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:09:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:09:17.836277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:09:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:11:06.949480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:06.954043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:06.955059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:06] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:06] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:11:07.031055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:11:17.972633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:17.977637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:17.982157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:17.989544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:17.998265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:18.002328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:18] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:18] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:18] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:18] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:11:18.598207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:11:18.925058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:11:56.404764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:56.408761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:56.413195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:56.419890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:56.426646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:11:56.432316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:56] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:56] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:56] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:56] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:11:56.683005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:11:56.823810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:11:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:15:28.359512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:15:28.362504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:15:28.368807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:15:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:15:28] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:15:28] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:15:28.449274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:15:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:16:57.902875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:16:57.912883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:16:57.917893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:16:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:16:57] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:16:57] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:16:58.031231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:16:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:23:12.496846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:23:12.501848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:23:12.504848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:23:12.510849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:23:12.518331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:23:12.521439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:23:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:23:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:23:12] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:23:12] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:23:12] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:23:12] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:23:12.886573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:23:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:23:13.110023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:23:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:29:59.460391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:30:00.084505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-09-15 18:29:59.691863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:30:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:30:01] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:30:02] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2024-09-15 18:30:02.137495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Sep/2024 18:30:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index 560201d..b07ed4e 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -6739,7 +6739,7 @@ def Sent_Convocation_Stagiaire_By_Email(tab_files, Folder, diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes @@ -6757,7 +6757,7 @@ def Sent_Convocation_Stagiaire_By_Email(tab_files, Folder, diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) for myfile in tab_files_to_attache_to_mail: @@ -7300,7 +7300,7 @@ def Sent_Attestation_Stagiaire_By_Email(tab_files, Folder, diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes @@ -7318,7 +7318,7 @@ def Sent_Attestation_Stagiaire_By_Email(tab_files, Folder, diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) for myfile in tab_files_to_attache_to_mail: @@ -8932,7 +8932,7 @@ def Sent_Facture_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_path, msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes @@ -8949,7 +8949,7 @@ def Sent_Facture_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_path, msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = courrier_template_data['sujet'] # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) for myfile in tab_files_to_attache_to_mail: @@ -11608,8 +11608,8 @@ def Invoice_Splited_Partner_From_Session_By_Inscription_Id( diction): update_data = {} update_data['invoiced'] = "1" - update_data['invoiced_ref'] = ", ".join(tab_invoice) - update_data['invoiced_date'] = ", ".join(tab_date_invoice) + update_data['invoiced_ref'] = ",".join(tab_invoice) + update_data['invoiced_date'] = ",".join(tab_date_invoice) update_data['date_update'] = now update_data['update_by'] = str(my_partner['_id']) @@ -12585,7 +12585,7 @@ def Send_Email_request_presinscription_data_validation(diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = sujetHtml # msg['to'] = "billardman01@hotmail.com" - toaddrs = ", ".join(tab_email_contact_client_destinataire) + toaddrs = ",".join(tab_email_contact_client_destinataire) msg['to'] = str(toaddrs) smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) diff --git a/base_partner_catalog_config.py b/base_partner_catalog_config.py index 45cf581..e34e824 100644 --- a/base_partner_catalog_config.py +++ b/base_partner_catalog_config.py @@ -242,21 +242,27 @@ def Get_Partner_Catalog_Pub_Config(diction): user['id'] = str(val_tmp) val_tmp = val_tmp + 1 + if( "logo" not in retval.keys() ): + user['logo'] = "" + + """ Recuperer les données (preview) du config_partner_catalog_theme """ user['theme_preview'] = "" + if( "theme_id" in retval.keys() and retval['theme_id']): + config_partner_catalog_theme_data = MYSY_GV.dbname['config_partner_catalog_theme'].find_one({'_id':ObjectId(str(retval['theme_id'])), + 'valide':'1', + 'locked':'0', + 'partner_owner_recid':"default"}) - config_partner_catalog_theme_data = MYSY_GV.dbname['config_partner_catalog_theme'].find_one({'_id':ObjectId(str(retval['theme_id'])), - 'valide':'1', - 'locked':'0', - 'partner_owner_recid':"default"}) - - if( config_partner_catalog_theme_data and "theme_preview" in config_partner_catalog_theme_data.keys() ): - user['theme_preview'] = config_partner_catalog_theme_data['theme_preview'] + if( config_partner_catalog_theme_data and "theme_preview" in config_partner_catalog_theme_data.keys() ): + user['theme_preview'] = config_partner_catalog_theme_data['theme_preview'] + else: + user['theme_id'] = "" RetObject.append(mycommon.JSONEncoder().encode(user)) diff --git a/class_mgt.py b/class_mgt.py index 918b4b0..7cf7e72 100644 --- a/class_mgt.py +++ b/class_mgt.py @@ -1966,6 +1966,9 @@ def get_class(diction): if diction['token']: my_token = diction['token'] + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data({'token':str(my_token)}) + if (local_status is not True): + return local_status, my_partner client_connected_recid = "" connection_type = "" @@ -2035,6 +2038,8 @@ def get_class(diction): return False, " Impossible de récupérer le token du partenaire" + + RetObject = [] filt_external_code = {} internal_url = "" @@ -2313,6 +2318,47 @@ def get_class(diction): if ("recyclage_periodicite" not in user.keys()): user['recyclage_periodicite'] = "" + """ + 15/09/2024 : + Si la formation a des unité d'enseignements rattaché, + ramener dans un tableau : + - _id + - code + - titre + - description + """ + tab_ue_detail_data = [] + if( "list_unite_enseignement" in user.keys() ): + for tmp_ue in user["list_unite_enseignement"] : + if( "_id" in tmp_ue.keys() ): + local_ue_data = MYSY_GV.dbname['unite_enseignement'].find_one({'_id':ObjectId(str(tmp_ue['_id'])), + 'partner_owner_recid':my_partner['recid'], + 'valide':'1', + 'locked':'0'}) + + + local_code = "" + if( local_ue_data and "code" in local_ue_data.keys() ): + local_code = local_ue_data['code'] + + local_titre = "" + if (local_ue_data and "titre" in local_ue_data.keys()): + local_titre = local_ue_data['titre'] + + local_description = "" + if (local_ue_data and "description" in local_ue_data.keys()): + local_description = local_ue_data['description'] + + local_node = {} + local_node['_id'] = str(tmp_ue['_id']) + local_node['code'] = str(local_code) + local_node['titre'] = str(local_titre) + local_node['description'] = str(local_description) + + tab_ue_detail_data.append(local_node) + + user['tab_ue_detail_data'] = tab_ue_detail_data + RetObject.append(JSONEncoder().encode(user)) diff --git a/crm_opportunite.py b/crm_opportunite.py index 24dae2e..1d7dee9 100644 --- a/crm_opportunite.py +++ b/crm_opportunite.py @@ -287,7 +287,7 @@ def Add_CRM_Opportunite(diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = sujetHtml - toaddrs = ", ".join(email_to) + toaddrs = ",".join(email_to) msg['to'] = str(toaddrs) val = smtpserver.send_message(msg) @@ -299,7 +299,7 @@ def Add_CRM_Opportunite(diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = sujetHtml - toaddrs = ", ".join(email_to) + toaddrs = ",".join(email_to) msg['to'] = str(toaddrs) val = smtpserver.send_message(msg) print(" Email de notification envoyé " + str(val)) @@ -584,7 +584,7 @@ def Update_CRM_Opportunite(diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = sujetHtml - toaddrs = ", ".join(email_to) + toaddrs = ",".join(email_to) msg['to'] = str(toaddrs) val = smtpserver.send_message(msg) @@ -596,7 +596,7 @@ def Update_CRM_Opportunite(diction): msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = sujetHtml - toaddrs = ", ".join(email_to) + toaddrs = ",".join(email_to) msg['to'] = str(toaddrs) val = smtpserver.send_message(msg) print(" Email de notification envoyé " + str(val)) diff --git a/email_mgt.py b/email_mgt.py index 25b2f23..caa1a2a 100644 --- a/email_mgt.py +++ b/email_mgt.py @@ -147,7 +147,7 @@ def send_partner_account_mail_old(message, account_mail): tomorrow_day = tomorrow.strftime("%A") receiver = [str(account_mail)] - toaddrs = ", ".join(receiver) + toaddrs = ",".join(receiver) my_url = "" if (MYSY_GV.MYSY_ENV == "PROD"): @@ -353,7 +353,7 @@ def Pro_Account_Token_Pass_old(account_mail, my_token): tomorrow_day = tomorrow.strftime("%A") receiver = [str(account_mail)] - toaddrs = ", ".join(receiver) + toaddrs = ",".join(receiver) print(" mail enoye à toaddrs : " + toaddrs) print("debut envoi mail de test ") @@ -473,7 +473,7 @@ def SalesOrderConfirmationEmail_old(account_mail, diction): i = i + 1 receiver = [str(account_mail)] - toaddrs = ", ".join(receiver) + toaddrs = ",".join(receiver) #print(" mail enoye à toaddrs : " + toaddrs) #print("debut envoi mail de test ") @@ -623,7 +623,7 @@ def SendInvoiceEmail_Old(account_mail, diction): i = i + 1 receiver = [str(account_mail)] - toaddrs = ", ".join(receiver) + toaddrs = ",".join(receiver) #print("Facture mail enoye à toaddrs : " + toaddrs) #print("Facture debut envoi mail de test ") @@ -1075,7 +1075,7 @@ def SalesOrderConfirmationEmail(account_mail, diction): i = i + 1 receiver = [str(account_mail)] - toaddrs = ", ".join(receiver) + toaddrs = ",".join(receiver) # on rentre les renseignements pris sur le site du fournisseur #---------- @@ -1240,7 +1240,7 @@ def send_partner_account_mail(message, account_mail): tomorrow_day = tomorrow.strftime("%A") receiver = [str(account_mail)] - toaddrs = ", ".join(receiver) + toaddrs = ",".join(receiver) my_url = "" if (MYSY_GV.MYSY_ENV == "PROD"): @@ -1314,7 +1314,7 @@ def Pro_Account_Token_Pass(account_mail, my_token): tomorrow_day = tomorrow.strftime("%A") receiver = [str(account_mail)] - toaddrs = ", ".join(receiver) + toaddrs = ",".join(receiver) print(" mail enoye à toaddrs : " + toaddrs) print("debut envoi mail de test ") @@ -1963,7 +1963,7 @@ def SendInvoiceEmail(account_mail, diction): i = i + 1 receiver = [str(account_mail)] - toaddrs = ", ".join(receiver) + toaddrs = ",".join(receiver) @@ -3683,8 +3683,8 @@ def send_invidual_email(diction): if (str(partner_own_smtp_value) == "1"): msg.attach(html_mime) msg['From'] = partner_SMTP_COUNT_From_User - msg['Cc'] = ", ".join(tab_email_cc) - msg['Bcc'] = ", ".join(tab_email_bcc) + msg['Cc'] = ",".join(tab_email_cc) + msg['Bcc'] = ",".join(tab_email_bcc) msg['Subject'] = email_sujet msg['to'] = str(email) @@ -3699,8 +3699,8 @@ def send_invidual_email(diction): else: msg.attach(html_mime) msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User - msg['Cc'] = ", ".join(tab_email_cc) - msg['Bcc'] = ", ".join(tab_email_bcc) + msg['Cc'] = ",".join(tab_email_cc) + msg['Bcc'] = ",".join(tab_email_bcc) msg['Subject'] = email_sujet msg['to'] = str(email) diff --git a/env/Lib/site-packages/pip/_internal/commands/configuration.py b/env/Lib/site-packages/pip/_internal/commands/configuration.py index 826c08d..af44cee 100644 --- a/env/Lib/site-packages/pip/_internal/commands/configuration.py +++ b/env/Lib/site-packages/pip/_internal/commands/configuration.py @@ -95,7 +95,7 @@ class ConfigurationCommand(Command): # Determine action if not args or args[0] not in handlers: logger.error("Need an action ({}) to perform.".format( - ", ".join(sorted(handlers))) + ",".join(sorted(handlers))) ) return ERROR diff --git a/env/Lib/site-packages/pip/_internal/commands/install.py b/env/Lib/site-packages/pip/_internal/commands/install.py index 1c244d2..ebbe825 100644 --- a/env/Lib/site-packages/pip/_internal/commands/install.py +++ b/env/Lib/site-packages/pip/_internal/commands/install.py @@ -361,7 +361,7 @@ class InstallCommand(RequirementCommand): raise InstallationError( "Could not build wheels for {} which use" " PEP 517 and cannot be installed directly".format( - ", ".join(r.name for r in build_failures))) + ",".join(r.name for r in build_failures))) to_install = resolver.get_installation_order( requirement_set diff --git a/env/Lib/site-packages/pip/_internal/configuration.py b/env/Lib/site-packages/pip/_internal/configuration.py index fe6df9b..3051383 100644 --- a/env/Lib/site-packages/pip/_internal/configuration.py +++ b/env/Lib/site-packages/pip/_internal/configuration.py @@ -87,7 +87,7 @@ class Configuration(object): if load_only not in _valid_load_only: raise ConfigurationError( "Got invalid value for load_only - should be one of {}".format( - ", ".join(map(repr, _valid_load_only[:-1])) + ",".join(map(repr, _valid_load_only[:-1])) ) ) self.isolated = isolated # type: bool diff --git a/env/Lib/site-packages/pip/_internal/index.py b/env/Lib/site-packages/pip/_internal/index.py index 9eda3a3..9dddfed 100644 --- a/env/Lib/site-packages/pip/_internal/index.py +++ b/env/Lib/site-packages/pip/_internal/index.py @@ -360,12 +360,12 @@ class PackageFinder(object): lines = [] if self.index_urls and self.index_urls != [PyPI.simple_url]: lines.append( - "Looking in indexes: {}".format(", ".join( + "Looking in indexes: {}".format(",".join( redact_password_from_url(url) for url in self.index_urls)) ) if self.find_links: lines.append( - "Looking in links: {}".format(", ".join(self.find_links)) + "Looking in links: {}".format(",".join(self.find_links)) ) return "\n".join(lines) diff --git a/env/Lib/site-packages/pip/_internal/wheel.py b/env/Lib/site-packages/pip/_internal/wheel.py index 67bcc7f..8cfbf03 100644 --- a/env/Lib/site-packages/pip/_internal/wheel.py +++ b/env/Lib/site-packages/pip/_internal/wheel.py @@ -217,7 +217,7 @@ def message_about_scripts_not_on_PATH(scripts): start_text = "script {} is".format(scripts[0]) else: start_text = "scripts {} are".format( - ", ".join(scripts[:-1]) + " and " + scripts[-1] + ",".join(scripts[:-1]) + " and " + scripts[-1] ) msg_lines.append( diff --git a/env/Lib/site-packages/pip/_vendor/pyparsing.py b/env/Lib/site-packages/pip/_vendor/pyparsing.py index bea4d9c..06268ee 100644 --- a/env/Lib/site-packages/pip/_vendor/pyparsing.py +++ b/env/Lib/site-packages/pip/_vendor/pyparsing.py @@ -4011,7 +4011,7 @@ class Each(ParseExpression): keepMatching = False if tmpReqd: - missing = ", ".join(_ustr(e) for e in tmpReqd) + missing = ",".join(_ustr(e) for e in tmpReqd) raise ParseException(instring,loc,"Missing one or more required elements (%s)" % missing ) # add any unmatched Optionals, in case they have default values defined diff --git a/env/Lib/site-packages/pkg_resources/_vendor/pyparsing.py b/env/Lib/site-packages/pkg_resources/_vendor/pyparsing.py index 4aa30ee..8433429 100644 --- a/env/Lib/site-packages/pkg_resources/_vendor/pyparsing.py +++ b/env/Lib/site-packages/pkg_resources/_vendor/pyparsing.py @@ -3683,7 +3683,7 @@ class Each(ParseExpression): keepMatching = False if tmpReqd: - missing = ", ".join(_ustr(e) for e in tmpReqd) + missing = ",".join(_ustr(e) for e in tmpReqd) raise ParseException(instring,loc,"Missing one or more required elements (%s)" % missing ) # add any unmatched Optionals, in case they have default values defined diff --git a/env/Lib/site-packages/setuptools/_vendor/pyparsing.py b/env/Lib/site-packages/setuptools/_vendor/pyparsing.py index 4aa30ee..8433429 100644 --- a/env/Lib/site-packages/setuptools/_vendor/pyparsing.py +++ b/env/Lib/site-packages/setuptools/_vendor/pyparsing.py @@ -3683,7 +3683,7 @@ class Each(ParseExpression): keepMatching = False if tmpReqd: - missing = ", ".join(_ustr(e) for e in tmpReqd) + missing = ",".join(_ustr(e) for e in tmpReqd) raise ParseException(instring,loc,"Missing one or more required elements (%s)" % missing ) # add any unmatched Optionals, in case they have default values defined diff --git a/note_evaluation_mgt.py b/note_evaluation_mgt.py index 40f8a6c..b3c8315 100644 --- a/note_evaluation_mgt.py +++ b/note_evaluation_mgt.py @@ -1400,10 +1400,10 @@ def Send_Evaluation_Convocation_Participant_By_Email(tab_files, Folder, diction) msg['From'] = partner_SMTP_COUNT_From_User msg['Subject'] = sujetHtml - email_to_bcc = ", ".join(email_to_bcc) + email_to_bcc = ",".join(email_to_bcc) msg['Bcc'] = str(email_to_bcc) - toaddrs = ", ".join(email_to_cc) + toaddrs = ",".join(email_to_cc) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes @@ -1419,10 +1419,10 @@ def Send_Evaluation_Convocation_Participant_By_Email(tab_files, Folder, diction) msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User msg['Subject'] = sujetHtml - email_to_bcc = ", ".join(email_to_bcc) + email_to_bcc = ",".join(email_to_bcc) msg['Bcc'] = str(email_to_bcc) - toaddrs = ", ".join(email_to_cc) + toaddrs = ",".join(email_to_cc) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes diff --git a/partner_order.py b/partner_order.py index 4f019bc..ab3a5b5 100644 --- a/partner_order.py +++ b/partner_order.py @@ -6789,7 +6789,7 @@ def Send_Partner_Order_By_Email(tab_files, Folder, diction): new_e_document_diction = {} new_e_document_diction['token'] = diction['token'] new_e_document_diction['file_name'] = outputFilename - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) new_e_document_diction['email_destinataire'] = str(toaddrs) new_e_document_diction['source_document'] = new_model_courrier_with_code_tag @@ -7518,7 +7518,7 @@ def Insert_Quotation_To_Session(diction): new_e_document_diction = {} new_e_document_diction['token'] = diction['token'] new_e_document_diction['file_name'] = outputFilename - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) new_e_document_diction['email_destinataire'] = str(toaddrs) new_e_document_diction['source_document'] = new_model_courrier_with_code_tag new_e_document_diction['type'] = "quotation" @@ -7859,7 +7859,7 @@ def Insert_Quotation_To_Session_From_Partner_Owner_Recid(diction): new_e_document_diction = {} new_e_document_diction['token'] = diction['token'] new_e_document_diction['file_name'] = outputFilename - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) new_e_document_diction['email_destinataire'] = str(toaddrs) new_e_document_diction['source_document'] = new_model_courrier_with_code_tag new_e_document_diction['type'] = "quotation" @@ -8504,7 +8504,7 @@ def Send_Quotation_Remind_Level1(diction): msg['From'] = partner_SMTP_COUNT_From_User msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = sujetHtml - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes @@ -8533,7 +8533,7 @@ def Send_Quotation_Remind_Level1(diction): msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = sujetHtml - toaddrs = ", ".join(tab_emails_destinataire) + toaddrs = ",".join(tab_emails_destinataire) msg['to'] = str(toaddrs) # Attacher l'eventuelle pièces jointes