j'ai fait un parsing d'un fichier log mais le probleme qu'il reste beaucoup de temps pour parser donc je veux remedier a ce probleme voila mon code
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
 
 
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 
package thread;
 
/**
 *
 * @author Taieb.Romdhane
 */
 
 
 
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.sql.*;
import java.util.Vector;
 
 
public class Main {
    private static String DateConnexion;
    private static String Heure;
    private static String AdresseIP;
    private static String port;
    private static String localport;
    private static String URL;
    private static String s;
    private static int Clength;
    private static String HeureRep;
    private static Vector v,v1;
    private static Statement st;
    private static String methode;
    static MaConnection  co = new MaConnection();
 
    public static void main(String[] args) throws FileNotFoundException, IOException, Exception {
        v1=Main.Vthread();
       // String fichierlog ="C:\\file2.txt";
        String fichierlog ="C:\\connector.log.2010-09-06";
        String ligne;
         String sql ="";
        int ID=1;
         int j=0;
         int nbligne=0;
          int nbBase=0;
 
          for(j=0;j<v.size();j++)
          {
         InputStream ips =new FileInputStream(fichierlog);
         InputStreamReader ipsr=new InputStreamReader(ips);
         BufferedReader flux=new BufferedReader(ipsr);
 
          while ((ligne=flux.readLine())!=null)
          {
              if ((ligne.contains("[HttpProxyServer-thread-"+v.get(j)+"]")))
              {
             if(ligne.contains("SETUP_CONNECTION"))
             {   ID++;
                DateConnexion=ligne.substring(0, 10);
                Heure=ligne.substring(11,23);
                AdresseIP=ligne.substring((ligne.indexOf("/")+1),(ligne.lastIndexOf(",")-10));
                port=ligne.substring((ligne.indexOf("/")+AdresseIP.length()+7),(ligne.lastIndexOf(",")));
                localport=ligne.substring((ligne.indexOf("/")+AdresseIP.length()+port.length()+18),(ligne.lastIndexOf("]")));
                sql="insert into log values("+ID+",'"+DateConnexion+"','"+Heure+"','"+ AdresseIP+"',"+Integer.parseInt(port)+","+Integer.parseInt(localport)+"," ;
 
             }
             if(ligne.contains("REQMOD"))
             {
 
                if(ligne.contains("CONNECT"))
                {
                URL=ligne.substring((ligne.indexOf("CONNECT")+8),(ligne.lastIndexOf(" ")));
                methode="CONNECT";
                }
                 if(ligne.contains("CONNECT")&&(ligne.contains("?")))
                {
                URL=ligne.substring((ligne.indexOf("CONNECT")+8),(ligne.lastIndexOf("?")));
                   methode="CONNECT";
                 }
                 if(ligne.contains("GET"))
                {
                URL=ligne.substring((ligne.indexOf("GET")+4),(ligne.lastIndexOf(" ")));
                   methode="GET";
                 }
                if(ligne.contains("GET")&&(ligne.contains("?")))
                {
                URL=ligne.substring((ligne.indexOf("GET")+4),(ligne.lastIndexOf("?")));
                   methode="GET";
                }
 
                if(ligne.contains("POST"))
                {
                URL=ligne.substring((ligne.indexOf("POST")+5),(ligne.lastIndexOf(" ")));
                   methode="POST";
                }
                 if(ligne.contains("POST")&&(ligne.contains("?")))
                {
                URL=ligne.substring((ligne.indexOf("POST")+5),(ligne.lastIndexOf("?")));
                   methode="POST";
                 }
 
                  sql=sql+"'"+URL+"',";
 
             }
 
             if(ligne.contains("DONE:"))
             {  s=ligne.substring((ligne.indexOf("=")+1),(ligne.lastIndexOf("")));
                 Clength=Integer.parseInt(s);
                 HeureRep=ligne.substring(11,23);
                 if(!(sql.equals("")))
                 {
                  sql=sql+Clength+",'"+HeureRep+"','"+methode+"')";
                 System.out.println(v.get(j));
                  System.out.println(sql);
                  if((!(sql.contains("8080,0")))&&(!(sql.contains("8080,1")))&&(!(sql.contains("8080,2")))&&(!(sql.contains("8080,3")))&&(!(sql.contains("8080,4")))&&(!(sql.contains("8080,5")))&&(!(sql.contains("8080,6")))&&(!(sql.contains("8080,7")))&&(!(sql.contains("8080,8")))&&(!(sql.contains("8080,9")))&&(sql.contains("insert into")))
                  {
                  st=(Statement)co.Connexion_start().createStatement();
                  st.executeUpdate(sql);
                  System.out.println("dans la base!!");
                  nbligne++;
                 }}
                  sql="";
             }
              }
          }
 //System.out.println(" le nombre de thread est"+v.get(j));
        }
         System.out.println(nbligne);
    }
    public static  Vector Vthread () throws FileNotFoundException, IOException
    {
    // String fichierlog ="C:\\file2.txt";
        String fichierlog ="C:\\connector.log.2010-09-06";
        String ligne;
         String sql ="";
         InputStream ips =new FileInputStream(fichierlog);
         InputStreamReader ipsr=new InputStreamReader(ips);
         BufferedReader flux=new BufferedReader(ipsr);
 
    Vector vec = new Vector();
          while ((ligne=flux.readLine())!=null)
          {
               if(ligne.contains("SETUP_CONNECTION"))
             {
                  int numthread= Integer.parseInt(ligne.substring((ligne.indexOf("[")+24), (ligne.lastIndexOf("-")-11)));
                  vec.add(numthread);
               }
          }
         v = new java.util.Vector(new java.util.HashSet(vec));
                  System.out.println("Après filtre : "+v);
                   return v;
    }
}
 
  /*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
la classe maconnexion
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 
package thread;
 
/**
 *
 * @author Taieb.Romdhane
 */
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 
 
 
 
 
import java.sql.*;
 
 
 
/**
 *
 * @author Najwen.Boussarsar
 */
public class MaConnection {
    Connection con1 =null ;
    Statement stmt;
    String pilote;
 
 
    public Connection Connexion_start() throws Exception{
 
 
             try {
                        Class.forName("com.mysql.jdbc.Driver");
                } catch (ClassNotFoundException e) {
                        System.err.println(e) ;
                        System.exit (-1) ;
                        System.out.print( "Connection à la base de données impossible  "+e.getMessage());
                        return null ;
                }
 
                try {
                        // Création d'une connexion à la base
                         con1 = (Connection) DriverManager.getConnection("jdbc:mysql://localhost/testt","root","root");
                         return con1 ;
                }catch (java.sql.SQLException e) {
                        System.err.println(e);
                        System.exit(-1);
                        System.out.print( "Connection à la base de données impossible  "+e.getMessage());
                        return null ;
                }
    }}
voila un extrait du fichier à parser
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
 
06-09-2010 00:00:01,706 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:01,862 [HttpProxyServer-thread-169] DEBUG ad - Reading complete
06-09-2010 00:00:01,862 [HttpProxyServer-thread-169] DEBUG ad - Releasing buffer
06-09-2010 00:00:01,862 [HttpProxyServer-thread-169] DEBUG ad - Buffer released
06-09-2010 00:00:01,862 [HttpProxyServer-thread-169] DEBUG ad - Shutting down output
06-09-2010 00:00:01,862 [HttpProxyServer-thread-169] DEBUG ad - Output shut down
06-09-2010 00:00:01,862 [HttpProxyServer-thread-169] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:01,862 [HttpProxyServer-thread-159] DEBUG ad - Threads have completed
06-09-2010 00:00:01,862 [HttpProxyServer-thread-159] DEBUG ad - Semaphore released
06-09-2010 00:00:01,862 [HttpProxyServer-thread-159] DEBUG ad - All closed
06-09-2010 00:00:01,862 [HttpProxyServer-thread-159]  INFO pb - DONE: contentLength=16868
06-09-2010 00:00:01,893 [HttpProxyServer-thread-155]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.3,port=4457,localport=8080]
06-09-2010 00:00:01,909 [HttpProxyServer-thread-155]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT www.google.com:443 HTTP/1.0
06-09-2010 00:00:01,909 [HttpProxyServer-thread-155]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:01,909 [HttpProxyServer-thread-155]  INFO pb - DONE: contentLength=0
06-09-2010 00:00:02,752 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:03,737 [HttpProxyServer-thread-157]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.139,port=4084,localport=8080]
06-09-2010 00:00:03,737 [HttpProxyServer-thread-157]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT talk.google.com:443 HTTP/1.0
06-09-2010 00:00:03,737 [HttpProxyServer-thread-157]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:03,737 [HttpProxyServer-thread-157]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT talk.google.com:443 HTTP/1.0
06-09-2010 00:00:03,737 [HttpProxyServer-thread-157]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:03,737 [HttpProxyServer-thread-157]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT talk.google.com:443 HTTP/1.0
06-09-2010 00:00:03,737 [HttpProxyServer-thread-157]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:03,737 [HttpProxyServer-thread-157] DEBUG nc - Do action called
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157]  INFO sb - REQMOD : CONNECT talk.google.com:443 HTTP/1.0
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG ad - Tunnelling...
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG ad - Getting buffer...
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG ad - Getting buffer...
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:03,799 [HttpProxyServer-thread-157] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:03,799 [HttpProxyServer-thread-15] DEBUG ad - Task starting
06-09-2010 00:00:03,799 [HttpProxyServer-thread-5] DEBUG ad - Task starting
06-09-2010 00:00:04,002 [HttpProxyServer-thread-145]  INFO pb - DONE: contentLength=0
06-09-2010 00:00:05,752 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:06,143 [HttpProxyServer-thread-42]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.139,port=4085,localport=8080]
06-09-2010 00:00:06,143 [HttpProxyServer-thread-42]  INFO pb - STORE_REQUEST_LINE (before) :GET http://tools.google.com/googletalk/google-talk-versioncheck.txt?auv=1&r=4&up=30&p=w&ma=5&mi=1&b=2600&sp=ServicePack3&as=googletalk&pv=1.0.0.104 HTTP/1.0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-42]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-39]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.139,port=4086,localport=8080]
06-09-2010 00:00:06,143 [HttpProxyServer-thread-39]  INFO pb - STORE_REQUEST_LINE (before) :GET http://filetransferenabled.mail.google.com/images/cleardot.gif HTTP/1.0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-39]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-39]  INFO pb - STORE_REQUEST_LINE (before) :GET http://filetransferenabled.mail.google.com/images/cleardot.gif HTTP/1.0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-39]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-42]  INFO pb - STORE_REQUEST_LINE (before) :GET http://tools.google.com/googletalk/google-talk-versioncheck.txt?auv=1&r=4&up=30&p=w&ma=5&mi=1&b=2600&sp=ServicePack3&as=googletalk&pv=1.0.0.104 HTTP/1.0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-42]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-39]  INFO pb - STORE_REQUEST_LINE (before) :GET http://filetransferenabled.mail.google.com/images/cleardot.gif HTTP/1.0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-39]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,143 [HttpProxyServer-thread-39] DEBUG nc - Do action called
06-09-2010 00:00:06,159 [HttpProxyServer-thread-42]  INFO pb - STORE_REQUEST_LINE (before) :GET http://tools.google.com/googletalk/google-talk-versioncheck.txt?auv=1&r=4&up=30&p=w&ma=5&mi=1&b=2600&sp=ServicePack3&as=googletalk&pv=1.0.0.104 HTTP/1.0
06-09-2010 00:00:06,159 [HttpProxyServer-thread-42]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,159 [HttpProxyServer-thread-42] DEBUG nc - Do action called
06-09-2010 00:00:06,206 [HttpProxyServer-thread-39] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:06,206 [HttpProxyServer-thread-39] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:06,206 [HttpProxyServer-thread-39]  INFO sb - REQMOD : GET http://filetransferenabled.mail.google.com/images/cleardot.gif HTTP/1.0
06-09-2010 00:00:06,221 [HttpProxyServer-thread-42] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:06,221 [HttpProxyServer-thread-42] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:06,221 [HttpProxyServer-thread-42]  INFO sb - REQMOD : GET http://tools.google.com/googletalk/google-talk-versioncheck.txt?auv=1&r=4&up=30&p=w&ma=5&mi=1&b=2600&sp=ServicePack3&as=googletalk&pv=1.0.0.104 HTTP/1.0
06-09-2010 00:00:06,299 [HttpProxyServer-thread-39]  INFO pb - DONE: contentLength=43
06-09-2010 00:00:06,331 [HttpProxyServer-thread-42]  INFO pb - DONE: contentLength=1014
06-09-2010 00:00:06,799 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:06,909 [HttpProxyServer-thread-137]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.3,port=4458,localport=8080]
06-09-2010 00:00:06,909 [HttpProxyServer-thread-137]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT talk.google.com:443 HTTP/1.0
06-09-2010 00:00:06,909 [HttpProxyServer-thread-137]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,909 [HttpProxyServer-thread-137]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT talk.google.com:443 HTTP/1.0
06-09-2010 00:00:06,909 [HttpProxyServer-thread-137]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,909 [HttpProxyServer-thread-137]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT talk.google.com:443 HTTP/1.0
06-09-2010 00:00:06,909 [HttpProxyServer-thread-137]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:06,909 [HttpProxyServer-thread-137] DEBUG nc - Do action called
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137]  INFO sb - REQMOD : CONNECT talk.google.com:443 HTTP/1.0
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG ad - Tunnelling...
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG ad - Getting buffer...
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG ad - Getting buffer...
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:06,971 [HttpProxyServer-thread-137] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:06,971 [HttpProxyServer-thread-54] DEBUG ad - Task starting
06-09-2010 00:00:06,971 [HttpProxyServer-thread-97] DEBUG ad - Task starting
06-09-2010 00:00:08,081 [HttpProxyServer-thread-19]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.3,port=4459,localport=8080]
06-09-2010 00:00:08,081 [HttpProxyServer-thread-19]  INFO pb - STORE_REQUEST_LINE (before) :GET http://tools.google.com/googletalk/google-talk-versioncheck-fr.txt?auv=1&r=4&up=30&p=w&ma=5&mi=1&b=2600&sp=ServicePack3&as=googletalk&pv=1.0.0.105 HTTP/1.0
06-09-2010 00:00:08,081 [HttpProxyServer-thread-19]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:08,112 [HttpProxyServer-thread-19]  INFO pb - STORE_REQUEST_LINE (before) :GET http://tools.google.com/googletalk/google-talk-versioncheck-fr.txt?auv=1&r=4&up=30&p=w&ma=5&mi=1&b=2600&sp=ServicePack3&as=googletalk&pv=1.0.0.105 HTTP/1.0
06-09-2010 00:00:08,112 [HttpProxyServer-thread-19]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:08,127 [HttpProxyServer-thread-19]  INFO pb - STORE_REQUEST_LINE (before) :GET http://tools.google.com/googletalk/google-talk-versioncheck-fr.txt?auv=1&r=4&up=30&p=w&ma=5&mi=1&b=2600&sp=ServicePack3&as=googletalk&pv=1.0.0.105 HTTP/1.0
06-09-2010 00:00:08,127 [HttpProxyServer-thread-19]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:08,127 [HttpProxyServer-thread-19] DEBUG nc - Do action called
06-09-2010 00:00:08,190 [HttpProxyServer-thread-19] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:08,190 [HttpProxyServer-thread-19] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:08,190 [HttpProxyServer-thread-19]  INFO sb - REQMOD : GET http://tools.google.com/googletalk/google-talk-versioncheck-fr.txt?auv=1&r=4&up=30&p=w&ma=5&mi=1&b=2600&sp=ServicePack3&as=googletalk&pv=1.0.0.105 HTTP/1.0
06-09-2010 00:00:08,440 [HttpProxyServer-thread-19]  INFO pb - DONE: contentLength=1020
06-09-2010 00:00:09,799 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:10,831 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:10,877 [HttpProxyServer-thread-43]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.61.30,port=4145,localport=8080]
06-09-2010 00:00:10,877 [HttpProxyServer-thread-43]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT ae.sungard.com:443 HTTP/1.0
06-09-2010 00:00:10,877 [HttpProxyServer-thread-43]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:10,877 [HttpProxyServer-thread-146]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.61.30,port=4146,localport=8080]
06-09-2010 00:00:10,877 [HttpProxyServer-thread-146]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT ae.sungard.com:443 HTTP/1.0
06-09-2010 00:00:10,877 [HttpProxyServer-thread-146]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:10,893 [HttpProxyServer-thread-146]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT ae.sungard.com:443 HTTP/1.0
06-09-2010 00:00:10,893 [HttpProxyServer-thread-146]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:10,893 [HttpProxyServer-thread-146] DEBUG nc - Do action called
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146]  INFO sb - REQMOD : CONNECT ae.sungard.com:443 HTTP/1.0
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG ad - Tunnelling...
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG ad - Getting buffer...
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG ad - Getting buffer...
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:10,940 [HttpProxyServer-thread-146] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:10,940 [HttpProxyServer-thread-22] DEBUG ad - Task starting
06-09-2010 00:00:10,940 [HttpProxyServer-thread-23] DEBUG ad - Task starting
06-09-2010 00:00:11,221 [HttpProxyServer-thread-23] DEBUG ad - Socket exception: Connection reset
06-09-2010 00:00:11,221 [HttpProxyServer-thread-23] DEBUG ad - Releasing buffer
06-09-2010 00:00:11,221 [HttpProxyServer-thread-23] DEBUG ad - Buffer released
06-09-2010 00:00:11,221 [HttpProxyServer-thread-23] DEBUG ad - Shutting down output
06-09-2010 00:00:11,221 [HttpProxyServer-thread-23] DEBUG ad - Output shut down
06-09-2010 00:00:11,221 [HttpProxyServer-thread-23] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:11,221 [HttpProxyServer-thread-22] DEBUG ad - Socket exception: Software caused connection abort: recv failed
06-09-2010 00:00:11,221 [HttpProxyServer-thread-22] DEBUG ad - Releasing buffer
06-09-2010 00:00:11,221 [HttpProxyServer-thread-22] DEBUG ad - Buffer released
06-09-2010 00:00:11,221 [HttpProxyServer-thread-22] DEBUG ad - Shutting down output
06-09-2010 00:00:11,221 [HttpProxyServer-thread-22] DEBUG ad - Output shut down
06-09-2010 00:00:11,221 [HttpProxyServer-thread-22] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:11,221 [HttpProxyServer-thread-146] DEBUG ad - Threads have completed
06-09-2010 00:00:11,221 [HttpProxyServer-thread-146] DEBUG ad - Semaphore released
06-09-2010 00:00:11,221 [HttpProxyServer-thread-146] DEBUG ad - All closed
06-09-2010 00:00:11,221 [HttpProxyServer-thread-146]  INFO pb - DONE: contentLength=161
06-09-2010 00:00:11,221 [HttpProxyServer-thread-114]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.61.30,port=4147,localport=8080]
06-09-2010 00:00:11,221 [HttpProxyServer-thread-114]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT ae.sungard.com:443 HTTP/1.0
06-09-2010 00:00:11,221 [HttpProxyServer-thread-114]  INFO pb - DONE: contentLength=0
06-09-2010 00:00:13,831 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:13,862 [HttpProxyServer-thread-165]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.71,port=2821,localport=8080]
06-09-2010 00:00:13,862 [HttpProxyServer-thread-165]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:13,862 [HttpProxyServer-thread-165]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:13,862 [HttpProxyServer-thread-95]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.71,port=2822,localport=8080]
06-09-2010 00:00:13,862 [HttpProxyServer-thread-95]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:13,862 [HttpProxyServer-thread-95]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:13,862 [HttpProxyServer-thread-95]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:13,862 [HttpProxyServer-thread-95]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:13,862 [HttpProxyServer-thread-95] DEBUG nc - Do action called
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95]  INFO sb - REQMOD : CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG ad - Tunnelling...
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG ad - Getting buffer...
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG ad - Getting buffer...
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:13,924 [HttpProxyServer-thread-95] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:13,924 [HttpProxyServer-thread-65] DEBUG ad - Task starting
06-09-2010 00:00:13,924 [HttpProxyServer-thread-154] DEBUG ad - Task starting
06-09-2010 00:00:14,268 [HttpProxyServer-thread-154] DEBUG ad - Reading complete
06-09-2010 00:00:14,268 [HttpProxyServer-thread-154] DEBUG ad - Releasing buffer
06-09-2010 00:00:14,268 [HttpProxyServer-thread-154] DEBUG ad - Buffer released
06-09-2010 00:00:14,268 [HttpProxyServer-thread-154] DEBUG ad - Shutting down output
06-09-2010 00:00:14,268 [HttpProxyServer-thread-154] DEBUG ad - Output shut down
06-09-2010 00:00:14,268 [HttpProxyServer-thread-154] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:14,268 [HttpProxyServer-thread-65] DEBUG ad - Socket exception: Software caused connection abort: recv failed
06-09-2010 00:00:14,268 [HttpProxyServer-thread-65] DEBUG ad - Releasing buffer
06-09-2010 00:00:14,268 [HttpProxyServer-thread-65] DEBUG ad - Buffer released
06-09-2010 00:00:14,268 [HttpProxyServer-thread-65] DEBUG ad - Shutting down output
06-09-2010 00:00:14,268 [HttpProxyServer-thread-65] DEBUG ad - Output shut down
06-09-2010 00:00:14,268 [HttpProxyServer-thread-65] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:14,268 [HttpProxyServer-thread-95] DEBUG ad - Threads have completed
06-09-2010 00:00:14,268 [HttpProxyServer-thread-95] DEBUG ad - Semaphore released
06-09-2010 00:00:14,268 [HttpProxyServer-thread-95] DEBUG ad - All closed
06-09-2010 00:00:14,268 [HttpProxyServer-thread-95]  INFO pb - DONE: contentLength=1722
06-09-2010 00:00:14,799 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:15,924 [HttpProxyServer-thread-166] DEBUG ad - Socket#read timed out
06-09-2010 00:00:15,924 [HttpProxyServer-thread-166] DEBUG ad - Reading complete
06-09-2010 00:00:15,924 [HttpProxyServer-thread-166] DEBUG ad - Releasing buffer
06-09-2010 00:00:15,924 [HttpProxyServer-thread-166] DEBUG ad - Buffer released
06-09-2010 00:00:15,924 [HttpProxyServer-thread-166] DEBUG ad - Shutting down output
06-09-2010 00:00:15,924 [HttpProxyServer-thread-166] DEBUG ad - Output shut down
06-09-2010 00:00:15,924 [HttpProxyServer-thread-166] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:15,924 [HttpProxyServer-thread-148] DEBUG ad - Socket exception: Software caused connection abort: recv failed
06-09-2010 00:00:15,924 [HttpProxyServer-thread-148] DEBUG ad - Releasing buffer
06-09-2010 00:00:15,924 [HttpProxyServer-thread-148] DEBUG ad - Buffer released
06-09-2010 00:00:15,924 [HttpProxyServer-thread-148] DEBUG ad - Shutting down output
06-09-2010 00:00:15,924 [HttpProxyServer-thread-148] DEBUG ad - Output shut down
06-09-2010 00:00:15,924 [HttpProxyServer-thread-148] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:15,924 [HttpProxyServer-thread-162] DEBUG ad - Threads have completed
06-09-2010 00:00:15,924 [HttpProxyServer-thread-162] DEBUG ad - Semaphore released
06-09-2010 00:00:15,924 [HttpProxyServer-thread-162] DEBUG ad - All closed
06-09-2010 00:00:15,924 [HttpProxyServer-thread-162]  INFO pb - DONE: contentLength=354
06-09-2010 00:00:17,799 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:18,737 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:21,049 [HttpProxyServer-thread-120]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.61.190,port=2681,localport=8080]
06-09-2010 00:00:21,049 [HttpProxyServer-thread-120]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT 92.231.129.60:443 HTTP/1.0
06-09-2010 00:00:21,049 [HttpProxyServer-thread-168]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.61.190,port=2682,localport=8080]
06-09-2010 00:00:21,049 [HttpProxyServer-thread-96]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.61.190,port=2683,localport=8080]
06-09-2010 00:00:21,049 [HttpProxyServer-thread-168]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT 151.95.253.160:443 HTTP/1.0
06-09-2010 00:00:21,049 [HttpProxyServer-thread-96]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT 93.145.147.214:443 HTTP/1.0
06-09-2010 00:00:21,221 [HttpProxyServer-thread-120]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT 92.231.129.60:443 HTTP/1.0
06-09-2010 00:00:21,221 [HttpProxyServer-thread-168]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT 151.95.253.160:443 HTTP/1.0
06-09-2010 00:00:21,252 [HttpProxyServer-thread-96]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT 93.145.147.214:443 HTTP/1.0
06-09-2010 00:00:21,409 [HttpProxyServer-thread-43]  INFO pb - DONE: contentLength=0
06-09-2010 00:00:21,440 [HttpProxyServer-thread-168] DEBUG nc - Do action called
06-09-2010 00:00:21,440 [HttpProxyServer-thread-120] DEBUG nc - Do action called
06-09-2010 00:00:21,456 [HttpProxyServer-thread-96] DEBUG nc - Do action called
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120]  INFO sb - REQMOD : CONNECT 92.231.129.60:443 HTTP/1.0
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG ad - Tunnelling...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG ad - Getting buffer...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG ad - Getting buffer...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:21,502 [HttpProxyServer-thread-120] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:21,502 [HttpProxyServer-thread-112] DEBUG ad - Task starting
06-09-2010 00:00:21,502 [HttpProxyServer-thread-40] DEBUG ad - Task starting
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168]  INFO sb - REQMOD : CONNECT 151.95.253.160:443 HTTP/1.0
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG ad - Tunnelling...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG ad - Getting buffer...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG ad - Getting buffer...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:21,502 [HttpProxyServer-thread-168] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:21,502 [HttpProxyServer-thread-131] DEBUG ad - Task starting
06-09-2010 00:00:21,502 [HttpProxyServer-thread-20] DEBUG ad - Task starting
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96]  INFO sb - REQMOD : CONNECT 93.145.147.214:443 HTTP/1.0
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG ad - Tunnelling...
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG ad - Getting buffer...
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG ad - Getting buffer...
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:21,518 [HttpProxyServer-thread-96] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:21,518 [HttpProxyServer-thread-2] DEBUG ad - Task starting
06-09-2010 00:00:21,518 [HttpProxyServer-thread-64] DEBUG ad - Task starting
06-09-2010 00:00:21,737 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:22,752 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:24,393 [HttpProxyServer-thread-165]  INFO pb - DONE: contentLength=0
06-09-2010 00:00:25,752 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:26,799 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:27,034 [HttpProxyServer-thread-33]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.219,port=2300,localport=8080]
06-09-2010 00:00:27,034 [HttpProxyServer-thread-33]  INFO pb - STORE_REQUEST_LINE (before) :GET http://player.nrj.fr/V4/nrj/playlists_webradios/playlist_1.xml?uniq=1283728288344 HTTP/1.1
06-09-2010 00:00:27,034 [HttpProxyServer-thread-33]  INFO pb - STORE_REQUEST_LINE (before) :GET http://player.nrj.fr/V4/nrj/playlists_webradios/playlist_1.xml?uniq=1283728288344 HTTP/1.1
06-09-2010 00:00:27,034 [HttpProxyServer-thread-33]  INFO pb - STORE_REQUEST_LINE (before) :GET http://player.nrj.fr/V4/nrj/playlists_webradios/playlist_1.xml?uniq=1283728288344 HTTP/1.1
06-09-2010 00:00:27,034 [HttpProxyServer-thread-33] DEBUG nc - Do action called
06-09-2010 00:00:27,096 [HttpProxyServer-thread-33] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:27,096 [HttpProxyServer-thread-33] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:27,096 [HttpProxyServer-thread-33]  INFO sb - REQMOD : GET http://player.nrj.fr/V4/nrj/playlists_webradios/playlist_1.xml?uniq=1283728288344 HTTP/1.0
06-09-2010 00:00:27,237 [HttpProxyServer-thread-33]  INFO pb - DONE: contentLength=3315
06-09-2010 00:00:29,799 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:30,752 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:33,752 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:34,268 [HttpProxyServer-thread-158]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.71,port=2825,localport=8080]
06-09-2010 00:00:34,268 [HttpProxyServer-thread-158]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:34,268 [HttpProxyServer-thread-158]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:34,284 [HttpProxyServer-thread-100]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.71,port=2826,localport=8080]
06-09-2010 00:00:34,284 [HttpProxyServer-thread-100]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:34,284 [HttpProxyServer-thread-100]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:34,284 [HttpProxyServer-thread-100]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:34,284 [HttpProxyServer-thread-100]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:34,284 [HttpProxyServer-thread-100] DEBUG nc - Do action called
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100]  INFO sb - REQMOD : CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG ad - Tunnelling...
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG ad - Getting buffer...
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG ad - Getting buffer...
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:34,331 [HttpProxyServer-thread-100] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:34,331 [HttpProxyServer-thread-151] DEBUG ad - Task starting
06-09-2010 00:00:34,331 [HttpProxyServer-thread-110] DEBUG ad - Task starting
06-09-2010 00:00:34,674 [HttpProxyServer-thread-110] DEBUG ad - Reading complete
06-09-2010 00:00:34,674 [HttpProxyServer-thread-110] DEBUG ad - Releasing buffer
06-09-2010 00:00:34,674 [HttpProxyServer-thread-110] DEBUG ad - Buffer released
06-09-2010 00:00:34,674 [HttpProxyServer-thread-110] DEBUG ad - Shutting down output
06-09-2010 00:00:34,674 [HttpProxyServer-thread-151]  WARN ad - Exception while relaying: 
java.io.IOException: Stream closed.
	at java.net.PlainSocketImpl.available(PlainSocketImpl.java:434)
	at java.net.SocketInputStream.available(SocketInputStream.java:217)
	at java.io.BufferedInputStream.read(BufferedInputStream.java:325)
	at java.io.FilterInputStream.read(FilterInputStream.java:116)
	at java.io.FilterInputStream.read(FilterInputStream.java:90)
	at bd.run(Unknown Source)
	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
	at java.lang.Thread.run(Thread.java:619)
