IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Tomcat et TomEE Java Discussion :

Tomcat lent pour repondre


Sujet :

Tomcat et TomEE Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éclairé
    Profil pro
    Inscrit en
    Octobre 2009
    Messages
    226
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Octobre 2009
    Messages : 226
    Par défaut Tomcat lent pour repondre
    bonjour,

    je possède un serveur qui contient les caractéristique suivantes :

    2 vCores x 2,4 GHz E5-2620v3
    30 Go RAM 200 Go
    HA Block Storage 250 Mbps
    windows serveur 2012 r2


    j'ai installé les applications suivantes :

    - windows serveur 2005
    - tomcat apache 8.0.33 version 64-bit Windows Service Installer
    - jdk 8

    j'ai lancer l'installation normale avec l’exécutable.
    j'ai ajouté les variables de session java_HOME

    Quand je déploye les war sur la machine de développement j'ai des réponses instantanée .
    Quand je déploye les war sur le serveur, j'ai des réponses asser lente et une montée du cpu parfois jusque 90% pour 2 web Service .

    Pouvez-vous me conseiller pour corriger ses problémes.

  2. #2
    Expert éminent
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Par défaut
    ben comme ça non on ne pas devine ce qui pose problème. Dans les idées générales, ce peux être:

    • un service mal codé qui ne supporte pas la montée en charge. On a souvent moins de datas sur un poste de dev qu'un poste de prod
    • pas assez de mémoire allouée et le GC qui mouline
    • ...


    Il faut faire une profiling de l'application pour déterminer les point chauds. Souvent c'est le point 1 qui pose probème.

  3. #3
    Membre éclairé
    Profil pro
    Inscrit en
    Octobre 2009
    Messages
    226
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Octobre 2009
    Messages : 226
    Par défaut
    comment je m'y prends pour augmenter la mémoire allouée ?
    les bases de donnée sont exactement les même sur le serveur et la machine de développement.

    une profiling de l'application je n'ai jamais fais cela comment m'y prendre?

  4. #4
    Expert éminent
    Avatar de tchize_
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Avril 2007
    Messages
    25 482
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : Belgique

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Avril 2007
    Messages : 25 482
    Par défaut
    Ben déjà tu vérifie sur le serveur combien est alloué. Le plus simple ce de regarder un peu combien utilise le process java sur le serveur à plein charge.
    Si la DB est la même, c'est peut être le nombre de demandes simultanées qui tuent ton serveur. Tu as fais des tests de montée en charge?
    Pour le profiling, un point de départ c'est de brancher visualvm dessus, en mode cpu profiling et regarder ce qu'il te dit.


    PS: Pas normal que ta DB soit la même en dev et en prob

  5. #5
    Membre éclairé
    Profil pro
    Inscrit en
    Octobre 2009
    Messages
    226
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Octobre 2009
    Messages : 226
    Par défaut
    Ben déjà tu vérifie sur le serveur combien est alloué.
    c'est le maximum memory pool ? il est a 2460 mb je dois l'augmenter ?
    initial memory pool est a 128 mb.


    Le plus simple ce de regarder un peu combien utilise le processus java sur le serveur à plein charge.
    avec un seul utilisateur il monte déjà a 90% la montée en charge va être dur .

    Si la DB est la même, c'est peut être le nombre de demandes simultanées qui tuent ton serveur. Tu as fais des tests de montée en charge?
    la db est a 1 ou 2 % CPU et 34,9mo
    le processeur monte parfois a 90% et est constamment a 1280 mb consommer en ram .


    Pour le profiling, un point de départ c'est de brancher visualvm dessus, en mode cpu profiling et regarder ce qu'il te dit.

    d'accord je vais chercher des tutos la dessus

    PS: Pas normal que ta DB soit la même en dev et en prob

    Pour le moment avec les problèmes rencontrer j'ai préférer mettre la même DB elle sera changer par la suite

  6. #6
    Membre éclairé
    Profil pro
    Inscrit en
    Octobre 2009
    Messages
    226
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Octobre 2009
    Messages : 226
    Par défaut
    j'ai regarder il n'y a pas de perte de mémoire par contre quand je trace les requêtes que jpa fais pour un simple update ça me semble énorme pouvez-vous m'aider :

    Code x : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    [EL Fine]: sql: 2016-04-18 21:13:36.997--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-33,5,main])--SELECT KeyIdTable, IDValeur, NomTable FROM IdTable WHERE (NomTable = ?)
    	bind => [reponseClient]
    [EL Fine]: sql: 2016-04-18 21:13:36.998--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyIdTable, IDValeur, NomTable FROM IdTable WHERE (NomTable = ?)
    	bind => [question]
    [EL Fine]: sql: 2016-04-18 21:13:37.041--ClientSession(82704635)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-33,5,main])--UPDATE IdTable SET IDValeur = ? WHERE (KeyIdTable = ?)
    	bind => [1431, 12]
    [EL Fine]: sql: 2016-04-18 21:13:37.041--ClientSession(1757419915)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--UPDATE IdTable SET IDValeur = ? WHERE (KeyIdTable = ?)
    	bind => [267, 1]
    Début de la transaction
    [EL Fine]: sql: 2016-04-18 21:13:37.356--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:37.367--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:37.37--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT keyCivilite, NomCivilite FROM Civilite WHERE (keyCivilite = ?)
    	bind => [348]
    [EL Fine]: sql: 2016-04-18 21:13:37.372--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyCivilite = ?)
    	bind => [348]
    [EL Fine]: sql: 2016-04-18 21:13:37.374--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyEntreprise, DateCreation, DateModification, IdExterne, Nic, Nom2Entreprise, NomEntreprise, OrigineInterne, Siren, Siret, Site, KeyAdresse FROM Entreprise WHERE (KeyEntreprise = ?)
    	bind => [34348]
    [EL Fine]: sql: 2016-04-18 21:13:37.376--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyAdresse, Adresse, KeyLocalite FROM Adresse WHERE (KeyAdresse = ?)
    	bind => [34380]
    [EL Fine]: sql: 2016-04-18 21:13:37.378--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyLocalite, CodePostal, Ville, KeyDepartement, keyPays FROM Localite WHERE (KeyLocalite = ?)
    	bind => [34380]
    [EL Fine]: sql: 2016-04-18 21:13:37.492--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyDepartement, NomDep, NomRegFr, RegFr FROM Departement WHERE (KeyDepartement = ?)
    	bind => [45]
    [EL Fine]: sql: 2016-04-18 21:13:37.509--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyLocalite, CodePostal, Ville, KeyDepartement, keyPays FROM Localite WHERE (KeyDepartement = ?)
    	bind => [45]
    [EL Fine]: sql: 2016-04-18 21:13:37.531--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyPays, IdRegGeo, Indicatif, NomPays FROM Pays WHERE (KeyPays = ?)
    	bind => [73]
    [EL Fine]: sql: 2016-04-18 21:13:37.579--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyEntreprise, DateCreation, DateModification, IdExterne, Nic, Nom2Entreprise, NomEntreprise, OrigineInterne, Siren, Siret, Site, KeyAdresse FROM Entreprise WHERE (KeyAdresse = ?)
    	bind => [34380]
    [EL Fine]: sql: 2016-04-18 21:13:37.583--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeyAdresse = ?)
    	bind => [34380]
    [EL Fine]: sql: 2016-04-18 21:13:37.595--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyEntreprise = ?)
    	bind => [34348]
    [EL Fine]: sql: 2016-04-18 21:13:37.597--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCorrespondanceImportation, ChampDB, ChampsClient, NomTable, KeyPersonne FROM CorrespondanceImportation WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:37.6--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:37.603--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyAutreInformation, Valeur, keyAutreInformationType, KeyPersonne FROM AutreInformation WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:37.606--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyDroit, KeyPersonne, KeySession FROM Droit WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:37.608--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyHotesse, IdScanner, KeyPersonne FROM Hotesse WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:37.611--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyProduit, Description, NomProduit, Prix, Stock, Tva, KeyPersonne, KeyTypeProduit FROM Produit WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:37.613--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:37.617--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyParrainage, EmailParrainage, NomParrainage, PrenomParrainage, KeySessionPersonne FROM parrainage WHERE (KeySessionPersonne = ?)
    	bind => [104471]
    [EL Fine]: sql: 2016-04-18 21:13:37.619--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyLogin, Actif, DateCreation, Login, Password, KeySessionPersonne FROM Login WHERE (KeySessionPersonne = ?)
    	bind => [104471]
    [EL Fine]: sql: 2016-04-18 21:13:37.621--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyPassage, MomentDePassage, Passage, Trouver, KeyHotesse, KeySessionPersonne FROM Passage WHERE (KeySessionPersonne = ?)
    	bind => [104471]
    [EL Fine]: sql: 2016-04-18 21:13:37.623--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeySessionPersonne = ?)
    	bind => [104471]
    [EL Fine]: sql: 2016-04-18 21:13:37.626--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:37.627--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:37.629--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [341]
    [EL Fine]: sql: 2016-04-18 21:13:37.632--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [341]
    [EL Fine]: sql: 2016-04-18 21:13:37.634--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3423]
    [EL Fine]: sql: 2016-04-18 21:13:37.652--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3423]
    [EL Fine]: sql: 2016-04-18 21:13:37.654--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3431]
    [EL Fine]: sql: 2016-04-18 21:13:37.657--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3431]
    [EL Fine]: sql: 2016-04-18 21:13:37.66--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3438]
    [EL Fine]: sql: 2016-04-18 21:13:37.664--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3438]
    [EL Fine]: sql: 2016-04-18 21:13:37.667--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3439]
    [EL Fine]: sql: 2016-04-18 21:13:37.67--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3439]
    [EL Fine]: sql: 2016-04-18 21:13:37.672--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3443]
    [EL Fine]: sql: 2016-04-18 21:13:37.675--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3443]
    [EL Fine]: sql: 2016-04-18 21:13:37.677--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3444]
    [EL Fine]: sql: 2016-04-18 21:13:37.68--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3444]
    [EL Fine]: sql: 2016-04-18 21:13:37.684--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3447]
    [EL Fine]: sql: 2016-04-18 21:13:37.706--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3447]
    [EL Fine]: sql: 2016-04-18 21:13:37.711--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3410]
    [EL Fine]: sql: 2016-04-18 21:13:37.716--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3410]
    [EL Fine]: sql: 2016-04-18 21:13:37.725--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3453]
    [EL Fine]: sql: 2016-04-18 21:13:37.728--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3453]
    [EL Fine]: sql: 2016-04-18 21:13:37.73--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3457]
    [EL Fine]: sql: 2016-04-18 21:13:37.733--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3457]
    [EL Fine]: sql: 2016-04-18 21:13:37.735--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3461]
    [EL Fine]: sql: 2016-04-18 21:13:37.738--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3461]
    [EL Fine]: sql: 2016-04-18 21:13:37.74--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3469]
    [EL Fine]: sql: 2016-04-18 21:13:37.742--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3469]
    [EL Fine]: sql: 2016-04-18 21:13:37.744--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3471]
    [EL Fine]: sql: 2016-04-18 21:13:37.753--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3471]
    [EL Fine]: sql: 2016-04-18 21:13:37.756--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3478]
    [EL Fine]: sql: 2016-04-18 21:13:37.757--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3478]
    [EL Fine]: sql: 2016-04-18 21:13:37.758--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3414]
    [EL Fine]: sql: 2016-04-18 21:13:37.76--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3414]
    [EL Fine]: sql: 2016-04-18 21:13:37.761--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCss, Classe, Element, Nom, Propriete, Valeur, KeySession FROM Css WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:37.764--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyDroit, KeyPersonne, KeySession FROM Droit WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:37.766--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:37.769--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [341]
    [EL Fine]: sql: 2016-04-18 21:13:37.791--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [341]
    [EL Fine]: sql: 2016-04-18 21:13:37.793--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3417]
    [EL Fine]: sql: 2016-04-18 21:13:37.794--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3425]
    [EL Fine]: sql: 2016-04-18 21:13:37.795--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [346]
    [EL Fine]: sql: 2016-04-18 21:13:37.796--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [348]
    [EL Fine]: sql: 2016-04-18 21:13:37.804--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:37.808--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34103]
    [EL Fine]: sql: 2016-04-18 21:13:37.809--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34107]
    [EL Fine]: sql: 2016-04-18 21:13:37.811--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34110]
    [EL Fine]: sql: 2016-04-18 21:13:37.812--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34119]
    [EL Fine]: sql: 2016-04-18 21:13:37.813--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34121]
    [EL Fine]: sql: 2016-04-18 21:13:37.817--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34126]
    [EL Fine]: sql: 2016-04-18 21:13:37.819--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34128]
    [EL Fine]: sql: 2016-04-18 21:13:37.822--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34130]
    [EL Fine]: sql: 2016-04-18 21:13:37.825--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34134]
    [EL Fine]: sql: 2016-04-18 21:13:37.826--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34141]
    [EL Fine]: sql: 2016-04-18 21:13:37.829--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34147]
    [EL Fine]: sql: 2016-04-18 21:13:37.83--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34152]
    [EL Fine]: sql: 2016-04-18 21:13:37.832--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34161]
    [EL Fine]: sql: 2016-04-18 21:13:37.834--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34164]
    [EL Fine]: sql: 2016-04-18 21:13:37.855--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34167]
    [EL Fine]: sql: 2016-04-18 21:13:37.859--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3459]
    [EL Fine]: sql: 2016-04-18 21:13:37.861--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3468]
    [EL Fine]: sql: 2016-04-18 21:13:37.863--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3471]
    [EL Fine]: sql: 2016-04-18 21:13:37.865--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3475]
    [EL Fine]: sql: 2016-04-18 21:13:37.868--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3478]
    [EL Fine]: sql: 2016-04-18 21:13:37.87--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3479]
    [EL Fine]: sql: 2016-04-18 21:13:37.875--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3487]
    [EL Fine]: sql: 2016-04-18 21:13:37.878--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3494]
    [EL Fine]: sql: 2016-04-18 21:13:37.879--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3417]
    [EL Fine]: sql: 2016-04-18 21:13:37.881--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34169]
    [EL Fine]: sql: 2016-04-18 21:13:37.882--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34170]
    [EL Fine]: sql: 2016-04-18 21:13:37.883--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34176]
    [EL Fine]: sql: 2016-04-18 21:13:37.884--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34184]
    [EL Fine]: sql: 2016-04-18 21:13:37.886--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34190]
    [EL Fine]: sql: 2016-04-18 21:13:37.905--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34191]
    [EL Fine]: sql: 2016-04-18 21:13:37.93--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3425]
    [EL Fine]: sql: 2016-04-18 21:13:37.932--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34196]
    [EL Fine]: sql: 2016-04-18 21:13:37.934--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34199]
    [EL Fine]: sql: 2016-04-18 21:13:37.938--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34205]
    [EL Fine]: sql: 2016-04-18 21:13:37.949--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34210]
    [EL Fine]: sql: 2016-04-18 21:13:37.951--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34219]
    [EL Fine]: sql: 2016-04-18 21:13:37.954--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34228]
    [EL Fine]: sql: 2016-04-18 21:13:37.955--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3430]
    [EL Fine]: sql: 2016-04-18 21:13:37.977--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34234]
    [EL Fine]: sql: 2016-04-18 21:13:37.984--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34241]
    [EL Fine]: sql: 2016-04-18 21:13:37.988--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34244]
    [EL Fine]: sql: 2016-04-18 21:13:37.991--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3434]
    [EL Fine]: sql: 2016-04-18 21:13:37.992--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [1051]
    [EL Fine]: sql: 2016-04-18 21:13:37.994--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3441]
    [EL Fine]: sql: 2016-04-18 21:13:37.996--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [1052]
    [EL Fine]: sql: 2016-04-18 21:13:37.997--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [348]
    [EL Fine]: sql: 2016-04-18 21:13:37.998--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3428]
    [EL Fine]: sql: 2016-04-18 21:13:38.0--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3429]
    [EL Fine]: sql: 2016-04-18 21:13:38.001--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3432]
    [EL Fine]: sql: 2016-04-18 21:13:38.005--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3435]
    [EL Fine]: sql: 2016-04-18 21:13:38.017--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3436]
    [EL Fine]: sql: 2016-04-18 21:13:38.019--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3442]
    [EL Fine]: sql: 2016-04-18 21:13:38.028--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3451]
    [EL Fine]: sql: 2016-04-18 21:13:38.03--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3458]
    [EL Fine]: sql: 2016-04-18 21:13:38.032--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:38.034--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySite, Footer, Header, Logo, Navbar, KeySession FROM Site WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:38.036--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyParrainage, EmailParrainage, NomParrainage, PrenomParrainage, KeySessionPersonne FROM parrainage WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:38.038--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyLogin, Actif, DateCreation, Login, Password, KeySessionPersonne FROM Login WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:38.042--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyPassage, MomentDePassage, Passage, Trouver, KeyHotesse, KeySessionPersonne FROM Passage WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:38.044--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:38.046--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeyUtilisateur = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:38.048--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyEntreprise, DateCreation, DateModification, IdExterne, Nic, Nom2Entreprise, NomEntreprise, OrigineInterne, Siren, Siret, Site, KeyAdresse FROM Entreprise WHERE (KeyEntreprise = ?)
    	bind => [34346]
    [EL Fine]: sql: 2016-04-18 21:13:38.052--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyAdresse, Adresse, KeyLocalite FROM Adresse WHERE (KeyAdresse = ?)
    	bind => [34374]
    [EL Fine]: sql: 2016-04-18 21:13:38.055--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyLocalite, CodePostal, Ville, KeyDepartement, keyPays FROM Localite WHERE (KeyLocalite = ?)
    	bind => [34372]
    [EL Fine]: sql: 2016-04-18 21:13:38.093--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyDepartement, NomDep, NomRegFr, RegFr FROM Departement WHERE (KeyDepartement = ?)
    	bind => [44]
    [EL Fine]: sql: 2016-04-18 21:13:38.094--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyLocalite, CodePostal, Ville, KeyDepartement, keyPays FROM Localite WHERE (KeyDepartement = ?)
    	bind => [44]
    [EL Fine]: sql: 2016-04-18 21:13:38.13--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyEntreprise, DateCreation, DateModification, IdExterne, Nic, Nom2Entreprise, NomEntreprise, OrigineInterne, Siren, Siret, Site, KeyAdresse FROM Entreprise WHERE (KeyAdresse = ?)
    	bind => [34374]
    [EL Fine]: sql: 2016-04-18 21:13:38.133--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeyAdresse = ?)
    	bind => [34374]
    [EL Fine]: sql: 2016-04-18 21:13:38.136--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyEntreprise = ?)
    	bind => [34346]
    [EL Fine]: sql: 2016-04-18 21:13:38.145--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCorrespondanceImportation, ChampDB, ChampsClient, NomTable, KeyPersonne FROM CorrespondanceImportation WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:38.148--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:38.156--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyAutreInformation, Valeur, keyAutreInformationType, KeyPersonne FROM AutreInformation WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:38.17--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyDroit, KeyPersonne, KeySession FROM Droit WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:38.182--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyHotesse, IdScanner, KeyPersonne FROM Hotesse WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:38.183--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyProduit, Description, NomProduit, Prix, Stock, Tva, KeyPersonne, KeyTypeProduit FROM Produit WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:38.185--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:38.187--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeyUtilisateur = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:38.19--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyParrainage, EmailParrainage, NomParrainage, PrenomParrainage, KeySessionPersonne FROM parrainage WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:38.193--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyLogin, Actif, DateCreation, Login, Password, KeySessionPersonne FROM Login WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:38.196--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyPassage, MomentDePassage, Passage, Trouver, KeyHotesse, KeySessionPersonne FROM Passage WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:38.198--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:38.25--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyAdresse, Adresse, KeyLocalite FROM Adresse WHERE (KeyLocalite = ?)
    	bind => [34372]
    [EL Fine]: sql: 2016-04-18 21:13:38.304--ClientSession(1235901244)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-37,5,main])--UPDATE Session SET DateDebut = ?, DateFin = ? WHERE (KeySession = ?)
    	bind => [2016-04-05 00:00:00.0, 2016-04-07 00:00:00.0, 23]
    [EL Fine]: sql: 2016-04-18 21:13:38.473--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyIdTable, IDValeur, NomTable FROM IdTable WHERE (NomTable = ?)
    	bind => [reponseClient]
    [EL Fine]: sql: 2016-04-18 21:13:38.492--ClientSession(18520837)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-35,5,main])--UPDATE IdTable SET IDValeur = ? WHERE (KeyIdTable = ?)
    	bind => [1436, 12]
    [EL Fine]: sql: 2016-04-18 21:13:38.575--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-39,5,main])--SELECT KeyIdTable, IDValeur, NomTable FROM IdTable WHERE (NomTable = ?)
    	bind => [reponseClient]
    [EL Fine]: sql: 2016-04-18 21:13:38.597--ClientSession(1154126391)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-39,5,main])--UPDATE IdTable SET IDValeur = ? WHERE (KeyIdTable = ?)
    	bind => [1440, 12]
    [EL Fine]: sql: 2016-04-18 21:13:38.727--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-38,5,main])--SELECT KeyIdTable, IDValeur, NomTable FROM IdTable WHERE (NomTable = ?)
    	bind => [reponseClient]
    [EL Fine]: sql: 2016-04-18 21:13:38.864--ClientSession(266250825)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-38,5,main])--UPDATE IdTable SET IDValeur = ? WHERE (KeyIdTable = ?)
    	bind => [1448, 12]
    Début de la transaction
    [EL Fine]: sql: 2016-04-18 21:13:38.927--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponseClient = ?)
    	bind => [1041436]
    [EL Fine]: sql: 2016-04-18 21:13:38.932--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [3428]
    [EL Fine]: sql: 2016-04-18 21:13:38.937--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [348]
    [EL Fine]: sql: 2016-04-18 21:13:38.941--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:38.944--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:38.964--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [341]
    [EL Fine]: sql: 2016-04-18 21:13:38.968--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [341]
    Début de la transaction
    [EL Fine]: sql: 2016-04-18 21:13:39.016--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponseClient = ?)
    	bind => [1041440]
    [EL Fine]: sql: 2016-04-18 21:13:39.022--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3423]
    [EL Fine]: sql: 2016-04-18 21:13:39.023--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [348]
    [EL Fine]: sql: 2016-04-18 21:13:39.024--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3423]
    [EL Fine]: sql: 2016-04-18 21:13:39.025--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [341]
    [EL Fine]: sql: 2016-04-18 21:13:39.025--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3431]
    [EL Fine]: sql: 2016-04-18 21:13:39.027--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [341]
    [EL Fine]: sql: 2016-04-18 21:13:39.028--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3431]
    [EL Fine]: sql: 2016-04-18 21:13:39.03--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [341]
    [EL Fine]: sql: 2016-04-18 21:13:39.031--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3438]
    [EL Fine]: sql: 2016-04-18 21:13:39.038--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3438]
    [EL Fine]: sql: 2016-04-18 21:13:39.038--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3417]
    [EL Fine]: sql: 2016-04-18 21:13:39.04--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3425]
    [EL Fine]: sql: 2016-04-18 21:13:39.04--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3439]
    [EL Fine]: sql: 2016-04-18 21:13:39.114--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-33,5,main])--SELECT KeyIdTable, IDValeur, NomTable FROM IdTable WHERE (NomTable = ?)
    	bind => [reponseClient]
    [EL Fine]: sql: 2016-04-18 21:13:39.118--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [346]
    [EL Fine]: sql: 2016-04-18 21:13:39.12--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3439]
    [EL Fine]: sql: 2016-04-18 21:13:39.127--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [348]
    [EL Fine]: sql: 2016-04-18 21:13:39.131--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3443]
    Début de la transaction
    [EL Fine]: sql: 2016-04-18 21:13:39.135--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponseClient = ?)
    	bind => [1041448]
    [EL Fine]: sql: 2016-04-18 21:13:39.136--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:39.14--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3443]
    [EL Fine]: sql: 2016-04-18 21:13:39.141--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [34184]
    [EL Fine]: sql: 2016-04-18 21:13:39.143--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3444]
    [EL Fine]: sql: 2016-04-18 21:13:39.144--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3417]
    [EL Fine]: sql: 2016-04-18 21:13:39.145--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyPersonne = ?)
    	bind => [34392]
    [EL Fine]: sql: 2016-04-18 21:13:39.15--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3444]
    [EL Fine]: sql: 2016-04-18 21:13:39.151--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3417]
    [EL Config]: connection: 2016-04-18 21:13:39.157--ServerSession(1096879620)--Connection(1166812664)--Thread(Thread[http-nio-8084-exec-33,5,main])--connecting(DatabaseLogin(
    	platform=>SQLServerPlatform
    	user name=> "sa"
    	datasource URL=> "jdbc:sqlserver://localhost:1433;databaseName=PepSport"
    ))
    [EL Fine]: sql: 2016-04-18 21:13:39.153--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3447]
    [EL Fine]: sql: 2016-04-18 21:13:39.152--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT keyCivilite, NomCivilite FROM Civilite WHERE (keyCivilite = ?)
    	bind => [348]
    [EL Config]: connection: 2016-04-18 21:13:39.192--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-33,5,main])--Connected: jdbc:sqlserver://localhost:1433;authenticationScheme=nativeAuthentication;xopenStates=false;sendTimeAsDatetime=true;trustServerCertificate=false;sendStringParametersAsUnicode=true;selectMethod=direct;responseBuffering=adaptive;packetSize=8000;multiSubnetFailover=false;loginTimeout=15;lockTimeout=-1;lastUpdateCount=true;encrypt=false;disableStatementPooling=true;databaseName=PepSport;applicationName=Microsoft JDBC Driver for SQL Server;applicationIntent=readwrite;
    	User: sa
    	Database: Microsoft SQL Server  Version: 10.00.1600
    	Driver: Microsoft JDBC Driver 4.0 for SQL Server  Version: 4.0.4621.201
    [EL Fine]: sql: 2016-04-18 21:13:39.193--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyCivilite = ?)
    	bind => [348]
    [EL Fine]: sql: 2016-04-18 21:13:39.193--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34169]
    [EL Fine]: sql: 2016-04-18 21:13:39.194--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3447]
    [EL Fine]: sql: 2016-04-18 21:13:39.194--ClientSession(178109537)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-33,5,main])--UPDATE IdTable SET IDValeur = ? WHERE (KeyIdTable = ?)
    	bind => [1451, 12]
    [EL Fine]: sql: 2016-04-18 21:13:39.196--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34170]
    [EL Fine]: sql: 2016-04-18 21:13:39.198--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:39.199--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3410]
    [EL Fine]: sql: 2016-04-18 21:13:39.2--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.202--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3410]
    [EL Fine]: sql: 2016-04-18 21:13:39.201--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyEntreprise, DateCreation, DateModification, IdExterne, Nic, Nom2Entreprise, NomEntreprise, OrigineInterne, Siren, Siret, Site, KeyAdresse FROM Entreprise WHERE (KeyEntreprise = ?)
    	bind => [34348]
    [EL Fine]: sql: 2016-04-18 21:13:39.245--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyParrainage, EmailParrainage, NomParrainage, PrenomParrainage, KeySessionPersonne FROM parrainage WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:39.25--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyLogin, Actif, DateCreation, Login, Password, KeySessionPersonne FROM Login WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:39.254--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyPassage, MomentDePassage, Passage, Trouver, KeyHotesse, KeySessionPersonne FROM Passage WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:39.258--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:39.261--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [1051]
    [EL Fine]: sql: 2016-04-18 21:13:39.263--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3434]
    [EL Fine]: sql: 2016-04-18 21:13:39.264--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3434]
    [EL Fine]: sql: 2016-04-18 21:13:39.267--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [1051]
    [EL Fine]: sql: 2016-04-18 21:13:39.303--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [3432]
    [EL Fine]: sql: 2016-04-18 21:13:39.309--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3432]
    [EL Fine]: sql: 2016-04-18 21:13:39.312--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.312--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyAdresse, Adresse, KeyLocalite FROM Adresse WHERE (KeyAdresse = ?)
    	bind => [34380]
    [EL Fine]: sql: 2016-04-18 21:13:39.344--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeySessionPersonne = ?)
    	bind => [34464]
    [EL Fine]: sql: 2016-04-18 21:13:39.346--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyLocalite, CodePostal, Ville, KeyDepartement, keyPays FROM Localite WHERE (KeyLocalite = ?)
    	bind => [34380]
    [EL Fine]: sql: 2016-04-18 21:13:39.346--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3453]
    [EL Fine]: sql: 2016-04-18 21:13:39.349--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [34134]
    [EL Fine]: sql: 2016-04-18 21:13:39.4--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3453]
    [EL Fine]: sql: 2016-04-18 21:13:39.401--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.405--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.408--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.471--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-37,5,main])--SELECT KeyIdTable, IDValeur, NomTable FROM IdTable WHERE (NomTable = ?)
    	bind => [reponseClient]
    [EL Fine]: sql: 2016-04-18 21:13:39.483--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.493--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34103]
    [EL Fine]: sql: 2016-04-18 21:13:39.497--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3457]
    [EL Fine]: sql: 2016-04-18 21:13:39.498--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34107]
    [EL Fine]: sql: 2016-04-18 21:13:39.498--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyDepartement, NomDep, NomRegFr, RegFr FROM Departement WHERE (KeyDepartement = ?)
    	bind => [45]
    [EL Fine]: sql: 2016-04-18 21:13:39.499--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34110]
    Début de la transaction
    [EL Fine]: sql: 2016-04-18 21:13:39.501--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponseClient = ?)
    	bind => [1041451]
    [EL Fine]: sql: 2016-04-18 21:13:39.504--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyLocalite, CodePostal, Ville, KeyDepartement, keyPays FROM Localite WHERE (KeyDepartement = ?)
    	bind => [45]
    [EL Fine]: sql: 2016-04-18 21:13:39.505--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3457]
    [EL Fine]: sql: 2016-04-18 21:13:39.506--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34119]
    [EL Fine]: sql: 2016-04-18 21:13:39.509--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [34199]
    [EL Fine]: sql: 2016-04-18 21:13:39.51--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.512--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34121]
    [EL Fine]: sql: 2016-04-18 21:13:39.513--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3425]
    [EL Config]: connection: 2016-04-18 21:13:39.516--ServerSession(1096879620)--Connection(165628970)--Thread(Thread[http-nio-8084-exec-37,5,main])--connecting(DatabaseLogin(
    	platform=>SQLServerPlatform
    	user name=> "sa"
    	datasource URL=> "jdbc:sqlserver://localhost:1433;databaseName=PepSport"
    ))
    [EL Config]: connection: 2016-04-18 21:13:39.564--ServerSession(1096879620)--Connection(818262574)--Thread(Thread[http-nio-8084-exec-37,5,main])--Connected: jdbc:sqlserver://localhost:1433;authenticationScheme=nativeAuthentication;xopenStates=false;sendTimeAsDatetime=true;trustServerCertificate=false;sendStringParametersAsUnicode=true;selectMethod=direct;responseBuffering=adaptive;packetSize=8000;multiSubnetFailover=false;loginTimeout=15;lockTimeout=-1;lastUpdateCount=true;encrypt=false;disableStatementPooling=true;databaseName=PepSport;applicationName=Microsoft JDBC Driver for SQL Server;applicationIntent=readwrite;
    	User: sa
    	Database: Microsoft SQL Server  Version: 10.00.1600
    	Driver: Microsoft JDBC Driver 4.0 for SQL Server  Version: 4.0.4621.201
    [EL Fine]: sql: 2016-04-18 21:13:39.565--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyPays, IdRegGeo, Indicatif, NomPays FROM Pays WHERE (KeyPays = ?)
    	bind => [73]
    [EL Fine]: sql: 2016-04-18 21:13:39.565--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.566--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34126]
    [EL Fine]: sql: 2016-04-18 21:13:39.566--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3461]
    [EL Fine]: sql: 2016-04-18 21:13:39.567--ClientSession(354646945)--Connection(818262574)--Thread(Thread[http-nio-8084-exec-37,5,main])--UPDATE IdTable SET IDValeur = ? WHERE (KeyIdTable = ?)
    	bind => [1459, 12]
    [EL Fine]: sql: 2016-04-18 21:13:39.575--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3461]
    [EL Fine]: sql: 2016-04-18 21:13:39.578--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyQuestion = ?)
    	bind => [3425]
    [EL Fine]: sql: 2016-04-18 21:13:39.579--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34128]
    [EL Fine]: sql: 2016-04-18 21:13:39.584--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34196]
    [EL Fine]: sql: 2016-04-18 21:13:39.585--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34130]
    [EL Fine]: sql: 2016-04-18 21:13:39.595--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.596--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:39.596--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34141]
    [EL Fine]: sql: 2016-04-18 21:13:39.597--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyEntreprise, DateCreation, DateModification, IdExterne, Nic, Nom2Entreprise, NomEntreprise, OrigineInterne, Siren, Siret, Site, KeyAdresse FROM Entreprise WHERE (KeyAdresse = ?)
    	bind => [34380]
    [EL Fine]: sql: 2016-04-18 21:13:39.601--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.601--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3469]
    [EL Fine]: sql: 2016-04-18 21:13:39.602--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeyAdresse = ?)
    	bind => [34380]
    [EL Fine]: sql: 2016-04-18 21:13:39.611--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3469]
    [EL Fine]: sql: 2016-04-18 21:13:39.613--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34147]
    [EL Fine]: sql: 2016-04-18 21:13:39.614--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyEntreprise = ?)
    	bind => [34348]
    [EL Fine]: sql: 2016-04-18 21:13:39.615--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.649--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [34196]
    [EL Fine]: sql: 2016-04-18 21:13:39.651--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.654--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyCorrespondanceImportation, ChampDB, ChampsClient, NomTable, KeyPersonne FROM CorrespondanceImportation WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.654--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3471]
    [EL Fine]: sql: 2016-04-18 21:13:39.655--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:39.655--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34152]
    [EL Fine]: sql: 2016-04-18 21:13:39.658--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [34196]
    [EL Fine]: sql: 2016-04-18 21:13:39.658--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.66--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.66--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3471]
    [EL Fine]: sql: 2016-04-18 21:13:39.66--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeySessionPersonne = ?)
    	bind => [34462]
    [EL Fine]: sql: 2016-04-18 21:13:39.661--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34161]
    [EL Fine]: sql: 2016-04-18 21:13:39.665--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.664--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3425]
    [EL Fine]: sql: 2016-04-18 21:13:39.663--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyAutreInformation, Valeur, keyAutreInformationType, KeyPersonne FROM AutreInformation WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.68--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.68--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3478]
    [EL Fine]: sql: 2016-04-18 21:13:39.682--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34164]
    [EL Fine]: sql: 2016-04-18 21:13:39.682--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3478]
    [EL Fine]: sql: 2016-04-18 21:13:39.684--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.685--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.685--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34205]
    [EL Fine]: sql: 2016-04-18 21:13:39.685--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyDroit, KeyPersonne, KeySession FROM Droit WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.688--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34167]
    [EL Fine]: sql: 2016-04-18 21:13:39.693--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrm, Export, Facultatif, Publique, QrCode, Actif, Champsfils, ColoneAffichage, Couleur1, Couleur2, Defaut, ExpressionReguliere, Formulaire, Langue, LigneAffichage, Modifiable, NomChamps, NomCrm, NomDb, NomTable, Page, Reporting, TailleChamps, Titre, TitreColone, TypeChamps FROM Crm WHERE (KeyCrm = ?)
    	bind => [3414]
    [EL Fine]: sql: 2016-04-18 21:13:39.694--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.717--ServerSession(1096879620)--Connection(818262574)--Thread(Thread[http-nio-8084-exec-39,5,main])--SELECT KeyIdTable, IDValeur, NomTable FROM IdTable WHERE (NomTable = ?)
    	bind => [reponseClient]
    [EL Fine]: sql: 2016-04-18 21:13:39.695--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCrmLien, KeyCategorie, KeyCrm, KeyPersonne, KeySession FROM CrmLien WHERE (KeyCrm = ?)
    	bind => [3414]
    [EL Fine]: sql: 2016-04-18 21:13:39.694--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyHotesse, IdScanner, KeyPersonne FROM Hotesse WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.694--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3425]
    [EL Fine]: sql: 2016-04-18 21:13:39.726--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3459]
    [EL Fine]: sql: 2016-04-18 21:13:39.726--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    Début de la transaction
    [EL Fine]: sql: 2016-04-18 21:13:39.727--ServerSession(1096879620)--Connection(818262574)--Thread(Thread[http-nio-8084-exec-34,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponseClient = ?)
    	bind => [1041459]
    [EL Fine]: sql: 2016-04-18 21:13:39.729--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.729--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyCss, Classe, Element, Nom, Propriete, Valeur, KeySession FROM Css WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.73--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyProduit, Description, NomProduit, Prix, Stock, Tva, KeyPersonne, KeyTypeProduit FROM Produit WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.73--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [34210]
    [EL Fine]: sql: 2016-04-18 21:13:39.738--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3468]
    [EL Fine]: sql: 2016-04-18 21:13:39.738--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyDroit, KeyPersonne, KeySession FROM Droit WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.739--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeySessionPersonne, AdresseIp, DateCreation, DateModification, DateProduction, ModeRapide, Origine, TypeEnregistrement, KeyCategorie, KeyPersonne, KeySession, KeyUtilisateur FROM SessionPersonne WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.74--ServerSession(1096879620)--Connection(1638922592)--Thread(Thread[http-nio-8084-exec-35,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3425]
    [EL Config]: connection: 2016-04-18 21:13:39.75--ServerSession(1096879620)--Connection(1073500711)--Thread(Thread[http-nio-8084-exec-39,5,main])--connecting(DatabaseLogin(
    	platform=>SQLServerPlatform
    	user name=> "sa"
    	datasource URL=> "jdbc:sqlserver://localhost:1433;databaseName=PepSport"
    ))
    [EL Fine]: sql: 2016-04-18 21:13:39.746--ServerSession(1096879620)--Connection(1174212499)--Thread(Thread[http-nio-8084-exec-36,5,main])--SELECT KeyPersonne, actif, Email, Fax, IdExterne, NomPersonne, Portable, Prenom, Telephone, KeyCivilite, KeyEntreprise FROM Personne WHERE (KeyPersonne = ?)
    	bind => [34397]
    [EL Fine]: sql: 2016-04-18 21:13:39.746--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeySession = ?)
    	bind => [23]
    [EL Fine]: sql: 2016-04-18 21:13:39.745--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyQuestion, Actif, Atelier, DateDebut, DateFin, Description, Lieu, Modifiable, NomQuestion, Obligatoire, TypeReponse, KeySession FROM Question WHERE (KeyQuestion = ?)
    	bind => [3415]
    [EL Fine]: sql: 2016-04-18 21:13:39.74--ServerSession(1096879620)--Connection(818262574)--Thread(Thread[http-nio-8084-exec-34,5,main])--SELECT KeyReponse, Actif, Autre, Editable, NomReponse, KeyQuestion FROM Reponse WHERE (KeyReponse = ?)
    	bind => [1051]
    [EL Config]: connection: 2016-04-18 21:13:39.802--ServerSession(1096879620)--Connection(674613762)--Thread(Thread[http-nio-8084-exec-39,5,main])--Connected: jdbc:sqlserver://localhost:1433;authenticationScheme=nativeAuthentication;xopenStates=false;sendTimeAsDatetime=true;trustServerCertificate=false;sendStringParametersAsUnicode=true;selectMethod=direct;responseBuffering=adaptive;packetSize=8000;multiSubnetFailover=false;loginTimeout=15;lockTimeout=-1;lastUpdateCount=true;encrypt=false;disableStatementPooling=true;databaseName=PepSport;applicationName=Microsoft JDBC Driver for SQL Server;applicationIntent=readwrite;
    	User: sa
    	Database: Microsoft SQL Server  Version: 10.00.1600
    	Driver: Microsoft JDBC Driver 4.0 for SQL Server  Version: 4.0.4621.201
    [EL Fine]: sql: 2016-04-18 21:13:39.803--ServerSession(1096879620)--Connection(1012593227)--Thread(Thread[http-nio-8084-exec-32,5,main])--SELECT KeyReponseClient, Autre, PasRepondu, response, KeyReponse, KeySessionPersonne FROM ReponseClient WHERE (KeyReponse = ?)
    	bind => [3471]
    [EL Fine]: sql: 2016-04-18 21:13:39.803--ServerSession(1096879620)--Connection(1007251371)--Thread(Thread[http-nio-8084-exec-41,5,main])--SELECT KeySession, DateDebut, DateFin, NomSession, KeyAdresse FROM Session WHERE (KeySession = ?)
    	bind => [23]
    suite ici http://textup.fr/161740Ni

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [IDENTIFICATION][TOMCAT]transparence pour les users
    Par olivier_44 dans le forum Servlets/JSP
    Réponses: 1
    Dernier message: 31/08/2006, 13h49
  2. [Débutant][Tomcat] Applet pour un Web service
    Par xavlours dans le forum Tomcat et TomEE
    Réponses: 3
    Dernier message: 08/06/2006, 14h21
  3. [tomcat]probleme pour faire marche des .shtml
    Par Battosaiii dans le forum Tomcat et TomEE
    Réponses: 1
    Dernier message: 27/03/2006, 20h08
  4. OpenGL trop lent pour la 2D !!!
    Par kagemusha dans le forum OpenGL
    Réponses: 17
    Dernier message: 14/12/2005, 11h06
  5. [Tomcat] Problème pour accéder à une servlet
    Par david71 dans le forum Tomcat et TomEE
    Réponses: 9
    Dernier message: 08/04/2005, 13h56

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo