-
Notifications
You must be signed in to change notification settings - Fork 0
/
log-client.txt
1139 lines (1139 loc) · 116 KB
/
log-client.txt
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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
10:01:33,158 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:16:20,334 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:16:20,334 DEBUG [Thread-3] Configuration - final java.library.path = C:\Dev\java_libs\Futronic;null
10:16:20,397 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:16:20,444 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
10:16:21,021 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:16:21,537 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:16:21,537 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:16:21,583 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:16:21,615 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:16:21,615 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:16:21,615 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:16:21,615 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:16:21,615 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15667
10:16:21,786 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:16:26,716 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - stop()
10:16:26,716 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - destroy()
10:16:26,716 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] BaseEntity - Client::'s SSLSocket is connected? false
10:16:26,716 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] FutronicReader - uninitialize()
10:22:29,485 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:22:29,485 DEBUG [Thread-3] Configuration - final java.library.path = C:\Dev\java_libs\Futronic;null
10:22:29,532 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:22:29,579 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
10:22:31,295 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:22:31,327 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:22:31,327 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:22:31,343 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:22:31,374 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:22:31,374 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:22:31,374 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:22:31,374 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:22:31,374 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15667
10:22:31,405 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:22:39,611 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
10:22:39,612 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
10:22:39,627 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
10:22:39,768 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
10:22:39,768 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
10:22:40,189 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
10:22:40,237 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@1617189
10:22:40,237 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@64f6cd
10:22:40,299 DEBUG [Client::] BaseEntity - Client:: is handling server requests
10:22:40,299 TRACE [Client::] BaseEntity - total bytes read: 1167
10:22:40,315 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [-74, -17, -12, 69, 84, ...]],byte[length=672, [-57, 86, -22, -7, 7, ...]],Client::TestCard:[email protected]'s UFSC ID,]
10:22:40,315 TRACE [Client::] ClientApplet - messageReceived(): TestCard:[email protected]'s UFSC ID
10:22:40,315 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [-74, -17, -12, 69, 84, ...]],byte[length=672, [-57, 86, -22, -7, 7, ...]],Client::TestCard:[email protected]'s UFSC ID,]
10:22:40,315 TRACE [Client::] ClientEntity - clientAliasReceived=TestCard:[email protected]'s UFSC ID
10:22:40,315 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [-74, -17, -12, 69, 84, ...]],byte[length=672, [-57, 86, -22, -7, 7, ...]],]
10:27:33,876 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:27:33,923 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:27:33,954 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
10:27:35,655 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:27:35,703 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:27:35,703 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:27:35,703 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:27:35,734 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:27:35,734 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:27:35,734 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:27:35,734 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:27:35,734 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15667
10:27:35,765 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:33:51,233 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:33:51,280 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:33:51,326 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
10:33:51,950 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:33:51,983 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:33:51,983 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:33:51,983 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:33:52,014 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:33:52,014 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:33:52,014 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:33:52,014 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:33:52,014 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15667
10:33:52,045 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:39:19,116 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:39:19,131 DEBUG [Thread-3] Configuration - final java.library.path = C:\Dev\java_libs\Futronic;C:/Dev/java_libs/Futronic
10:39:19,178 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:39:19,209 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:/Windows/System32/aetpkss1.dll
10:39:19,786 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:39:19,819 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:39:19,819 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:39:19,819 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:39:19,834 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:39:19,834 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:39:19,834 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:39:19,834 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:39:19,834 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
10:39:19,865 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:39:32,955 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:39:32,955 DEBUG [Thread-3] Configuration - final java.library.path = C:\Dev\java_libs\Futronic;C:/Dev/java_libs/Futronic
10:39:33,017 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:39:33,048 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:/Windows/System32/aetpkss1.dll
10:39:33,641 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:39:33,689 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:39:33,689 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:39:33,689 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:39:33,705 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:39:33,705 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:39:33,705 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:39:33,705 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:39:33,705 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
10:39:33,736 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:40:34,862 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:40:34,862 DEBUG [Thread-3] Configuration - final java.library.path = C:\Dev\java_libs\Futronic;C:/Dev/java_libs/Futronic
10:40:34,924 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:40:34,955 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:/Windows/System32/aetpkss1.dll
10:40:36,656 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:40:36,688 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:40:36,688 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:40:36,688 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:40:36,703 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:40:36,703 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:40:36,703 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:40:36,703 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:40:36,703 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
10:40:36,735 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:42:59,849 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - stop()
10:42:59,849 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - destroy()
10:42:59,849 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] BaseEntity - Client::'s SSLSocket is connected? false
10:42:59,849 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] FutronicReader - uninitialize()
10:43:11,021 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:43:11,083 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:43:11,130 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
10:43:11,723 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:43:11,770 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:43:11,770 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:43:11,770 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:43:11,786 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:43:11,786 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:43:11,786 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:43:11,786 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:43:11,786 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
10:43:11,833 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:43:41,239 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
10:43:41,240 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
10:43:41,240 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
10:43:41,411 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
10:43:41,411 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
10:43:41,864 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
10:43:41,943 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@ef5502
10:43:41,943 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@b61fd1
10:43:42,005 DEBUG [Client::] BaseEntity - Client:: is handling server requests
10:51:10,139 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
10:51:10,185 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
10:51:10,232 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
10:51:10,778 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
10:51:10,810 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
10:51:10,810 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
10:51:10,810 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
10:51:10,826 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
10:51:10,826 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
10:51:10,826 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
10:51:10,826 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
10:51:10,826 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
10:51:10,857 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
10:51:17,581 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
10:51:17,581 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
10:51:17,581 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
10:51:17,753 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
10:51:17,753 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
10:51:18,175 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
10:51:18,207 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@e2dae9
10:51:18,207 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@19209ea
10:51:18,269 DEBUG [Client::] BaseEntity - Client:: is handling server requests
10:51:18,269 TRACE [Client::] BaseEntity - total bytes read: 1167
10:51:18,285 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [117, 1, -51, 72, -18, ...]],byte[length=672, [94, -87, 83, 30, -84, ...]],Client::TestCard:[email protected]'s UFSC ID,]
10:51:18,285 TRACE [Client::] ClientApplet - messageReceived(): TestCard:[email protected]'s UFSC ID
10:51:18,285 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [117, 1, -51, 72, -18, ...]],byte[length=672, [94, -87, 83, 30, -84, ...]],Client::TestCard:[email protected]'s UFSC ID,]
10:51:18,285 TRACE [Client::] ClientEntity - clientAliasReceived=TestCard:[email protected]'s UFSC ID
10:51:18,285 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [117, 1, -51, 72, -18, ...]],byte[length=672, [94, -87, 83, 30, -84, ...]],]
10:51:18,285 TRACE [Client::] BaseEntity - total bytes read: 1160
10:51:18,285 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [91, -86, 52, 91, 30, ...]],byte[length=656, [10, 87, 78, -33, 71, ...]],Client::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
10:51:18,285 TRACE [Client::] ClientApplet - messageReceived(): Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE
10:51:18,285 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [91, -86, 52, 91, 30, ...]],byte[length=656, [10, 87, 78, -33, 71, ...]],Client::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
10:51:18,285 TRACE [Client::] ClientEntity - clientAliasReceived=Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE
10:51:18,285 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [91, -86, 52, 91, 30, ...]],byte[length=656, [10, 87, 78, -33, 71, ...]],]
10:51:18,285 TRACE [Client::] BaseEntity - total bytes read: 1167
10:51:18,285 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [89, -56, -39, -115, -26, ...]],byte[length=672, [-49, -107, 115, -57, -26, ...]],Client::TestCard:[email protected]'s UFSC ID,]
10:51:18,285 TRACE [Client::] ClientApplet - messageReceived(): TestCard:[email protected]'s UFSC ID
10:51:18,285 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [89, -56, -39, -115, -26, ...]],byte[length=672, [-49, -107, 115, -57, -26, ...]],Client::TestCard:[email protected]'s UFSC ID,]
10:51:18,285 TRACE [Client::] ClientEntity - clientAliasReceived=TestCard:[email protected]'s UFSC ID
10:51:18,285 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [89, -56, -39, -115, -26, ...]],byte[length=672, [-49, -107, 115, -57, -26, ...]],]
10:51:57,987 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
10:51:57,987 TRACE [AWT-EventQueue-1] ClientEntity - [Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE, TestCard:[email protected]'s UFSC ID]
10:53:13,289 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
10:53:13,289 TRACE [Register-Thread] ClientEntity - code=SICRANO
10:53:13,289 TRACE [Register-Thread] ClientEntity - selectedClient=Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE
10:53:13,289 TRACE [Register-Thread] ClientEntity - withBiometrics=true
10:53:13,289 TRACE [Register-Thread] FutronicReader - enroll()
10:53:13,289 DEBUG [Register-Thread] FutronicReader - Starting enrolling user SICRANO
10:53:13,289 DEBUG [Register-Thread] FutronicReader - Creating enroll object
10:53:13,696 TRACE [Register-Thread] FutronicReader - before wait() for enroll()
10:53:14,273 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=1, total=5]
10:53:26,191 TRACE [Enrollment operation] ClientApplet - updateImage() event
10:53:26,191 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
10:53:26,317 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=1, total=5]
10:53:26,894 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=2, total=5]
10:53:30,903 TRACE [Enrollment operation] ClientApplet - updateImage() event
10:53:30,903 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
10:53:31,060 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=2, total=5]
10:53:31,809 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=3, total=5]
10:53:34,586 TRACE [Enrollment operation] ClientApplet - updateImage() event
10:53:34,586 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
10:53:34,727 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=3, total=5]
10:53:35,476 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=4, total=5]
10:53:37,473 TRACE [Enrollment operation] ClientApplet - updateImage() event
10:53:37,473 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
10:53:37,646 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=4, total=5]
10:53:38,582 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=5, total=5]
10:53:39,987 TRACE [Enrollment operation] ClientApplet - updateImage() event
10:53:39,987 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
10:53:40,159 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=5, total=5]
10:53:40,190 DEBUG [Enrollment operation] ClientApplet - Fingerprint enrollment complete. Success? true
10:53:48,505 TRACE [Register-Thread] FutronicReader - after wait() for enroll
10:53:48,505 TRACE [Register-Thread] FutronicReader - Finishing enrolling user SICRANO templateLength=2667, quality=6
10:53:48,505 DEBUG [Register-Thread] FutronicReader - Disposing labsec.auth.biometric.Futronic.NewFutronicEnrollment
10:53:48,506 TRACE [Register-Thread] ClientEntity - userRecord=FutronicUserRecord [key=SICRANO, template=[2667]]
10:53:51,689 TRACE [Register-Thread] ClientEntity - innerMessage=Message [type=REGISTER, data=-791822159,ClientData [cpf=666.999.333-45, ],TestCard:[email protected]'s UFSC ID,]
10:53:51,689 TRACE [Register-Thread] ClientEntity - nA=-791822159
10:53:51,689 TRACE [Register-Thread] ClientEntity - cpf=666.999.333-45
10:53:51,689 TRACE [Register-Thread] ClientEntity - A=TestCard:[email protected]'s UFSC ID
10:53:51,704 TRACE [Register-Thread] ClientEntity - new data=ClientData [cpf=666.999.333-45, code=SICRANO, template=[2667]]]
10:53:52,610 TRACE [Register-Thread] ClientEntity - resultInner=Message [type=REGISTER, data=-791822159,ClientData [cpf=666.999.333-45, code=SICRANO, template=[2667]]],byte[length=128, [69, 106, -34, -72, 93, ...]],]
10:53:53,718 TRACE [Register-Thread] ClientEntity - resultOuter=Message [type=REGISTER, data=byte[length=128, [-37, -14, 6, -73, 82, ...]],byte[length=3432, [99, -1, 44, -114, 14, ...]],Admin::TestCard:[email protected]'s UFSC ID,]
10:53:53,718 DEBUG [Register-Thread] BaseEntity - Client:: is transmitting object over stream: Message [type=REGISTER, data=byte[length=128, [-37, -14, 6, -73, 82, ...]],byte[length=3432, [99, -1, 44, -114, 14, ...]],Admin::TestCard:[email protected]'s UFSC ID,]
10:53:53,719 DEBUG [Register-Thread] ClientEntity - End of register operation
10:59:38,113 ERROR [Client::] BaseEntity - Client:: Comm Exception
java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:250)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:220)
at java.lang.Thread.run(Thread.java:662)
10:59:38,114 DEBUG [Client::] BaseEntity - Closing connection for Client::
10:59:38,114 DEBUG [Client::] BaseEntity - Client:: is transmitting object over stream: Bye!
10:59:38,116 DEBUG [Client::] BaseEntity - Error while closing Client:: socket
javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1293)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkWrite(SSLSocketImpl.java:1305)
at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:43)
at java.io.OutputStream.write(OutputStream.java:58)
at softplan.prototype.common.BaseEntity.writeObject(BaseEntity.java:323)
at softplan.prototype.common.BaseEntity.disconnect(BaseEntity.java:196)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:231)
at java.lang.Thread.run(Thread.java:662)
Caused by: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:190)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1649)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1612)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1576)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1521)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:86)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:250)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:220)
... 1 more
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
... 4 more
10:59:38,147 DEBUG [Client::] BaseEntity - End of Client:: Entity thread.
11:00:01,877 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - stop()
11:00:01,877 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - destroy()
11:00:01,877 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] BaseEntity - Client::'s SSLSocket is connected? false
11:00:01,877 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] FutronicReader - uninitialize()
11:06:05,776 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
11:06:05,823 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
11:06:05,870 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
11:06:06,416 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
11:06:06,448 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
11:06:06,448 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
11:06:06,448 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
11:06:06,463 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
11:06:06,463 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
11:06:06,463 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
11:06:06,463 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
11:06:06,463 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
11:06:06,495 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
11:06:08,476 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
11:06:08,476 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
11:06:08,476 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
11:06:08,633 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
11:06:08,633 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
11:06:09,085 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
11:06:09,149 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@1d04653
11:06:09,149 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@b8f82d
11:06:09,242 DEBUG [Client::] BaseEntity - Client:: is handling server requests
11:06:09,242 TRACE [Client::] BaseEntity - total bytes read: 1175
11:06:09,273 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [88, -43, -112, -48, -113, ...]],byte[length=672, [63, -71, -38, 19, 30, ...]],Client::Códigos FULANO DA SILVA TESTEs AC TSE final TESTE,]
11:06:09,273 TRACE [Client::] ClientApplet - messageReceived(): Códigos FULANO DA SILVA TESTEs AC TSE final TESTE
11:06:09,273 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [88, -43, -112, -48, -113, ...]],byte[length=672, [63, -71, -38, 19, 30, ...]],Client::Códigos FULANO DA SILVA TESTEs AC TSE final TESTE,]
11:06:09,273 TRACE [Client::] ClientEntity - clientAliasReceived=Códigos FULANO DA SILVA TESTEs AC TSE final TESTE
11:06:09,273 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [88, -43, -112, -48, -113, ...]],byte[length=672, [63, -71, -38, 19, 30, ...]],]
11:06:09,273 TRACE [Client::] BaseEntity - total bytes read: 1175
11:06:09,273 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [-115, -67, 26, -1, -105, ...]],byte[length=672, [5, -61, -59, -75, 19, ...]],Client::Códigos FULANO DA SILVA TESTEs AC TSE final TESTE,]
11:06:09,273 TRACE [Client::] ClientApplet - messageReceived(): Códigos FULANO DA SILVA TESTEs AC TSE final TESTE
11:06:09,273 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [-115, -67, 26, -1, -105, ...]],byte[length=672, [5, -61, -59, -75, 19, ...]],Client::Códigos FULANO DA SILVA TESTEs AC TSE final TESTE,]
11:06:09,273 TRACE [Client::] ClientEntity - clientAliasReceived=Códigos FULANO DA SILVA TESTEs AC TSE final TESTE
11:06:09,273 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [-115, -67, 26, -1, -105, ...]],byte[length=672, [5, -61, -59, -75, 19, ...]],]
11:06:17,947 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
11:06:17,947 TRACE [AWT-EventQueue-1] ClientEntity - [Códigos FULANO DA SILVA TESTEs AC TSE final TESTE]
11:06:33,096 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
11:06:33,096 TRACE [Register-Thread] ClientEntity - code=123456
11:06:33,096 TRACE [Register-Thread] ClientEntity - selectedClient=Códigos FULANO DA SILVA TESTEs AC TSE final TESTE
11:06:33,096 TRACE [Register-Thread] ClientEntity - withBiometrics=true
11:06:33,096 TRACE [Register-Thread] FutronicReader - enroll()
11:06:33,096 DEBUG [Register-Thread] FutronicReader - Starting enrolling user 123456
11:06:33,096 DEBUG [Register-Thread] FutronicReader - Creating enroll object
11:06:33,143 TRACE [Register-Thread] FutronicReader - before wait() for enroll()
11:06:33,752 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=1, total=5]
11:06:39,196 TRACE [Enrollment operation] ClientApplet - updateImage() event
11:06:39,196 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
11:06:39,338 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=1, total=5]
11:06:39,899 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=2, total=5]
11:06:42,099 TRACE [Enrollment operation] ClientApplet - updateImage() event
11:06:42,099 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
11:06:42,271 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=2, total=5]
11:06:43,036 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=3, total=5]
11:06:44,923 TRACE [Enrollment operation] ClientApplet - updateImage() event
11:06:44,923 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
11:06:45,096 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=3, total=5]
11:06:46,032 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=4, total=5]
11:06:47,624 TRACE [Enrollment operation] ClientApplet - updateImage() event
11:06:47,640 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
11:06:47,781 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=4, total=5]
11:06:48,717 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=5, total=5]
11:06:50,528 TRACE [Enrollment operation] ClientApplet - updateImage() event
11:06:50,528 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
11:06:50,685 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=5, total=5]
11:06:50,700 DEBUG [Enrollment operation] ClientApplet - Fingerprint enrollment complete. Success? true
11:07:00,107 TRACE [Register-Thread] FutronicReader - after wait() for enroll
11:07:00,107 TRACE [Register-Thread] FutronicReader - Finishing enrolling user 123456 templateLength=2001, quality=10
11:07:00,107 DEBUG [Register-Thread] FutronicReader - Disposing labsec.auth.biometric.Futronic.NewFutronicEnrollment
11:07:00,107 TRACE [Register-Thread] ClientEntity - userRecord=FutronicUserRecord [key=123456, template=[2001]]
11:07:03,260 TRACE [Register-Thread] ClientEntity - innerMessage=Message [type=REGISTER, data=1202667858,ClientData [cpf=123.456.789-10, ],Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
11:07:03,260 TRACE [Register-Thread] ClientEntity - nA=1202667858
11:07:03,260 TRACE [Register-Thread] ClientEntity - cpf=123.456.789-10
11:07:03,260 TRACE [Register-Thread] ClientEntity - A=Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE
11:07:03,260 TRACE [Register-Thread] ClientEntity - new data=ClientData [cpf=123.456.789-10, code=123456, template=[2001]]]
11:07:04,197 TRACE [Register-Thread] ClientEntity - resultInner=Message [type=REGISTER, data=1202667858,ClientData [cpf=123.456.789-10, code=123456, template=[2001]]],byte[length=128, [32, -92, 12, 77, 113, ...]],]
11:07:05,477 TRACE [Register-Thread] ClientEntity - resultOuter=Message [type=REGISTER, data=byte[length=128, [-82, 119, -36, -112, 38, ...]],byte[length=2768, [-24, -28, -95, 35, 61, ...]],Admin::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
11:07:05,477 DEBUG [Register-Thread] BaseEntity - Client:: is transmitting object over stream: Message [type=REGISTER, data=byte[length=128, [-82, 119, -36, -112, 38, ...]],byte[length=2768, [-24, -28, -95, 35, 61, ...]],Admin::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
11:07:05,477 DEBUG [Register-Thread] ClientEntity - End of register operation
11:10:19,321 ERROR [Client::] BaseEntity - Client:: Comm Exception
java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:250)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:220)
at java.lang.Thread.run(Thread.java:662)
11:10:19,331 DEBUG [Client::] BaseEntity - Closing connection for Client::
11:10:19,331 DEBUG [Client::] BaseEntity - Client:: is transmitting object over stream: Bye!
11:10:19,331 DEBUG [Client::] BaseEntity - Error while closing Client:: socket
javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1293)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkWrite(SSLSocketImpl.java:1305)
at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:43)
at java.io.OutputStream.write(OutputStream.java:58)
at softplan.prototype.common.BaseEntity.writeObject(BaseEntity.java:323)
at softplan.prototype.common.BaseEntity.disconnect(BaseEntity.java:196)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:231)
at java.lang.Thread.run(Thread.java:662)
Caused by: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:190)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1649)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1612)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1576)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1521)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:86)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:250)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:220)
... 1 more
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
... 4 more
11:10:19,333 DEBUG [Client::] BaseEntity - End of Client:: Entity thread.
11:10:30,696 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - stop()
11:10:30,696 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - destroy()
11:10:30,696 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] BaseEntity - Client::'s SSLSocket is connected? false
11:10:30,696 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] FutronicReader - uninitialize()
12:21:36,946 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
12:21:37,046 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
12:21:37,114 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
12:21:38,879 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
12:21:38,935 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
12:21:38,936 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
12:21:38,942 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
12:21:38,971 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
12:21:38,972 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
12:21:38,972 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
12:21:38,973 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
12:21:38,973 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
12:21:39,039 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
12:23:08,444 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
12:23:08,458 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
12:23:08,459 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
12:23:08,597 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
12:23:08,597 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
12:23:09,076 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
12:23:09,149 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@41c977
12:23:09,149 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@111ae04
12:23:09,218 DEBUG [Client::] BaseEntity - Client:: is handling server requests
12:23:09,219 TRACE [Client::] BaseEntity - total bytes read: 1175
12:23:09,241 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [17, -5, 127, 92, 109, ...]],byte[length=672, [8, 110, -107, -97, -96, ...]],Client::Códigos FULANO DA SILVA TESTEs AC TSE final TESTE,]
12:23:09,242 TRACE [Client::] ClientApplet - messageReceived(): Códigos FULANO DA SILVA TESTEs AC TSE final TESTE
12:23:09,243 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [17, -5, 127, 92, 109, ...]],byte[length=672, [8, 110, -107, -97, -96, ...]],Client::Códigos FULANO DA SILVA TESTEs AC TSE final TESTE,]
12:23:09,243 TRACE [Client::] ClientEntity - clientAliasReceived=Códigos FULANO DA SILVA TESTEs AC TSE final TESTE
12:23:09,243 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [17, -5, 127, 92, 109, ...]],byte[length=672, [8, 110, -107, -97, -96, ...]],]
12:23:21,233 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
12:23:21,233 TRACE [AWT-EventQueue-1] ClientEntity - [Códigos FULANO DA SILVA TESTEs AC TSE final TESTE]
12:23:37,086 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
12:23:37,087 TRACE [Register-Thread] ClientEntity - code=teste
12:23:37,087 TRACE [Register-Thread] ClientEntity - selectedClient=Códigos FULANO DA SILVA TESTEs AC TSE final TESTE
12:23:37,088 TRACE [Register-Thread] ClientEntity - withBiometrics=true
12:23:37,088 TRACE [Register-Thread] FutronicReader - enroll()
12:23:37,094 DEBUG [Register-Thread] FutronicReader - Starting enrolling user teste
12:23:37,095 DEBUG [Register-Thread] FutronicReader - Creating enroll object
12:23:37,165 TRACE [Register-Thread] FutronicReader - before wait() for enroll()
12:23:37,735 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=1, total=5]
12:23:47,420 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:23:47,422 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:23:47,552 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=1, total=5]
12:23:47,932 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=2, total=5]
12:23:50,347 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:23:50,348 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:23:50,516 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=2, total=5]
12:23:51,280 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=3, total=5]
12:23:53,083 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:23:53,084 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:23:53,250 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=3, total=5]
12:23:53,812 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=4, total=5]
12:23:55,916 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:23:55,917 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:23:56,055 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=4, total=5]
12:23:56,623 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=5, total=5]
12:23:58,234 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:23:58,235 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:23:58,409 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=5, total=5]
12:23:58,432 DEBUG [Enrollment operation] ClientApplet - Fingerprint enrollment complete. Success? true
12:24:00,718 TRACE [Register-Thread] FutronicReader - after wait() for enroll
12:24:00,721 TRACE [Register-Thread] FutronicReader - Finishing enrolling user teste templateLength=2667, quality=6
12:24:00,723 DEBUG [Register-Thread] FutronicReader - Disposing labsec.auth.biometric.Futronic.NewFutronicEnrollment
12:24:00,723 TRACE [Register-Thread] ClientEntity - userRecord=FutronicUserRecord [key=teste, template=[2667]]
12:24:04,179 TRACE [Register-Thread] ClientEntity - innerMessage=Message [type=REGISTER, data=622388639,ClientData [cpf=123.456.789-10, ],Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:24:04,180 TRACE [Register-Thread] ClientEntity - nA=622388639
12:24:45,739 TRACE [Register-Thread] ClientEntity - cpf=123.456.789-10
12:24:49,992 TRACE [Register-Thread] ClientEntity - A=Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE
12:25:18,160 TRACE [Register-Thread] ClientEntity - new data=ClientData [cpf=123.456.789-10, code=teste, template=[2667]]]
12:25:19,309 TRACE [Register-Thread] ClientEntity - resultInner=Message [type=REGISTER, data=622388639,ClientData [cpf=123.456.789-10, code=teste, template=[2667]]],byte[length=128, [-117, 111, -55, -127, 83, ...]],]
12:25:20,577 TRACE [Register-Thread] ClientEntity - resultOuter=Message [type=REGISTER, data=byte[length=128, [16, -88, 62, -89, 46, ...]],byte[length=3432, [3, 111, -124, -20, 100, ...]],Admin::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:25:20,579 DEBUG [Register-Thread] BaseEntity - Client:: is transmitting object over stream: Message [type=REGISTER, data=byte[length=128, [16, -88, 62, -89, 46, ...]],byte[length=3432, [3, 111, -124, -20, 100, ...]],Admin::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:25:20,589 DEBUG [Register-Thread] ClientEntity - End of register operation
12:27:29,838 ERROR [Client::] BaseEntity - Client:: Comm Exception
java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:252)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:222)
at java.lang.Thread.run(Thread.java:662)
12:27:29,872 DEBUG [Client::] BaseEntity - Closing connection for Client::
12:27:29,898 DEBUG [Client::] BaseEntity - Client:: is transmitting object over stream: Bye!
12:27:29,898 DEBUG [Client::] BaseEntity - Error while closing Client:: socket
javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1293)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkWrite(SSLSocketImpl.java:1305)
at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:43)
at java.io.OutputStream.write(OutputStream.java:58)
at softplan.prototype.common.BaseEntity.writeObject(BaseEntity.java:325)
at softplan.prototype.common.BaseEntity.disconnect(BaseEntity.java:197)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:233)
at java.lang.Thread.run(Thread.java:662)
Caused by: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:190)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1649)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1612)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1576)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1521)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:86)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:252)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:222)
... 1 more
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
... 4 more
12:27:29,903 DEBUG [Client::] BaseEntity - End of Client:: Entity thread.
12:28:56,902 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
12:28:56,954 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
12:28:56,989 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
12:28:57,510 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
12:28:57,537 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
12:28:57,538 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
12:28:57,540 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
12:28:57,551 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
12:28:57,551 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
12:28:57,552 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
12:28:57,552 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
12:28:57,552 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
12:28:57,578 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
12:28:59,177 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
12:28:59,186 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
12:28:59,187 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
12:28:59,325 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
12:28:59,326 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
12:28:59,830 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
12:28:59,892 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@388993
12:28:59,892 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@1d04653
12:28:59,951 DEBUG [Client::] BaseEntity - Client:: is handling server requests
12:28:59,952 TRACE [Client::] BaseEntity - total bytes read: 1167
12:28:59,968 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [96, 2, 0, -116, 64, ...]],byte[length=672, [-101, 56, -18, -63, -91, ...]],Client::TestCard:[email protected]'s UFSC ID,]
12:28:59,969 TRACE [Client::] ClientApplet - messageReceived(): TestCard:[email protected]'s UFSC ID
12:28:59,969 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [96, 2, 0, -116, 64, ...]],byte[length=672, [-101, 56, -18, -63, -91, ...]],Client::TestCard:[email protected]'s UFSC ID,]
12:28:59,970 TRACE [Client::] ClientEntity - clientAliasReceived=TestCard:[email protected]'s UFSC ID
12:28:59,970 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [96, 2, 0, -116, 64, ...]],byte[length=672, [-101, 56, -18, -63, -91, ...]],]
12:29:00,915 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
12:29:00,916 TRACE [AWT-EventQueue-1] ClientEntity - [TestCard:[email protected]'s UFSC ID]
12:29:13,616 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
12:29:13,617 TRACE [Register-Thread] ClientEntity - code=teste
12:29:13,618 TRACE [Register-Thread] ClientEntity - selectedClient=TestCard:[email protected]'s UFSC ID
12:29:13,618 TRACE [Register-Thread] ClientEntity - withBiometrics=true
12:29:13,619 TRACE [Register-Thread] FutronicReader - enroll()
12:29:13,619 DEBUG [Register-Thread] FutronicReader - Starting enrolling user teste
12:29:13,620 DEBUG [Register-Thread] FutronicReader - Creating enroll object
12:29:13,663 TRACE [Register-Thread] FutronicReader - before wait() for enroll()
12:29:14,268 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=1, total=5]
12:29:21,129 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:29:21,130 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:29:21,289 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=1, total=5]
12:29:21,650 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=2, total=5]
12:29:25,046 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:29:25,047 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:29:25,212 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=2, total=5]
12:29:26,165 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=3, total=5]
12:29:28,400 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:29:28,401 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:29:28,568 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=3, total=5]
12:29:29,532 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=4, total=5]
12:29:31,954 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:29:31,954 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:29:32,119 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=4, total=5]
12:29:33,449 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=5, total=5]
12:29:35,255 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:29:35,256 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:29:35,408 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=5, total=5]
12:29:35,430 DEBUG [Enrollment operation] ClientApplet - Fingerprint enrollment complete. Success? true
12:29:37,894 TRACE [Register-Thread] FutronicReader - after wait() for enroll
12:29:37,895 TRACE [Register-Thread] FutronicReader - Finishing enrolling user teste templateLength=3333, quality=3
12:29:37,897 DEBUG [Register-Thread] FutronicReader - Disposing labsec.auth.biometric.Futronic.NewFutronicEnrollment
12:29:37,898 TRACE [Register-Thread] ClientEntity - userRecord=FutronicUserRecord [key=teste, template=[3333]]
12:29:40,849 TRACE [Register-Thread] ClientEntity - innerMessage=Message [type=REGISTER, data=1534737403,ClientData [cpf=123.456.789-10, ],Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:29:40,851 TRACE [Register-Thread] ClientEntity - nA=1534737403
12:29:40,852 TRACE [Register-Thread] ClientEntity - cpf=123.456.789-10
12:29:40,853 TRACE [Register-Thread] ClientEntity - A=Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE
12:29:40,854 TRACE [Register-Thread] ClientEntity - new data=ClientData [cpf=123.456.789-10, code=teste, template=[3333]]]
12:29:41,481 TRACE [Register-Thread] ClientEntity - resultInner=Message [type=REGISTER, data=1534737403,ClientData [cpf=123.456.789-10, code=teste, template=[3333]]],byte[length=128, [25, -10, 92, -40, -35, ...]],]
12:29:42,947 TRACE [Register-Thread] ClientEntity - resultOuter=Message [type=REGISTER, data=byte[length=128, [-62, -44, -70, -106, 54, ...]],byte[length=4096, [-49, -55, -116, -53, -75, ...]],Admin::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:29:42,948 DEBUG [Register-Thread] BaseEntity - Client:: is transmitting object over stream: Message [type=REGISTER, data=byte[length=128, [-62, -44, -70, -106, 54, ...]],byte[length=4096, [-49, -55, -116, -53, -75, ...]],Admin::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:29:42,955 DEBUG [Register-Thread] ClientEntity - End of register operation
12:34:37,552 ERROR [Client::] BaseEntity - Client:: Comm Exception
java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:252)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:222)
at java.lang.Thread.run(Thread.java:662)
12:34:37,558 DEBUG [Client::] BaseEntity - Closing connection for Client::
12:34:37,558 DEBUG [Client::] BaseEntity - Client:: is transmitting object over stream: Bye!
12:34:37,558 DEBUG [Client::] BaseEntity - Error while closing Client:: socket
javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1293)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkWrite(SSLSocketImpl.java:1305)
at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:43)
at java.io.OutputStream.write(OutputStream.java:58)
at softplan.prototype.common.BaseEntity.writeObject(BaseEntity.java:325)
at softplan.prototype.common.BaseEntity.disconnect(BaseEntity.java:197)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:233)
at java.lang.Thread.run(Thread.java:662)
Caused by: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:190)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1649)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1612)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1576)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1521)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:86)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:252)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:222)
... 1 more
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
... 4 more
12:34:37,559 DEBUG [Client::] BaseEntity - End of Client:: Entity thread.
12:37:52,108 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
12:37:52,162 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
12:37:52,198 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
12:37:52,783 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
12:37:52,819 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
12:37:52,820 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
12:37:52,822 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
12:37:52,838 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
12:37:52,838 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
12:37:52,838 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
12:37:52,839 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
12:37:52,839 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
12:37:52,868 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
12:37:54,145 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
12:37:54,154 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
12:37:54,155 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
12:37:54,318 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
12:37:54,320 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
12:37:54,825 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
12:37:54,879 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@1d04653
12:37:54,880 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@b8f82d
12:37:54,944 DEBUG [Client::] BaseEntity - Client:: is handling server requests
12:37:54,946 TRACE [Client::] BaseEntity - total bytes read: 1167
12:37:54,961 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [-105, -101, 50, 13, -92, ...]],byte[length=672, [-90, -65, 52, -87, 106, ...]],Client::TestCard:[email protected]'s UFSC ID,]
12:37:54,962 TRACE [Client::] ClientApplet - messageReceived(): TestCard:[email protected]'s UFSC ID
12:37:54,963 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [-105, -101, 50, 13, -92, ...]],byte[length=672, [-90, -65, 52, -87, 106, ...]],Client::TestCard:[email protected]'s UFSC ID,]
12:37:54,963 TRACE [Client::] ClientEntity - clientAliasReceived=TestCard:[email protected]'s UFSC ID
12:37:54,963 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [-105, -101, 50, 13, -92, ...]],byte[length=672, [-90, -65, 52, -87, 106, ...]],]
12:38:01,235 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
12:38:01,236 TRACE [AWT-EventQueue-1] ClientEntity - [TestCard:[email protected]'s UFSC ID]
12:38:12,050 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
12:38:12,052 TRACE [Register-Thread] ClientEntity - code=teste
12:38:12,054 TRACE [Register-Thread] ClientEntity - selectedClient=TestCard:[email protected]'s UFSC ID
12:38:12,055 TRACE [Register-Thread] ClientEntity - withBiometrics=true
12:38:12,056 TRACE [Register-Thread] FutronicReader - enroll()
12:38:12,058 DEBUG [Register-Thread] FutronicReader - Starting enrolling user teste
12:38:12,059 DEBUG [Register-Thread] FutronicReader - Creating enroll object
12:38:12,102 TRACE [Register-Thread] FutronicReader - before wait() for enroll()
12:38:12,660 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=1, total=5]
12:38:21,939 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:38:21,941 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:38:22,113 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=1, total=5]
12:38:22,699 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=2, total=5]
12:38:24,106 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:38:24,107 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:38:24,268 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=2, total=5]
12:38:25,021 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=3, total=5]
12:38:26,232 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:38:26,233 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:38:26,361 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=3, total=5]
12:38:27,493 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=4, total=5]
12:38:28,501 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:38:28,502 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:38:28,636 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=4, total=5]
12:38:29,772 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=5, total=5]
12:38:30,581 TRACE [Enrollment operation] ClientApplet - updateImage() event
12:38:30,582 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
12:38:30,725 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=5, total=5]
12:38:30,740 DEBUG [Enrollment operation] ClientApplet - Fingerprint enrollment complete. Success? true
12:38:33,704 TRACE [Register-Thread] FutronicReader - after wait() for enroll
12:38:33,706 TRACE [Register-Thread] FutronicReader - Finishing enrolling user teste templateLength=2001, quality=8
12:38:33,707 DEBUG [Register-Thread] FutronicReader - Disposing labsec.auth.biometric.Futronic.NewFutronicEnrollment
12:38:33,708 TRACE [Register-Thread] ClientEntity - userRecord=FutronicUserRecord [key=teste, template=[2001]]
12:38:36,664 TRACE [Register-Thread] ClientEntity - innerMessage=Message [type=REGISTER, data=1735556863,ClientData [cpf=123.456.789-10, ],Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:38:36,666 TRACE [Register-Thread] ClientEntity - nA=1735556863
12:38:36,667 TRACE [Register-Thread] ClientEntity - cpf=123.456.789-10
12:38:36,668 TRACE [Register-Thread] ClientEntity - A=Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE
12:38:36,669 TRACE [Register-Thread] ClientEntity - new data=ClientData [cpf=123.456.789-10, code=teste, template=[2001]]]
12:38:37,298 TRACE [Register-Thread] ClientEntity - resultInner=Message [type=REGISTER, data=1735556863,ClientData [cpf=123.456.789-10, code=teste, template=[2001]]],byte[length=128, [91, -128, -46, -74, -16, ...]],]
12:38:38,387 TRACE [Register-Thread] ClientEntity - resultOuter=Message [type=REGISTER, data=byte[length=128, [81, -82, 5, -124, 30, ...]],byte[length=2768, [52, 104, 82, -85, 76, ...]],Admin::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:38:38,387 DEBUG [Register-Thread] BaseEntity - Client:: is transmitting object over stream: Message [type=REGISTER, data=byte[length=128, [81, -82, 5, -124, 30, ...]],byte[length=2768, [52, 104, 82, -85, 76, ...]],Admin::Códigos SICRANO DA SILVA TESTEs AC TSE final TESTE,]
12:38:38,399 DEBUG [Register-Thread] ClientEntity - End of register operation
12:56:25,118 ERROR [Client::] BaseEntity - Client:: Comm Exception
java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:252)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:222)
at java.lang.Thread.run(Thread.java:662)
12:56:25,130 DEBUG [Client::] BaseEntity - Closing connection for Client::
12:56:25,131 DEBUG [Client::] BaseEntity - Client:: is transmitting object over stream: Bye!
12:56:25,131 DEBUG [Client::] BaseEntity - Error while closing Client:: socket
javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1293)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkWrite(SSLSocketImpl.java:1305)
at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:43)
at java.io.OutputStream.write(OutputStream.java:58)
at softplan.prototype.common.BaseEntity.writeObject(BaseEntity.java:325)
at softplan.prototype.common.BaseEntity.disconnect(BaseEntity.java:197)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:233)
at java.lang.Thread.run(Thread.java:662)
Caused by: javax.net.ssl.SSLException: java.net.SocketException: Connection reset
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:190)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1649)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1612)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1576)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1521)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:86)
at java.io.InputStream.read(InputStream.java:85)
at softplan.prototype.common.BaseEntity.handleServerRequestss(BaseEntity.java:252)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:222)
... 1 more
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168)
at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:755)
at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:75)
... 4 more
12:56:25,140 DEBUG [Client::] BaseEntity - End of Client:: Entity thread.
13:02:29,484 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
13:02:29,537 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
13:02:29,572 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
13:02:30,101 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
13:02:30,130 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
13:02:30,130 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
13:02:30,133 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
13:02:30,144 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 1
13:02:30,144 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
13:02:30,144 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
13:02:30,145 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
13:02:30,145 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
13:02:30,170 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
13:02:31,568 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
13:02:31,577 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
13:02:31,578 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
13:02:31,746 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
13:02:31,747 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
13:02:32,161 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
13:02:32,226 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@d0a5d9
13:02:32,227 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@388993
13:02:32,290 DEBUG [Client::] BaseEntity - Client:: is handling server requests
13:02:32,291 TRACE [Client::] BaseEntity - total bytes read: 1167
13:02:32,308 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [106, 52, 116, 81, 88, ...]],byte[length=672, [-104, 17, -124, -121, 94, ...]],Client::TestCard:[email protected]'s UFSC ID,]
13:02:32,309 TRACE [Client::] ClientApplet - messageReceived(): TestCard:[email protected]'s UFSC ID
13:02:32,309 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [106, 52, 116, 81, 88, ...]],byte[length=672, [-104, 17, -124, -121, 94, ...]],Client::TestCard:[email protected]'s UFSC ID,]
13:02:32,309 TRACE [Client::] ClientEntity - clientAliasReceived=TestCard:[email protected]'s UFSC ID
13:02:32,310 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [106, 52, 116, 81, 88, ...]],byte[length=672, [-104, 17, -124, -121, 94, ...]],]
13:02:35,650 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
13:02:35,651 TRACE [AWT-EventQueue-1] ClientEntity - [TestCard:[email protected]'s UFSC ID]
13:02:52,890 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
13:02:52,891 TRACE [Register-Thread] ClientEntity - code=teste
13:02:52,892 TRACE [Register-Thread] ClientEntity - selectedClient=TestCard:[email protected]'s UFSC ID
13:02:52,892 TRACE [Register-Thread] ClientEntity - withBiometrics=true
13:02:52,893 TRACE [Register-Thread] FutronicReader - enroll()
13:02:52,894 DEBUG [Register-Thread] FutronicReader - Starting enrolling user teste
13:02:52,894 DEBUG [Register-Thread] FutronicReader - Creating enroll object
13:02:52,951 ERROR [Register-Thread] FutronicReader - While enrolling user=teste
java.lang.IllegalArgumentException
at com.futronic.SDKHelper.FutronicEnrollment.setMaxModels(FutronicEnrollment.java:171)
at labsec.auth.biometric.Futronic.FutronicReader.createEnrollmentObject(FutronicReader.java:94)
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:168)
at softplan.prototype.client.ClientEntity$1.run(ClientEntity.java:142)
at java.lang.Thread.run(Thread.java:662)
13:02:52,962 ERROR [Register-Thread] ClientApplet - Exception while executing user command
labsec.auth.biometric.BiometricEnrollmentException: java.lang.IllegalArgumentException
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:192)
at softplan.prototype.client.ClientEntity$1.run(ClientEntity.java:142)
at java.lang.Thread.run(Thread.java:662)
Caused by: java.lang.IllegalArgumentException
at com.futronic.SDKHelper.FutronicEnrollment.setMaxModels(FutronicEnrollment.java:171)
at labsec.auth.biometric.Futronic.FutronicReader.createEnrollmentObject(FutronicReader.java:94)
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:168)
... 2 more
13:03:29,592 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
13:03:29,593 TRACE [AWT-EventQueue-1] ClientEntity - [TestCard:[email protected]'s UFSC ID]
13:04:01,107 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
13:04:01,113 TRACE [Register-Thread] ClientEntity - code=123456
13:04:01,113 TRACE [Register-Thread] ClientEntity - selectedClient=TestCard:[email protected]'s UFSC ID
13:04:01,114 TRACE [Register-Thread] ClientEntity - withBiometrics=true
13:04:01,115 TRACE [Register-Thread] FutronicReader - enroll()
13:04:01,116 DEBUG [Register-Thread] FutronicReader - Starting enrolling user 123456
13:04:01,117 DEBUG [Register-Thread] FutronicReader - Creating enroll object
13:04:01,119 ERROR [Register-Thread] FutronicReader - While enrolling user=123456
com.futronic.SDKHelper.FutronicException: The current operation has already initialized the API.
at com.futronic.SDKHelper.FutronicSdkBase.<init>(FutronicSdkBase.java:248)
at com.futronic.SDKHelper.FutronicEnrollment.<init>(FutronicEnrollment.java:31)
at labsec.auth.biometric.Futronic.NewFutronicEnrollment.<init>(NewFutronicEnrollment.java:8)
at labsec.auth.biometric.Futronic.FutronicReader.createEnrollmentObject(FutronicReader.java:93)
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:168)
at softplan.prototype.client.ClientEntity$1.run(ClientEntity.java:142)
at java.lang.Thread.run(Thread.java:662)
13:04:01,122 ERROR [Register-Thread] ClientApplet - Exception while executing user command
labsec.auth.biometric.BiometricEnrollmentException: com.futronic.SDKHelper.FutronicException: The current operation has already initialized the API.
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:192)
at softplan.prototype.client.ClientEntity$1.run(ClientEntity.java:142)
at java.lang.Thread.run(Thread.java:662)
Caused by: com.futronic.SDKHelper.FutronicException: The current operation has already initialized the API.
at com.futronic.SDKHelper.FutronicSdkBase.<init>(FutronicSdkBase.java:248)
at com.futronic.SDKHelper.FutronicEnrollment.<init>(FutronicEnrollment.java:31)
at labsec.auth.biometric.Futronic.NewFutronicEnrollment.<init>(NewFutronicEnrollment.java:8)
at labsec.auth.biometric.Futronic.FutronicReader.createEnrollmentObject(FutronicReader.java:93)
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:168)
... 2 more
13:10:14,403 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
13:10:14,494 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
13:10:14,538 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
13:10:16,264 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
13:10:16,323 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
13:10:16,324 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
13:10:16,332 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
13:10:16,357 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 2
13:10:16,358 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
13:10:16,358 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
13:10:16,358 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
13:10:16,359 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
13:10:16,431 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
13:10:22,871 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
13:10:22,936 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
13:10:22,989 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
13:10:23,573 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
13:10:23,600 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
13:10:23,601 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
13:10:23,603 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
13:10:23,615 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 2
13:10:23,616 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
13:10:23,616 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
13:10:23,616 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
13:10:23,616 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
13:10:23,642 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
13:10:24,644 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
13:10:24,653 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
13:10:24,654 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
13:10:24,789 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
13:10:24,789 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
13:10:26,263 ERROR [Client::] BaseEntity - Client:: Comm Exception
java.net.ConnectException: Connection refused: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
at java.net.Socket.connect(Socket.java:529)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:559)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.<init>(SSLSocketImpl.java:360)
at com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl.createSocket(SSLSocketFactoryImpl.java:71)
at softplan.prototype.common.BaseEntity.connect(BaseEntity.java:301)
at softplan.prototype.common.BaseEntity$1.run(BaseEntity.java:221)
at java.lang.Thread.run(Thread.java:662)
13:10:26,280 DEBUG [Client::] BaseEntity - Closing connection for Client::
13:10:26,280 DEBUG [Client::] BaseEntity - End of Client:: Entity thread.
13:10:26,598 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
13:10:26,599 TRACE [AWT-EventQueue-1] ClientEntity - []
13:17:42,629 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
13:17:42,643 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
13:17:42,644 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
13:17:42,798 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
13:17:42,798 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
13:17:43,314 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
13:17:43,372 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@134c0a6
13:17:43,372 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@53f0a8
13:17:43,432 DEBUG [Client::] BaseEntity - Client:: is handling server requests
13:17:43,434 TRACE [Client::] BaseEntity - total bytes read: 1167
13:17:43,456 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [-128, -93, -75, -121, -20, ...]],byte[length=672, [75, 69, 69, 122, 57, ...]],Client::TestCard:[email protected]'s UFSC ID,]
13:17:43,457 TRACE [Client::] ClientApplet - messageReceived(): TestCard:[email protected]'s UFSC ID
13:17:43,458 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [-128, -93, -75, -121, -20, ...]],byte[length=672, [75, 69, 69, 122, 57, ...]],Client::TestCard:[email protected]'s UFSC ID,]
13:17:43,458 TRACE [Client::] ClientEntity - clientAliasReceived=TestCard:[email protected]'s UFSC ID
13:17:43,458 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [-128, -93, -75, -121, -20, ...]],byte[length=672, [75, 69, 69, 122, 57, ...]],]
13:17:44,538 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
13:17:44,540 TRACE [AWT-EventQueue-1] ClientEntity - [TestCard:[email protected]'s UFSC ID]
13:17:58,710 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
13:17:58,717 TRACE [Register-Thread] ClientEntity - code=123456
13:17:58,721 TRACE [Register-Thread] ClientEntity - selectedClient=TestCard:[email protected]'s UFSC ID
13:17:58,723 TRACE [Register-Thread] ClientEntity - withBiometrics=true
13:17:58,726 TRACE [Register-Thread] FutronicReader - enroll()
13:17:58,727 DEBUG [Register-Thread] FutronicReader - Starting enrolling user 123456
13:17:58,728 DEBUG [Register-Thread] FutronicReader - Creating enroll object
13:17:58,764 ERROR [Register-Thread] FutronicReader - While enrolling user=123456
java.lang.IllegalArgumentException
at com.futronic.SDKHelper.FutronicEnrollment.setMaxModels(FutronicEnrollment.java:171)
at labsec.auth.biometric.Futronic.FutronicReader.createEnrollmentObject(FutronicReader.java:94)
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:168)
at softplan.prototype.client.ClientEntity$1.run(ClientEntity.java:142)
at java.lang.Thread.run(Thread.java:662)
13:17:58,771 ERROR [Register-Thread] ClientApplet - Exception while executing user command
labsec.auth.biometric.BiometricEnrollmentException: java.lang.IllegalArgumentException
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:192)
at softplan.prototype.client.ClientEntity$1.run(ClientEntity.java:142)
at java.lang.Thread.run(Thread.java:662)
Caused by: java.lang.IllegalArgumentException
at com.futronic.SDKHelper.FutronicEnrollment.setMaxModels(FutronicEnrollment.java:171)
at labsec.auth.biometric.Futronic.FutronicReader.createEnrollmentObject(FutronicReader.java:94)
at labsec.auth.biometric.Futronic.FutronicReader.enroll(FutronicReader.java:168)
... 2 more
13:20:24,155 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on disconnect button
13:20:24,156 DEBUG [AWT-EventQueue-1] BaseEntity - Closing connection for Client::
13:20:24,156 DEBUG [AWT-EventQueue-1] BaseEntity - Client:: is transmitting object over stream: Bye!
13:20:24,181 DEBUG [Client::] BaseEntity - Closing connection for Client::
13:20:24,181 DEBUG [Client::] BaseEntity - End of Client:: Entity thread.
13:20:26,774 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - stop()
13:20:26,778 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - destroy()
13:20:26,780 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] BaseEntity - Client::'s SSLSocket is connected? false
13:20:26,781 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] FutronicReader - uninitialize()
13:20:41,036 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
13:20:41,129 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
13:20:41,174 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
13:20:41,788 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
13:20:41,837 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
13:20:41,838 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
13:20:41,843 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
13:20:41,863 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
13:20:41,864 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
13:20:41,864 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
13:20:41,864 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
13:20:41,865 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
13:20:41,927 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
13:20:45,640 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - stop()
13:20:45,645 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - destroy()
13:20:45,652 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] BaseEntity - Client::'s SSLSocket is connected? false
13:20:45,653 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] FutronicReader - uninitialize()
13:20:50,466 TRACE [Thread-3] Configuration - java.library.path = C:\Dev\java_libs\Futronic
13:20:50,518 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - init()
13:20:50,553 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = pkcs11LibraryFile / value = C:\Windows\System32\aetpkss1.dll
13:20:51,124 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientEntity - initBiometrics()
13:20:51,165 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - initialize()
13:20:51,166 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Checking for loadLibrary permission
13:20:51,168 DEBUG [thread applet-softplan.prototype.client.ClientApplet.class] AbstractFingerprintReader - Path to reader's library file=C:\Users\Eduardo\workspace\MultiFactorAuthProtocol\dlls\ftrJSDK.dll
13:20:51,184 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = numberFingerModels / value = 5
13:20:51,185 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerHostname / value = localhost
13:20:51,185 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = adminServerPort / value = 15666
13:20:51,185 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerHostname / value = localhost
13:20:51,185 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] Configuration - key = clientServerPort / value = 15668
13:20:51,215 TRACE [thread applet-softplan.prototype.client.ClientApplet.class] ClientApplet - start()
13:20:53,224 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on connect button
13:20:53,232 DEBUG [Client::] BaseEntity - Beginning Client:: Entity thread.
13:20:53,233 DEBUG [Client::] BaseEntity - Creating SSL Socket Factory for first-time use only
13:20:53,413 DEBUG [Client::] BaseEntity - SSL Socket Factory created successfully
13:20:53,414 INFO [Client::] BaseEntity - Client:: trying to connect to server on host=localhost and port=15668
13:20:53,906 INFO [Client::] BaseEntity - Client:: connected to server on host=localhost and port=15668
13:20:53,949 TRACE [Client::] BaseEntity - in=com.sun.net.ssl.internal.ssl.AppInputStream@388993
13:20:53,949 TRACE [Client::] BaseEntity - out=com.sun.net.ssl.internal.ssl.AppOutputStream@1d04653
13:20:54,005 DEBUG [Client::] BaseEntity - Client:: is handling server requests
13:20:54,938 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
13:20:54,939 TRACE [AWT-EventQueue-1] ClientEntity - []
13:21:01,181 TRACE [Client::] BaseEntity - total bytes read: 1167
13:21:01,240 DEBUG [Client::] BaseEntity - Client:: received an object: Message [type=REGISTER, data=byte[length=128, [36, 104, -57, -3, 31, ...]],byte[length=672, [106, 122, 58, 74, 26, ...]],Client::TestCard:[email protected]'s UFSC ID,]
13:21:01,243 TRACE [Client::] ClientApplet - messageReceived(): TestCard:[email protected]'s UFSC ID
13:21:01,243 DEBUG [Client::] ClientEntity - Begin processing of register message: Message [type=REGISTER, data=byte[length=128, [36, 104, -57, -3, 31, ...]],byte[length=672, [106, 122, 58, 74, 26, ...]],Client::TestCard:[email protected]'s UFSC ID,]
13:21:01,245 TRACE [Client::] ClientEntity - clientAliasReceived=TestCard:[email protected]'s UFSC ID
13:21:01,246 DEBUG [Client::] ClientEntity - End processing of register message: Message [type=REGISTER, data=byte[length=128, [36, 104, -57, -3, 31, ...]],byte[length=672, [106, 122, 58, 74, 26, ...]],]
13:21:05,305 TRACE [AWT-EventQueue-1] ClientApplet - Applet User clicked on register button
13:21:05,306 TRACE [AWT-EventQueue-1] ClientEntity - [TestCard:[email protected]'s UFSC ID]
13:21:16,720 DEBUG [Register-Thread] ClientEntity - Beginning register operation. With biometrics? true
13:21:16,721 TRACE [Register-Thread] ClientEntity - code=123456
13:21:16,722 TRACE [Register-Thread] ClientEntity - selectedClient=TestCard:[email protected]'s UFSC ID
13:21:16,722 TRACE [Register-Thread] ClientEntity - withBiometrics=true
13:21:16,723 TRACE [Register-Thread] FutronicReader - enroll()
13:21:16,723 DEBUG [Register-Thread] FutronicReader - Starting enrolling user 123456
13:21:16,724 DEBUG [Register-Thread] FutronicReader - Creating enroll object
13:21:16,763 TRACE [Register-Thread] FutronicReader - before wait() for enroll()
13:21:17,437 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=1, total=5]
13:21:21,903 TRACE [Enrollment operation] ClientApplet - updateImage() event
13:21:21,904 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
13:21:22,016 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=1, total=5]
13:21:22,386 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=2, total=5]
13:21:25,205 TRACE [Enrollment operation] ClientApplet - updateImage() event
13:21:25,206 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
13:21:25,367 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=2, total=5]
13:21:26,512 TRACE [Enrollment operation] ClientApplet - putFingerOn() event=ProgressEvent [count=3, total=5]
13:21:27,717 TRACE [Enrollment operation] ClientApplet - updateImage() event
13:21:27,717 TRACE [Enrollment operation] ClientApplet - bitmap image size= 320x480
13:21:27,805 TRACE [Enrollment operation] ClientApplet - takeFingerOff() event=ProgressEvent [count=3, total=5]