06-09-2010 00:00:34,674 [HttpProxyServer-thread-151] DEBUG ad - Releasing buffer
06-09-2010 00:00:34,674 [HttpProxyServer-thread-110] DEBUG ad - Output shut down
06-09-2010 00:00:34,674 [HttpProxyServer-thread-110] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:34,674 [HttpProxyServer-thread-151] DEBUG ad - Buffer released
06-09-2010 00:00:34,674 [HttpProxyServer-thread-151] DEBUG ad - Shutting down output
06-09-2010 00:00:34,674 [HttpProxyServer-thread-151] DEBUG ad - Output shut down
06-09-2010 00:00:34,674 [HttpProxyServer-thread-151] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:34,674 [HttpProxyServer-thread-100] DEBUG ad - Threads have completed
06-09-2010 00:00:34,674 [HttpProxyServer-thread-100] DEBUG ad - Semaphore released
06-09-2010 00:00:34,674 [HttpProxyServer-thread-100] DEBUG ad - All closed
06-09-2010 00:00:34,674 [HttpProxyServer-thread-100]  INFO pb - DONE: contentLength=342
06-09-2010 00:00:34,784 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:37,784 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:38,831 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:41,221 [HttpProxyServer-thread-160] DEBUG ad - Socket#read timed out
06-09-2010 00:00:41,221 [HttpProxyServer-thread-160] DEBUG ad - Reading complete
06-09-2010 00:00:41,221 [HttpProxyServer-thread-160] DEBUG ad - Releasing buffer
06-09-2010 00:00:41,221 [HttpProxyServer-thread-160] DEBUG ad - Buffer released
06-09-2010 00:00:41,221 [HttpProxyServer-thread-160] DEBUG ad - Shutting down output
06-09-2010 00:00:41,221 [HttpProxyServer-thread-160] DEBUG ad - Output shut down
06-09-2010 00:00:41,221 [HttpProxyServer-thread-160] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:41,221 [HttpProxyServer-thread-141] DEBUG ad - Socket exception: Connection reset
06-09-2010 00:00:41,221 [HttpProxyServer-thread-141] DEBUG ad - Releasing buffer
06-09-2010 00:00:41,221 [HttpProxyServer-thread-141] DEBUG ad - Buffer released
06-09-2010 00:00:41,221 [HttpProxyServer-thread-141] DEBUG ad - Shutting down output
06-09-2010 00:00:41,221 [HttpProxyServer-thread-141] DEBUG ad - Output shut down
06-09-2010 00:00:41,221 [HttpProxyServer-thread-141] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:41,221 [HttpProxyServer-thread-75] DEBUG ad - Socket exception: Connection reset
06-09-2010 00:00:41,221 [HttpProxyServer-thread-75] DEBUG ad - Releasing buffer
06-09-2010 00:00:41,221 [HttpProxyServer-thread-75] DEBUG ad - Buffer released
06-09-2010 00:00:41,221 [HttpProxyServer-thread-164] DEBUG ad - Threads have completed
06-09-2010 00:00:41,221 [HttpProxyServer-thread-164] DEBUG ad - Semaphore released
06-09-2010 00:00:41,221 [HttpProxyServer-thread-75] DEBUG ad - Shutting down output
06-09-2010 00:00:41,221 [HttpProxyServer-thread-75] DEBUG ad - Output shut down
06-09-2010 00:00:41,221 [HttpProxyServer-thread-75] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:41,221 [HttpProxyServer-thread-164] DEBUG ad - All closed
06-09-2010 00:00:41,221 [HttpProxyServer-thread-164]  INFO pb - DONE: contentLength=3624
06-09-2010 00:00:41,221 [HttpProxyServer-thread-170] DEBUG ad - Socket exception: Software caused connection abort: recv failed
06-09-2010 00:00:41,221 [HttpProxyServer-thread-170] DEBUG ad - Releasing buffer
06-09-2010 00:00:41,221 [HttpProxyServer-thread-170] DEBUG ad - Buffer released
06-09-2010 00:00:41,221 [HttpProxyServer-thread-170] DEBUG ad - Shutting down output
06-09-2010 00:00:41,221 [HttpProxyServer-thread-170] DEBUG ad - Output shut down
06-09-2010 00:00:41,221 [HttpProxyServer-thread-170] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:41,221 [HttpProxyServer-thread-87] DEBUG ad - Threads have completed
06-09-2010 00:00:41,221 [HttpProxyServer-thread-87] DEBUG ad - Semaphore released
06-09-2010 00:00:41,221 [HttpProxyServer-thread-87] DEBUG ad - All closed
06-09-2010 00:00:41,221 [HttpProxyServer-thread-87]  INFO pb - DONE: contentLength=2757
06-09-2010 00:00:41,831 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:42,768 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:44,799 [HttpProxyServer-thread-158]  INFO pb - DONE: contentLength=0
06-09-2010 00:00:45,768 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:46,721 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:49,721 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:50,659 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:52,643 [HttpProxyServer-thread-62] DEBUG ad - Socket#read timed out
06-09-2010 00:00:52,643 [HttpProxyServer-thread-62] DEBUG ad - Reading complete
06-09-2010 00:00:52,643 [HttpProxyServer-thread-62] DEBUG ad - Releasing buffer
06-09-2010 00:00:52,643 [HttpProxyServer-thread-62] DEBUG ad - Buffer released
06-09-2010 00:00:52,643 [HttpProxyServer-thread-115] DEBUG ad - Socket exception: Software caused connection abort: recv failed
06-09-2010 00:00:52,643 [HttpProxyServer-thread-115] DEBUG ad - Releasing buffer
06-09-2010 00:00:52,643 [HttpProxyServer-thread-115] DEBUG ad - Buffer released
06-09-2010 00:00:52,643 [HttpProxyServer-thread-115] DEBUG ad - Shutting down output
06-09-2010 00:00:52,643 [HttpProxyServer-thread-115] DEBUG ad - Output shut down
06-09-2010 00:00:52,643 [HttpProxyServer-thread-115] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:52,643 [HttpProxyServer-thread-62] DEBUG ad - Shutting down output
06-09-2010 00:00:52,643 [HttpProxyServer-thread-62] DEBUG ad - Output shut down
06-09-2010 00:00:52,643 [HttpProxyServer-thread-8] DEBUG ad - Threads have completed
06-09-2010 00:00:52,643 [HttpProxyServer-thread-8] DEBUG ad - Semaphore released
06-09-2010 00:00:52,643 [HttpProxyServer-thread-8] DEBUG ad - All closed
06-09-2010 00:00:52,643 [HttpProxyServer-thread-8]  INFO pb - DONE: contentLength=585
06-09-2010 00:00:52,643 [HttpProxyServer-thread-62] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:53,659 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:54,674 [HttpProxyServer-thread-93]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.71,port=2829,localport=8080]
06-09-2010 00:00:54,674 [HttpProxyServer-thread-93]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:54,674 [HttpProxyServer-thread-93]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:54,674 [HttpProxyServer-thread-70]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.71,port=2830,localport=8080]
06-09-2010 00:00:54,674 [HttpProxyServer-thread-70]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:54,674 [HttpProxyServer-thread-70]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:54,674 [HttpProxyServer-thread-70]  INFO pb - STORE_REQUEST_LINE (before) :CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:54,674 [HttpProxyServer-thread-70]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=0
06-09-2010 00:00:54,674 [HttpProxyServer-thread-70] DEBUG nc - Do action called
06-09-2010 00:00:54,690 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70]  INFO sb - REQMOD : CONNECT europe-ubix.gltrade.com:443 HTTP/1.0
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG ad - Tunnelling...
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG ad - Getting buffer...
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG ad - Getting buffer...
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG ad - Acquiring semaphore...
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG ad - Semaphore acquired.
06-09-2010 00:00:54,737 [HttpProxyServer-thread-51] DEBUG ad - Task starting
06-09-2010 00:00:54,737 [HttpProxyServer-thread-140] DEBUG ad - Task starting
06-09-2010 00:00:54,737 [HttpProxyServer-thread-70] DEBUG ad - Threads have been kicked off, waiting for completion
06-09-2010 00:00:55,065 [HttpProxyServer-thread-140] DEBUG ad - Reading complete
06-09-2010 00:00:55,065 [HttpProxyServer-thread-140] DEBUG ad - Releasing buffer
06-09-2010 00:00:55,065 [HttpProxyServer-thread-140] DEBUG ad - Buffer released
06-09-2010 00:00:55,065 [HttpProxyServer-thread-140] DEBUG ad - Shutting down output
06-09-2010 00:00:55,065 [HttpProxyServer-thread-140] DEBUG ad - Output shut down
06-09-2010 00:00:55,065 [HttpProxyServer-thread-140] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:55,065 [HttpProxyServer-thread-51] DEBUG ad - Socket exception: Software caused connection abort: recv failed
06-09-2010 00:00:55,065 [HttpProxyServer-thread-51] DEBUG ad - Releasing buffer
06-09-2010 00:00:55,065 [HttpProxyServer-thread-51] DEBUG ad - Buffer released
06-09-2010 00:00:55,065 [HttpProxyServer-thread-51] DEBUG ad - Shutting down output
06-09-2010 00:00:55,065 [HttpProxyServer-thread-51] DEBUG ad - Output shut down
06-09-2010 00:00:55,065 [HttpProxyServer-thread-51] DEBUG ad - Semaphore released, thread ending
06-09-2010 00:00:55,065 [HttpProxyServer-thread-70] DEBUG ad - Threads have completed
06-09-2010 00:00:55,065 [HttpProxyServer-thread-70] DEBUG ad - Semaphore released
06-09-2010 00:00:55,065 [HttpProxyServer-thread-70] DEBUG ad - All closed
06-09-2010 00:00:55,065 [HttpProxyServer-thread-70]  INFO pb - DONE: contentLength=342
06-09-2010 00:00:57,034 [HttpProxyServer-thread-55]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.219,port=2301,localport=8080]
06-09-2010 00:00:57,034 [HttpProxyServer-thread-55]  INFO pb - STORE_REQUEST_LINE (before) :GET http://player.nrj.fr/V4/nrj/playlists_webradios/playlist_1.xml?uniq=1283728318346 HTTP/1.1
06-09-2010 00:00:57,034 [HttpProxyServer-thread-55]  INFO pb - STORE_REQUEST_LINE (before) :GET http://player.nrj.fr/V4/nrj/playlists_webradios/playlist_1.xml?uniq=1283728318346 HTTP/1.1
06-09-2010 00:00:57,034 [HttpProxyServer-thread-55]  INFO pb - STORE_REQUEST_LINE (before) :GET http://player.nrj.fr/V4/nrj/playlists_webradios/playlist_1.xml?uniq=1283728318346 HTTP/1.1
06-09-2010 00:00:57,034 [HttpProxyServer-thread-55] DEBUG nc - Do action called
06-09-2010 00:00:57,096 [HttpProxyServer-thread-55] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:00:57,096 [HttpProxyServer-thread-55] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:00:57,096 [HttpProxyServer-thread-55]  INFO sb - REQMOD : GET http://player.nrj.fr/V4/nrj/playlists_webradios/playlist_1.xml?uniq=1283728318346 HTTP/1.0
06-09-2010 00:00:57,237 [HttpProxyServer-thread-55]  INFO pb - DONE: contentLength=3315
06-09-2010 00:00:57,690 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:00:58,737 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG nc - Resource failed jc{10.0.0.1:8080,plain}
06-09-2010 00:01:01,190 [HttpProxyServer-thread-130]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.219,port=2302,localport=8080]
06-09-2010 00:01:01,190 [HttpProxyServer-thread-130]  INFO pb - STORE_REQUEST_LINE (before) :POST http://safebrowsing.clients.google.com/safebrowsing/downloads?client=googlechrome&appver=5.0.375.127&pver=2.2&wrkey=AKEgNisEiqkhIxdQSLGoDoPGZZH-WB7qwwWGBfsHnFqgNw_RVmk6Metu0Yud6XvtWZ8Bg0qrIz_QyD1-WQs_kvojZ4CM81M4AA== HTTP/1.1
06-09-2010 00:01:01,190 [HttpProxyServer-thread-130]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=104
06-09-2010 00:01:01,190 [HttpProxyServer-thread-130]  INFO pb - STORE_REQUEST_LINE (before) :POST http://safebrowsing.clients.google.com/safebrowsing/downloads?client=googlechrome&appver=5.0.375.127&pver=2.2&wrkey=AKEgNisEiqkhIxdQSLGoDoPGZZH-WB7qwwWGBfsHnFqgNw_RVmk6Metu0Yud6XvtWZ8Bg0qrIz_QyD1-WQs_kvojZ4CM81M4AA== HTTP/1.1
06-09-2010 00:01:01,190 [HttpProxyServer-thread-130]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=104
06-09-2010 00:01:01,206 [HttpProxyServer-thread-130]  INFO pb - STORE_REQUEST_LINE (before) :POST http://safebrowsing.clients.google.com/safebrowsing/downloads?client=googlechrome&appver=5.0.375.127&pver=2.2&wrkey=AKEgNisEiqkhIxdQSLGoDoPGZZH-WB7qwwWGBfsHnFqgNw_RVmk6Metu0Yud6XvtWZ8Bg0qrIz_QyD1-WQs_kvojZ4CM81M4AA== HTTP/1.1
06-09-2010 00:01:01,206 [HttpProxyServer-thread-130]  INFO pb - STORE_REQUEST_HEADERS. Content-Length=104
06-09-2010 00:01:01,206 [HttpProxyServer-thread-130] DEBUG nc - Do action called
06-09-2010 00:01:01,268 [HttpProxyServer-thread-130] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:01:01,268 [HttpProxyServer-thread-130] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:01:01,268 [HttpProxyServer-thread-130]  INFO sb - REQMOD : POST http://safebrowsing.clients.google.com/safebrowsing/downloads?client=googlechrome&appver=5.0.375.127&pver=2.2&wrkey=AKEgNisEiqkhIxdQSLGoDoPGZZH-WB7qwwWGBfsHnFqgNw_RVmk6Metu0Yud6XvtWZ8Bg0qrIz_QyD1-WQs_kvojZ4CM81M4AA== HTTP/1.0
06-09-2010 00:01:01,362 [HttpProxyServer-thread-130]  INFO pb - DONE: contentLength=1002
06-09-2010 00:01:01,377 [HttpProxyServer-thread-60]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.219,port=2303,localport=8080]
06-09-2010 00:01:01,377 [HttpProxyServer-thread-60]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAEYnZ8CIJ6fAjIFnY8AAAM HTTP/1.1
06-09-2010 00:01:01,377 [HttpProxyServer-thread-60]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAEYnZ8CIJ6fAjIFnY8AAAM HTTP/1.1
06-09-2010 00:01:01,377 [HttpProxyServer-thread-60]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAEYnZ8CIJ6fAjIFnY8AAAM HTTP/1.1
06-09-2010 00:01:01,377 [HttpProxyServer-thread-60] DEBUG nc - Do action called
06-09-2010 00:01:01,456 [HttpProxyServer-thread-60] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:01:01,456 [HttpProxyServer-thread-60] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:01:01,456 [HttpProxyServer-thread-60]  INFO sb - REQMOD : GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAEYnZ8CIJ6fAjIFnY8AAAM HTTP/1.0
06-09-2010 00:01:01,549 [HttpProxyServer-thread-60]  INFO pb - DONE: contentLength=1150
06-09-2010 00:01:01,581 [HttpProxyServer-thread-163]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.219,port=2304,localport=8080]
06-09-2010 00:01:01,596 [HttpProxyServer-thread-163]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAEYnp8CIKKfAioFoY8AAAMyBZ6PAAAH HTTP/1.1
06-09-2010 00:01:01,596 [HttpProxyServer-thread-163]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAEYnp8CIKKfAioFoY8AAAMyBZ6PAAAH HTTP/1.1
06-09-2010 00:01:01,596 [HttpProxyServer-thread-163]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAEYnp8CIKKfAioFoY8AAAMyBZ6PAAAH HTTP/1.1
06-09-2010 00:01:01,596 [HttpProxyServer-thread-163] DEBUG nc - Do action called
06-09-2010 00:01:01,659 [HttpProxyServer-thread-163] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:01:01,659 [HttpProxyServer-thread-163] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:01:01,659 [HttpProxyServer-thread-163]  INFO sb - REQMOD : GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAEYnp8CIKKfAioFoY8AAAMyBZ6PAAAH HTTP/1.0
06-09-2010 00:01:01,737 [PollingThread-jc{10.0.0.1:8080,plain}] DEBUG yd - Polling for resource jc{10.0.0.1:8080,plain}
06-09-2010 00:01:01,768 [HttpProxyServer-thread-163]  INFO pb - DONE: contentLength=1639
06-09-2010 00:01:01,784 [HttpProxyServer-thread-91]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.219,port=2305,localport=8080]
06-09-2010 00:01:01,784 [HttpProxyServer-thread-91]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAAYh78BIIi_ATIFh18AAAM HTTP/1.1
06-09-2010 00:01:01,799 [HttpProxyServer-thread-91]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAAYh78BIIi_ATIFh18AAAM HTTP/1.1
06-09-2010 00:01:01,815 [HttpProxyServer-thread-91]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAAYh78BIIi_ATIFh18AAAM HTTP/1.1
06-09-2010 00:01:01,815 [HttpProxyServer-thread-91] DEBUG nc - Do action called
06-09-2010 00:01:01,862 [HttpProxyServer-thread-91] DEBUG nc - Resource succeeded jc{proxy50.scansafe.net:8080,plain}
06-09-2010 00:01:01,862 [HttpProxyServer-thread-91] DEBUG jd - 3DES Encryption took 0 ms
06-09-2010 00:01:01,862 [HttpProxyServer-thread-91]  INFO sb - REQMOD : GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAAYh78BIIi_ATIFh18AAAM HTTP/1.0
06-09-2010 00:01:01,971 [HttpProxyServer-thread-91]  INFO pb - DONE: contentLength=518
06-09-2010 00:01:02,034 [HttpProxyServer-thread-147]  INFO pb - SETUP_CONNECTION: client=Socket[addr=/10.215.60.219,port=2306,localport=8080]
06-09-2010 00:01:02,034 [HttpProxyServer-thread-147]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAAYiL8BIIy_ASoFiV8AAA8yBYhfAAAB HTTP/1.1
06-09-2010 00:01:02,034 [HttpProxyServer-thread-147]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-cache.google.com/safebrowsing/rd/ChNnb29nLW1hbHdhcmUtc2hhdmFyEAAYiL8BIIy_ASoFiV8AAA8yBYhfAAAB HTTP/1.1
06-09-2010 00:01:02,049 [HttpProxyServer-thread-147]  INFO pb - STORE_REQUEST_LINE (before) :GET http://safebrowsing-down
si vous avez des recommandations et des remarques sur le parsing n'hesitez pas mais priorite à diminuer le temps du parsing merci