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:
|
------------log--------------
Loading control script C:\Program Files\DebugDiag\scripts\CrashRule_Process_w3wp.exe.vbs
DumpPath set to C:\Program Files\DebugDiag\Logs\Crash rule for all instances of w3wp.exe
[6/25/2009 11:49:45 AM] Process created. BaseModule - c:\windows\system32\inetsrv\w3wp.exeBaseThread System ID - 1536
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4444
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 1960
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 6028
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4812
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 1468
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 5708
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 684
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 5132
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 676
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 592
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 5688
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4500
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 588
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 5048
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 188
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4932
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4360
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 700
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4476
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4568
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4960
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4952
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 1448
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 716
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 5276
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4340
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 5072
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4888
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 5052
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 2852
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 4416
[6/25/2009 11:49:45 AM] Thread created. New thread system id - 6108
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\ntdll.dll loaded at 0x7c800000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\kernel32.dll loaded at 0x77e40000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\msvcrt.dll loaded at 0x77ba0000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\ADVAPI32.dll loaded at 0x77f50000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\RPCRT4.dll loaded at 0x77c50000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\USER32.dll loaded at 0x77380000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\GDI32.dll loaded at 0x77c00000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\ole32.dll loaded at 0x77670000
[6/25/2009 11:49:45 AM] c:\windows\system32\inetsrv\IISUTIL.dll loaded at 0x64700000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\CRYPT32.dll loaded at 0x761b0000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\MSASN1.dll loaded at 0x76190000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\xpsp2res.dll loaded at 0x10000000
[6/25/2009 11:49:45 AM] c:\windows\system32\inetsrv\w3core.dll loaded at 0x5a390000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\IISMAP.dll loaded at 0x5a420000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\IisRTL.DLL loaded at 0x647b0000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\WS2_32.dll loaded at 0x71c00000
[6/25/2009 11:49:45 AM] C:\WINDOWS\system32\WS2HELP.dll loaded at 0x71bf0000
[6/25/2009 11:49:45 AM] c:\windows\system32\inetsrv\LONSINT.dll loaded at 0x62da0000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\Secur32.dll loaded at 0x76f50000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\NETAPI32.dll loaded at 0x71c40000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\OLEAUT32.dll loaded at 0x77d00000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\strmfilt.dll loaded at 0x5b640000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\HTTPAPI.dll loaded at 0x67150000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\SHLWAPI.dll loaded at 0x77da0000
[6/25/2009 11:49:46 AM] c:\windows\system32\inetsrv\W3CACHE.dll loaded at 0x5a400000
[6/25/2009 11:49:46 AM] c:\windows\system32\inetsrv\W3TP.dll loaded at 0x5a300000
[6/25/2009 11:49:46 AM] c:\windows\system32\inetsrv\W3COMLOG.dll loaded at 0x5a3f0000
[6/25/2009 11:49:46 AM] c:\windows\system32\inetsrv\w3dt.dll loaded at 0x5a360000
[6/25/2009 11:49:46 AM] c:\windows\system32\inetsrv\wamreg.DLL loaded at 0x60ba0000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\WSOCK32.dll loaded at 0x71bb0000
[6/25/2009 11:49:46 AM] c:\windows\system32\inetsrv\iisres.dll loaded at 0x6d0f0000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\CLBCatQ.DLL loaded at 0x777b0000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\COMRes.dll loaded at 0x77010000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\VERSION.dll loaded at 0x77b90000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\ADMWPROX.DLL loaded at 0x608f0000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\rsaenh.dll loaded at 0x68000000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\PSAPI.DLL loaded at 0x76b70000
[6/25/2009 11:49:46 AM] \\?\C:\IISDebugTools\IISCHAgent.dll loaded at 0x67300000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\NTMARTA.DLL loaded at 0x77e00000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\SAMLIB.dll loaded at 0x5ccf0000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\WLDAP32.dll loaded at 0x76f10000
[6/25/2009 11:49:46 AM] C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll loaded at 0x60060000
[6/25/2009 11:49:46 AM] C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6B128700\MSVCR80.dll loaded at 0x78130000
[6/25/2009 11:49:46 AM] c:\windows\system32\inetsrv\w3isapi.dll loaded at 0x5a320000
[6/25/2009 11:49:46 AM] C:\WINDOWS\System32\mswsock.dll loaded at 0x71b20000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\DNSAPI.dll loaded at 0x76ed0000
[6/25/2009 11:49:46 AM] C:\WINDOWS\System32\winrnr.dll loaded at 0x76f70000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\rasadhlp.dll loaded at 0x76f80000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\inetsrv\gzip.dll loaded at 0x685b0000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\mpr.dll loaded at 0x71bd0000
[6/25/2009 11:49:46 AM] \\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_isapi.dll loaded at 0x79e60000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\USERENV.dll loaded at 0x76920000
[6/25/2009 11:49:46 AM] \\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\MSVCR71.dll loaded at 0x7c340000
[6/25/2009 11:49:46 AM] C:\WINDOWS\system32\mscoree.dll loaded at 0x79000000
[6/25/2009 11:49:47 AM] C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorsvr.dll loaded at 0x791b0000
[6/25/2009 11:49:47 AM] C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\fusion.dll loaded at 0x01ea0000
[6/25/2009 11:49:47 AM] C:\WINDOWS\system32\SHELL32.dll loaded at 0x7c8d0000
[6/25/2009 11:49:47 AM] C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.2778_x-ww_A8F04F11\comctl32.dll loaded at 0x77420000
[6/25/2009 11:49:47 AM] c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll loaded at 0x79780000
[6/25/2009 11:49:47 AM] c:\windows\assembly\nativeimages1_v1.1.4322\mscorlib\1.0.5000.0__b77a5c561934e089_7d017ecb\mscorlib.dll loaded at 0x79990000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system.web.dll loaded at 0x7a090000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll loaded at 0x7b0a0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll loaded at 0x7b490000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.xml.dll loaded at 0x7bc10000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\system.data.dll loaded at 0x7a6e0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseservices.dll loaded at 0x02300000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.web.regularexpressions\1.0.5000.0__b03f5f7f11d50a3a\system.web.regularexpressions.dll loaded at 0x7a2a0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\microsoft.visualc\7.0.5000.0__b03f5f7f11d50a3a\microsoft.visualc.dll loaded at 0x10a70000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.directoryservices\1.0.5000.0__b03f5f7f11d50a3a\system.directoryservices.dll loaded at 0x7a000000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.runtime.remoting\1.0.5000.0__b77a5c561934e089\system.runtime.remoting.dll loaded at 0x79640000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.runtime.serialization.formatters.soap\1.0.5000.0__b03f5f7f11d50a3a\system.runtime.serialization.formatters.soap.dll loaded at 0x79550000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\cscompmgd\7.0.5000.0__b03f5f7f11d50a3a\cscompmgd.dll loaded at 0x53760000
[6/25/2009 11:49:47 AM] C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\MSCORJIT.DLL loaded at 0x79430000
[6/25/2009 11:49:47 AM] C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorsn.dll loaded at 0x79510000
[6/25/2009 11:49:47 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\7ljuktqb.dll loaded at 0x026c0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\microsoft.visualbasic\7.0.5000.0__b03f5f7f11d50a3a\microsoft.visualbasic.dll loaded at 0x52b80000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.windows.forms\1.0.5000.0__b77a5c561934e089\system.windows.forms.dll loaded at 0x7b610000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\accessibility\1.0.5000.0__b03f5f7f11d50a3a\accessibility.dll loaded at 0x79e40000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a\system.web.services.dll loaded at 0x7a2c0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\system.web.mobile.dll loaded at 0x7a1d0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.design\1.0.5000.0__b03f5f7f11d50a3a\system.design.dll loaded at 0x7ab90000
[6/25/2009 11:49:47 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\assembly\dl2\28f81e98\00e1cb05_690fc901\ufcwwebcontrols.dll loaded at 0x11000000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.management\1.0.5000.0__b03f5f7f11d50a3a\system.management.dll loaded at 0x0c710000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\ufcwencryption\1.0.0.0__6dc791942a3a1ab8\ufcwencryption.dll loaded at 0x0c770000
[6/25/2009 11:49:47 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\assembly\dl2\ac3f84d0\0013128e_cf59c701\ufcwwebservices.dll loaded at 0x0c790000
[6/25/2009 11:49:47 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\assembly\dl2\24cd37c3\00e6e08c_cf59c701\ufcwlibrary.dll loaded at 0x0c7a0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\system.configuration.install\1.0.5000.0__b03f5f7f11d50a3a\system.configuration.install.dll loaded at 0x79fe0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\microsoft.jscript\7.0.5000.0__b03f5f7f11d50a3a\microsoft.jscript.dll loaded at 0x56c30000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\microsoft.vsa\7.0.5000.0__b03f5f7f11d50a3a\microsoft.vsa.dll loaded at 0x56d00000
[6/25/2009 11:49:47 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\assembly\dl2\c8582acd\bc369395_9c45c901\localhost.dll loaded at 0x0c7c0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\c1.web.c1command\1.0.20052.104__96d8a77dc0c22f6b\c1.web.c1command.dll loaded at 0x0c7f0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\microsoft.mshtml\7.0.3300.0__b03f5f7f11d50a3a\microsoft.mshtml.dll loaded at 0x0c890000
[6/25/2009 11:49:47 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\assembly\dl2\3e65e8bd\000ee2c2_f057c601\ufcwcrystal.dll loaded at 0x0d080000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.enterprise\11.0.3300.0__692fbea5521e1304\crystaldecisions.enterprise.dll loaded at 0x0d090000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.enterprise.desktop.report\11.0.3300.0__692fbea5521e1304\crystaldecisions.enterprise.desktop.report.dll loaded at 0x0d0c0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.enterprise.framework\11.0.3300.0__692fbea5521e1304\crystaldecisions.enterprise.framework.dll loaded at 0x0d0e0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.enterprise.infostore\11.0.3300.0__692fbea5521e1304\crystaldecisions.enterprise.infostore.dll loaded at 0x0d0f0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.enterprise.viewing.reportsource\11.0.3300.0__692fbea5521e1304\crystaldecisions.enterprise.viewing.reportsource.dll loaded at 0x0d110000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.controllers\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.controllers.dll loaded at 0x0d120000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.shared\11.0.3300.0__692fbea5521e1304\crystaldecisions.shared.dll loaded at 0x0d150000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.web\11.0.3300.0__692fbea5521e1304\crystaldecisions.web.dll loaded at 0x0d200000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.enterprise.utils.utcconverter\11.0.3300.0__692fbea5521e1304\crystaldecisions.enterprise.utils.utcconverter.dll loaded at 0x0d250000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.enterprise.pluginmanager\11.0.3300.0__692fbea5521e1304\crystaldecisions.enterprise.pluginmanager.dll loaded at 0x0d260000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\envdte\7.0.3300.0__b03f5f7f11d50a3a\envdte.dll loaded at 0x50b30000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\stdole\7.0.3300.0__b03f5f7f11d50a3a\stdole.dll loaded at 0x566f0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.datadefmodel\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.datadefmodel.dll loaded at 0x0d270000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.reportdefmodel\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.reportdefmodel.dll loaded at 0x0d2b0000
[6/25/2009 11:49:47 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.commlayer\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.commlayer.dll loaded at 0x0d310000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.commonobjectmodel\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.commonobjectmodel.dll loaded at 0x0d330000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.cubedefmodel\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.cubedefmodel.dll loaded at 0x0d340000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportsource\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportsource.dll loaded at 0x0d350000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.crystalreports.engine\11.0.3300.0__692fbea5521e1304\crystaldecisions.crystalreports.engine.dll loaded at 0x0d370000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\office\7.0.3300.0__b03f5f7f11d50a3a\office.dll loaded at 0x50b70000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.clientdoc\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.clientdoc.dll loaded at 0x0d3d0000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.xmlserialize\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.xmlserialize.dll loaded at 0x0d3f0000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.datasetconversion\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.datasetconversion.dll loaded at 0x0d600000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.keycode\11.0.3300.0__692fbea5521e1304\crystaldecisions.keycode.dll loaded at 0x0d620000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.prompting\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.prompting.dll loaded at 0x0d630000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.objectfactory\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.objectfactory.dll loaded at 0x0d660000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\crystaldecisions.reportappserver.commoncontrols\11.0.3300.0__692fbea5521e1304\crystaldecisions.reportappserver.commoncontrols.dll loaded at 0x0d670000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\assembly\dl2\5489353f\004c6e33_1463c601\c1.web.c1webgrid.dll loaded at 0x0d6b0000
[6/25/2009 11:49:48 AM] C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\diasymreader.dll loaded at 0x51a70000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\lf6j7g-g.dll loaded at 0x0d880000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\rgkaddfc.dll loaded at 0x0d8a0000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\hnetcfg.dll loaded at 0x5f270000
[6/25/2009 11:49:48 AM] C:\WINDOWS\System32\wshtcpip.dll loaded at 0x71ae0000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_ufcwsecurity\a6066684\2ce6b21b\pvb6lavk.dll loaded at 0x0dee0000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_ufcwsecurity\a6066684\2ce6b21b\assembly\dl2\fff6114a\00dc0858_aff8c801\ufcwwebcontrols.dll loaded at 0x0df00000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_ufcwsecurity\a6066684\2ce6b21b\assembly\dl2\9cd65291\0013128e_cf59c701\ufcwwebservices.dll loaded at 0x0e030000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_ufcwsecurity\a6066684\2ce6b21b\assembly\dl2\fce7ba79\00e6e08c_cf59c701\ufcwlibrary.dll loaded at 0x0e040000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_ufcwsecurity\a6066684\2ce6b21b\assembly\dl2\664d0f90\0054c96a_ef8cc701\txcodelibrary.dll loaded at 0x0e050000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_ufcwsecurity\a6066684\2ce6b21b\assembly\dl2\e85947e9\826b3bb0_a70ec901\ufcwsecurity.dll loaded at 0x0e070000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_ufcwsecurity\a6066684\2ce6b21b\assembly\dl2\96e81b41\0032be3a_9c0ec901\ufcwtransact.dll loaded at 0x0e090000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_ufcwsecurity\a6066684\2ce6b21b\assembly\dl2\bb741307\009bdc7c_e963c601\ufcwsql.dll loaded at 0x0e9e0000
[6/25/2009 11:49:48 AM] c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseservices.thunk.dll loaded at 0x79620000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_trancode\13552b3c\a9d4d5bb\daskme_c.dll loaded at 0x0f860000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_trancode\13552b3c\a9d4d5bb\assembly\dl2\fcddefae\00500497_a37dc401\nunit.framework.dll loaded at 0x0f880000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_trancode\13552b3c\a9d4d5bb\assembly\dl2\e5a26673\0054c96a_ef8cc701\txcodelibrary.dll loaded at 0x0f8d0000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_trancode\13552b3c\a9d4d5bb\assembly\dl2\43081c34\00e6e08c_cf59c701\ufcwlibrary.dll loaded at 0x0f8e0000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_trancode\13552b3c\a9d4d5bb\assembly\dl2\46f4874f\009bdc7c_e963c601\ufcwsql.dll loaded at 0x0f8f0000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_trancode\13552b3c\a9d4d5bb\assembly\dl2\274ff443\0086bedf_39b4c801\ufcwwebcontrols.dll loaded at 0x0f900000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_trancode\13552b3c\a9d4d5bb\assembly\dl2\ee6e4556\0013128e_cf59c701\ufcwwebservices.dll loaded at 0x0f9f0000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_trancode\13552b3c\a9d4d5bb\assembly\dl2\d2868679\20db8743_05b5c801\trancode.dll loaded at 0x0fa10000
[6/25/2009 11:49:48 AM] C:\Program Files\Common Files\Microsoft Shared\VS7Debug\csm.dll loaded at 0x517e0000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\Com\comadmin.dll loaded at 0x6e060000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\MfcSubs.dll loaded at 0x61e50000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\dbnetlib.dll loaded at 0x6d560000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\security.dll loaded at 0x71f60000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\schannel.dll loaded at 0x76750000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\dssenh.dll loaded at 0x68100000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_sessionservice\f5148cf5\a47dba7b\xaxctdcb.dll loaded at 0x106f0000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_sessionservice\f5148cf5\a47dba7b\assembly\dl2\24fd94e0\00a3f8d1_36ebc301\sessionservice.dll loaded at 0x10710000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_sessionservice\f5148cf5\a47dba7b\assembly\dl2\6111677c\0080441d_69eac301\tools.traceutility.dll loaded at 0x10720000
[6/25/2009 11:49:48 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_sessionservice\f5148cf5\a47dba7b\assembly\dl2\6a21d13c\0080441d_69eac301\session.dll loaded at 0x10730000
[6/25/2009 11:49:48 AM] C:\Program Files\Business Objects\BusinessObjects Enterprise 11\win32_x86\EnterpriseFramework.dll loaded at 0x533b0000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\etc-1-0-12-3.dll loaded at 0x63000000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\MSVCP71.dll loaded at 0x7c3a0000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\ebus-3-3-2-4.dll loaded at 0x64000000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\cxlibw-2-6.dll loaded at 0x49920000
[6/25/2009 11:49:48 AM] C:\WINDOWS\system32\dbghelp.dll loaded at 0x6d580000
[6/25/2009 11:49:49 AM] C:\WINDOWS\system32\libOCAHelperw-2-13.dll loaded at 0x53130000
[6/25/2009 11:49:49 AM] C:\WINDOWS\system32\fssl-1-2-1-1.dll loaded at 0x53000000
[6/25/2009 11:49:49 AM] C:\WINDOWS\system32\ATL71.DLL loaded at 0x7c120000
[6/25/2009 11:49:49 AM] C:\Program Files\Business Objects\BusinessObjects Enterprise 11\win32_x86\log_xn_system.dll loaded at 0x57eb0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\root\17709b3b\1383f3b\ragjnim3.dll loaded at 0x109b0000
[6/25/2009 11:49:49 AM] C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.3790.1830_x-ww_24C40C58\gdiplus.dll loaded at 0x4dd60000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\n6neo6ys.dll loaded at 0x10c70000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\assembly\dl2\ed6252bd\004c6e33_1463c601\c1.web.c1webgrid.dll loaded at 0x10c90000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\assembly\dl2\0c624cc0\7c629ccc_97f5c901\sai.dll loaded at 0x10d10000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\assembly\dl2\a0e71b49\00e1cb05_690fc901\ufcwwebcontrols.dll loaded at 0x10d80000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\assembly\dl2\486b3218\0013128e_cf59c701\ufcwwebservices.dll loaded at 0x10e70000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\assembly\dl2\9309f9b4\00e6e08c_cf59c701\ufcwlibrary.dll loaded at 0x10e80000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\assembly\dl2\aa4931f6\000ee2c2_f057c601\ufcwcrystal.dll loaded at 0x10ea0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\q4ge1yh1.dll loaded at 0x10ef0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\sai\1f42aa13\9dda5c8\7kft4zka.dll loaded at 0x10f00000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_skills\6cf05eff\4d244c9b\r97x627x.dll loaded at 0x11a80000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_skills\6cf05eff\4d244c9b\assembly\dl2\3aa8c679\fa5ad540_49f3c901\skills.dll loaded at 0x11aa0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_skills\6cf05eff\4d244c9b\assembly\dl2\3cf0a2e2\00e1cb05_690fc901\ufcwwebcontrols.dll loaded at 0x11ad0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_skills\6cf05eff\4d244c9b\assembly\dl2\94599a77\0013128e_cf59c701\ufcwwebservices.dll loaded at 0x11bc0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_skills\6cf05eff\4d244c9b\assembly\dl2\10be0cd5\00e6e08c_cf59c701\ufcwlibrary.dll loaded at 0x11bd0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_utilities\0799c995\7d6f3fdb\76clumnd.dll loaded at 0x12dc0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_utilities\0799c995\7d6f3fdb\assembly\dl2\c0016b4f\1a9ac0ab_caa8c901\utilities.dll loaded at 0x12de0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_utilities\0799c995\7d6f3fdb\assembly\dl2\f59cbc23\00e6e08c_cf59c701\ufcwlibrary.dll loaded at 0x12df0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_utilities\0799c995\7d6f3fdb\assembly\dl2\a1f769e4\0013128e_cf59c701\ufcwwebservices.dll loaded at 0x12e00000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_fms\ae03d269\8f01dd1b\qfqikphw.dll loaded at 0x12f70000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_fms\ae03d269\8f01dd1b\assembly\dl2\ea816f3f\00bc8dcc_f78cc701\txcodelibrary.dll loaded at 0x12f90000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_fms\ae03d269\8f01dd1b\assembly\dl2\f647189d\004ea5ee_d759c701\ufcwlibrary.dll loaded at 0x12fa0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_fms\ae03d269\8f01dd1b\assembly\dl2\1a0e9bef\00499067_710fc901\ufcwwebcontrols.dll loaded at 0x12fb0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_fms\ae03d269\8f01dd1b\assembly\dl2\6dd991d4\007bd6ef_d759c701\ufcwwebservices.dll loaded at 0x130a0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_fms\ae03d269\8f01dd1b\assembly\dl2\c626581f\00a40f9b_2039c901\ufcwtransact.dll loaded at 0x130c0000
[6/25/2009 11:49:49 AM] c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net files\webservices_fms\ae03d269\8f01dd1b\assembly\dl2\3ac1e556\58b6e6bd_1670c901\fms.dll loaded at 0x13a70000
[6/25/2009 11:49:49 AM] Thread created. New thread system id - 4764
[6/25/2009 11:49:49 AM] Initializing control script
[6/25/2009 11:49:49 AM] Clearing any existing breakpoints
[6/25/2009 11:49:49 AM]
[6/25/2009 11:49:49 AM] Current Breakpoint List(BL)
[6/25/2009 11:49:49 AM] Thread exited. Exiting thread system id - 4764. Exit code - 0x00000000
[6/25/2009 11:50:09 AM] Thread created. New thread system id - 5648
[6/25/2009 11:50:09 AM] Thread created. New thread system id - 396
[6/25/2009 11:50:09 AM] Thread created. New thread system id - 2116
[6/25/2009 11:50:10 AM] First chance exception - 0xe06d7363 caused by thread with system id 4932
[6/25/2009 11:50:10 AM] First chance exception - 0xe06d7363 caused by thread with system id 4932
[6/25/2009 11:50:10 AM] C:\Program Files\Business Objects\BusinessObjects Enterprise 11\win32_x86\plugins\auth\secEnterprise\secEnterprise.dll loaded at 0x145a0000
[6/25/2009 11:50:10 AM] Thread created. New thread system id - 4124
[6/25/2009 11:50:10 AM] First chance exception - 0xe0434f4d caused by thread with system id 4932
[6/25/2009 11:50:10 AM] First chance exception - 0xe0434f4d caused by thread with system id 4932
[6/25/2009 11:50:10 AM] First chance exception - 0xe0434f4d caused by thread with system id 4932
[6/25/2009 11:50:10 AM] First chance exception - 0xe0434f4d caused by thread with system id 4932
[6/25/2009 11:50:10 AM] First chance exception - 0xe0434f4d caused by thread with system id 4932
[6/25/2009 11:50:10 AM] Thread exited. Exiting thread system id - 4124. Exit code - 0x00000000
[6/25/2009 11:50:10 AM] C:\Program Files\Business Objects\BusinessObjects Enterprise 11\win32_x86\plugins\auth\secEnterprise\secEnterprise.dll unloaded from 0x145a0000
[6/25/2009 11:50:10 AM] Thread exited. Exiting thread system id - 5648. Exit code - 0x00000000
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
[6/25/2009 11:50:10 AM] Thread exited. Exiting thread system id - 2116. Exit code - 0x00000000
[6/25/2009 11:50:10 AM] Thread exited. Exiting thread system id - 396. Exit code - 0x00000000
[6/25/2009 11:50:19 AM] Thread created. New thread system id - 736
[6/25/2009 11:50:19 AM] Thread created. New thread system id - 5180
[6/25/2009 11:50:19 AM] Thread created. New thread system id - 240
[6/25/2009 11:50:19 AM] Thread created. New thread system id - 5568
[6/25/2009 11:50:24 AM] First chance exception - 0xe0434f4d caused by thread with system id 5276
[6/25/2009 11:50:24 AM] First chance exception - 0xe0434f4d caused by thread with system id 5276
[6/25/2009 11:50:24 AM] First chance exception - 0xe0434f4d caused by thread with system id 5276
[6/25/2009 11:50:24 AM] First chance exception - 0xe0434f4d caused by thread with system id 5276
[6/25/2009 11:50:24 AM] Thread created. New thread system id - 4604
[6/25/2009 11:50:59 AM] Thread exited. Exiting thread system id - 5568. Exit code - 0x00000000
[6/25/2009 11:50:59 AM] Thread exited. Exiting thread system id - 5180. Exit code - 0x00000000
[6/25/2009 11:50:59 AM] Thread exited. Exiting thread system id - 736. Exit code - 0x00000000
[6/25/2009 11:50:59 AM] Thread exited. Exiting thread system id - 6108. Exit code - 0x00000000
[6/25/2009 11:51:20 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:20 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:20 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:20 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:20 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:34 AM] Thread exited. Exiting thread system id - 4416. Exit code - 0x00000000
[6/25/2009 11:51:45 AM] First chance exception - 0xe0434f4d caused by thread with system id 5276
[6/25/2009 11:51:45 AM] First chance exception - 0xe0434f4d caused by thread with system id 5276
[6/25/2009 11:51:45 AM] First chance exception - 0xe0434f4d caused by thread with system id 5276
[6/25/2009 11:51:45 AM] First chance exception - 0xe0434f4d caused by thread with system id 5276
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:53 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:54 AM] Thread exited. Exiting thread system id - 4604. Exit code - 0x00000000
[6/25/2009 11:51:54 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:54 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:54 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:54 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:51:58 AM] Thread created. New thread system id - 4992
[6/25/2009 11:52:19 AM] Thread created. New thread system id - 1016
[6/25/2009 11:52:19 AM] Thread created. New thread system id - 4348
[6/25/2009 11:52:19 AM] Thread created. New thread system id - 2604
[6/25/2009 11:52:33 AM] First chance exception - 0xe0434f4d caused by thread with system id 5052
[6/25/2009 11:52:33 AM] First chance exception - 0xe0434f4d caused by thread with system id 5052
[6/25/2009 11:52:58 AM] Thread created. New thread system id - 5336
[6/25/2009 11:52:59 AM] First chance exception - 0xe0434f4d caused by thread with system id 4932
[6/25/2009 11:52:59 AM] First chance exception - 0xe0434f4d caused by thread with system id 4932
[6/25/2009 11:53:00 AM] Thread exited. Exiting thread system id - 240. Exit code - 0x00000000
[6/25/2009 11:53:00 AM] Thread exited. Exiting thread system id - 1016. Exit code - 0x00000000
[6/25/2009 11:53:01 AM] Thread exited. Exiting thread system id - 2604. Exit code - 0x00000000
[6/25/2009 11:53:03 AM] First chance exception - 0xe0434f4d caused by thread with system id 4960
[6/25/2009 11:53:05 AM] First chance exception - 0xc00000fd caused by thread with system id 4568
[6/25/2009 11:53:05 AM] First chance exception - 0xc00000fd caused by thread with system id 4568
[6/25/2009 11:53:05 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:53:05 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:53:05 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
[6/25/2009 11:53:05 AM] First chance exception - 0xe0434f4d caused by thread with system id 716
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
[6/25/2009 11:53:20 AM] Thread created. New thread system id - 2568
[6/25/2009 11:53:20 AM] Thread created. New thread system id - 4572
[6/25/2009 11:53:46 AM] First chance exception - 0xe0434f4d caused by thread with system id 4932
[6/25/2009 11:53:46 AM] First chance exception - 0xe0434f4d caused by thread with system id 4960
[6/25/2009 11:53:46 AM] First chance exception - 0xe0434f4d caused by thread with system id 4960
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
Script Error
Error Code - 0x80004005
Error Source [Unavailable]
Error Description [Could not obtain System ID for this thread]
Line 116, Column 2
[6/25/2009 11:53:51 AM] First chance exception - 0xc00000fd caused by thread with system id 4568
[6/25/2009 11:53:51 AM] First chance exception - 0xc00000fd caused by thread with system id 4568
[6/25/2009 11:53:51 AM] First chance exception - 0xc0000005 caused by thread with system id 4568
[6/25/2009 11:57:16 AM] Second chance exception - 0xc0000005 caused by thread with system id 4568
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 1536. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4444. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 6028. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 1960. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4812. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 5708. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 1468. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 684. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 5132. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 592. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 676. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4500. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 5048. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 588. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 188. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4476. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 700. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4360. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4952. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4932. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4960. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 1448. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 716. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 5072. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 5276. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4340. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4888. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 5052. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 2852. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 5336. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4992. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 2568. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4348. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 4572. Exit code - 0xffffffff
[6/25/2009 11:57:17 AM] Thread exited. Exiting thread system id - 5688. Exit code - 0xffffffff
[6/25/2009 11:57:18 AM] Process exited. Exit code - 0xffffffff
Tags:
windows server 2003 and 2008 and iis6 and iis7
|