summaryrefslogtreecommitdiff
path: root/TAO/ChangeLog
blob: dbd2191acfee3277addd3a8b1aa13cfcb828fcdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
Fri Jan 10 08:28:34 2003  Frank Hunleth  <frank@hunleth.com>

	* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp:

	Removed call to unsubscribe from multicast socket as this happens
	automatically.  Thanks to Don Hinton <dhinton@ieee.org> for
	pointing this out.

	* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
	* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h:

	Added code to check length of MIOP UniqueID so that it can be
	properly parsed.  Thanks to Chau Vincent
	<Vincent.Chau@fr.thalesgroup.com> for finding the problem when
	performing MIOP interoperability testing.  Also, added code to
	set the UniqueID and packet length fields properly per update to
	the MIOP spec and tightened bounds checks on MIOP packets to
	prevent buffer overruns.

	* orbsvcs/tests/Miop/McastHello/client.cpp:

	Fixed spelling error.

Thu Jan  9 11:01:24 2003  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

	* tao/try_macros.h: Removed the file from the repo. This is no
	  longer used and seems like a good time to remove it. Thanks to
	  Oliver Kellog for reminding us.

Tue Jan  7 09:02:52 2003  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

	* performance-tests/Memory/IORsize/Foo_i.h: Fixed fuzz errors.

Mon Jan  6 17:31:03 2003  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

	* tao/Reactive_Connect_Strategy.cpp:
	* tao/LF_Connect_Strategy.cpp: Used the cached pointer to access
	  the ORB_Core, instead of accessing the ORB_Core in the
	  transport. The reason why this should be done this way is too
	  involved to explain here, but suffice to say that in highly
	  multi-threaded environments the transports could dis-sappear
	  before the connection handlers. Accessing the ORB_Core from the
	  transport could then lead to vague crashes.

Mon Jan  6 17:12:40 2003  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>


	* performance-tests/Memory/IORsize/client.cpp:
	* performance-tests/Memory/IORsize/server.cpp:
	* performance-tests/Memory/IORsize/Memory_Growth.h:
	* performance-tests/Memory/IORsize/Memory_Growth.cpp:
	* performance-tests/Memory/IORsize/Foo_i.h:
	* performance-tests/Memory/IORsize/Foo_i.cpp:
	* performance-tests/Memory/IORsize/Makefile:
	* performance-tests/Memory/IORsize/Test.idl: A simple, again a
	  very simple test, to measure the memory consumed by the server
	  for unmarshalling an IOR. This test will not be compiled in all
	  the builds, but only in the builds where the scripts are run.

	* performance-tests/Memory/Makefile: Added the new test to the
	  list of directories.

Sat Jan 04 12:15:39 2003  Pradeep Gore  <pradeep@oomworks.com>

	* orbsvcs/Notify_Service/Notify_Server.cpp:
	  Removed extra ACE_CHECK_RETURN causing build errors.

Fri Jan  3 14:43:56 2003  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/util/utl_global.cpp:
	* TAO_IDL/include/idl_global.h:

	  Changes to the management of the IDL compiler's stack of prefixes,
	  to address a problem that appeared when there is a chain of
	  included IDL files. Thanks to Adee Ran <adeeran@yahoo.com> for
	  reporting the problem and supplying example IDL files to
	  reproduce it.

Fri Jan 03 14:22:14 2003  Pradeep Gore  <pradeep@oomworks.com>

	* orbsvcs/Notify_Service/Notify_Server.cpp:
	  Moved the call to <init> to catch any resulting exceptions and
	  exit gracefully.

	The following changes are made to fix the crashes observed on the
	scoreboard in the $TAO_ROOT/orbsvcs/tests/Notify/Sequence_Multi_Test.
	Thanks to Irfan and Bala for helping to fix this problem.

	* orbsvcs/orbsvcs/Notify/Container_T.cpp:
	  Changed the order of destruction of the Notify objects. The tree
	  is destroyed bottom up. This ensures that proxy objects that
	  refer to a valid parent during shutdown.

	* orbsvcs/orbsvcs/Notify/Method_Request.h:
	* orbsvcs/orbsvcs/Notify/Method_Request.inl:
	* orbsvcs/orbsvcs/Notify/Refcountable.h:
	* orbsvcs/orbsvcs/Notify/Refcountable.inl:
	  Moved the TAO_NS_Refcountable_Guard class from Method_Request.*
	  files into Refcountable.* files.

	* orbsvcs/orbsvcs/Notify/Object.cpp:
	  Moved the <worker_task_> and <proxy_poa_> data member shutdown
	  from the destructor to the <shutdown> method.

	* orbsvcs/orbsvcs/Notify/Object_T.cpp:
	  Replaced the TAO_NS_Object_RefCount_Guard with
	  TAO_NS_Refcountable_Guard.

	* orbsvcs/orbsvcs/Notify/Peer.cpp:
	  Protect the Peer from being destroyed while it is dispatching
	  updates by using a TAO_NS_Refcountable_Guard.

	* orbsvcs/orbsvcs/Notify/Types.h:
	  Removed the TAO_NS_Object_RefCount_Guard class. We use
	  TAO_NS_Refcountable_Guard instead.

	* orbsvcs/orbsvcs/Notify/Sequence/Batch_Buffering_Strategy.cpp:
	* orbsvcs/orbsvcs/Notify/Sequence/Batch_Buffering_Strategy.h:
	  Modified the <dequeue_available> method to return the number of
	  pending events.

	* orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
	* orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h:
	  + Protect the call to the event batch <push> method with
	  TAO_NS_Refcountable_Guard so that the proxy (and hence this
	  peer) is not destroyed while the push is in progress.
	  + Reset the pacing error on dispatch error so that we don't
	  schedule a timer on an object that is about to be destroyed.
	  + Schedule a timer in the <handle_timeout> method only if there
	  are pending events.

Fri Jan  3 07:48:01 2003  Chad Elliott  <elliott_c@ociweb.com>

        * tao/DynamicAny/DynamicAnyC.h:
        * tao/RTCORBA/RTCORBAC.h:

          Changed the name of the AIX template instantiation macro.

Thu Jan  2 17:51:49 2003  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_valuetype/arglist.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_cs.cpp:
        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be_include/be_codegen.h:
        * TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h:

          Moved generation of AMH exception holder raise_* method
          body from the stub header file to the stub source file. Also
          added explicit include of ace/Auto_Ptr when generating AMH
          classes (needed to correct AIX build errors).

Thu Jan  2 13:33:01 2003  Chad Elliott  <elliott_c@ociweb.com>

        * orbsvcs/orbsvcs/AV/AV_Core.h:
        * orbsvcs/orbsvcs/CosEvent/CEC_Reactive_ConsumerControl.h:
        * orbsvcs/orbsvcs/CosEvent/CEC_Reactive_Pulling_Strategy.h:
        * orbsvcs/orbsvcs/CosEvent/CEC_Reactive_SupplierControl.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp:
        * orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp:
        * orbsvcs/orbsvcs/Log/RTEventLogFactory_i.cpp:
        * orbsvcs/orbsvcs/Notify/ConsumerAdmin.cpp:
        * orbsvcs/orbsvcs/Notify/EventTypeSeq.h:
        * orbsvcs/orbsvcs/Notify/Refcountable.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredEvent.cpp:
        * orbsvcs/orbsvcs/Notify/SupplierAdmin.cpp:
        * tao/Condition.h:

          Added #include to correct AIX build errors.

        * tao/DynamicAny/DynamicAnyC.h:
        * tao/RTCORBA/RTCORBAC.h:

          Added a second macro TAO_INSTANTIATING_TEMPLATES to the safety
          check for these files to determine if the AIX compiler is
          instantiating templates.  If it is instantiating, then we must
          allow the compiler to #include these files.

Thu Jan  2 10:33:29 2003  Boris S Kolpackov  <boris@isis-server.isis.vanderbilt.edu>

        * tao/PortableServer/ImplRepoC.h:
        * tao/PortableServer/ImplRepoS.cpp:
        * tao/PortableServer/ImplRepoS.i:
        * tao/PortableServer/ImplRepoS_T.h:
        * tao/PortableServer/ImplRepoC.cpp:
        * tao/PortableServer/ImplRepoC.i:
        * tao/PortableServer/ImplRepoS.h:
        * tao/PortableServer/ImplRepoS_T.cpp:
        * tao/PortableServer/ImplRepoS_T.i:
        * tao/PortableServer/diffs/ImplRepo.diff: Regenerated
          ImplRepo.pidl which apparently fixed bug 1413. ImplRepo.diff
          was regenerate as well.

Thu Jan  2 00:15:57 2003  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Regression/ORB_Task.cpp:
        * tests/Bug_1020_Regression/client.cpp:
        * tests/Bug_1270_Regression/ORB_Task.cpp:
        * tests/Bug_1270_Regression/client.cpp:
        * tests/Bug_1361_Regression/ORB_Task.cpp:
        * tests/Bug_1361_Regression/client.cpp:
        * tests/Nested_Upcall_Crash/Client_Peer.cpp:
        * tests/Nested_Upcall_Crash/client.cpp:
        * tests/Nested_Upcall_Crash/server.cpp:
        * tests/Server_Connection_Purging/client.cpp: Added missing
          includes to keep the compilation on AIX happy. Missing header
          files were tao/Environment.h and ace/Reactor.h.

        * tao/Utils/Servant_Var.inl:
        * tao/Utils/Servant_Var.h: #included ace/CORBA_Macros.h and
          tao/Environment.h to keep the AIX compilers happy.

          Thanks to Jon Wackley for donating these patches.

Tue Dec 31 23:53:17 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/include/idl_global.h: Added missing include to get it
          compiling on AIX.

        * tests/Bug_1269_Regression/ORB_Task.cpp: #included
          tao/Environment.h to get it compiling on AIX.

          Thanks to Jon Wackley for the patches.

Tue Dec 31 21:03:37 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * performance-tests/Makefile: Added the new directory to the list
          of DIRS
        * performance-tests/Memory/Makefile: Added a new Makefile to
          compile the sub-directories.

Tue Dec 31 20:55:48 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * performance-tests/Memory/Single_Threaded: A simple test for
          tracking memory usage. This is going to be compiled only on Linux

        * performance-tests/Memory/Single_Threaded/Memory_Growth.mpc:
        * performance-tests/Memory/Single_Threaded/Makefile:
        * performance-tests/Memory/Single_Threaded/Memory_Growth.cpp:
        * performance-tests/Memory/Single_Threaded/Memory_Growth.h:
        * performance-tests/Memory/Single_Threaded/README:
        * performance-tests/Memory/Single_Threaded/Test.idl:
        * performance-tests/Memory/Single_Threaded/client.cpp:
        * performance-tests/Memory/Single_Threaded/server.cpp: Files for
          the new test.

Tue Dec 31 19:33:09 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Condition.h:
        * tao/Condition.cpp: Added missing includes for the AIX compiler.
          Thanks to Jon Wackley for providing this patch.

        * tao/Leader_Follower.cpp (wait_for_event): Cached the transport
          id before waiting as a follower or drive the event loop as
          leader, and use the cached id for all the debug statements. The
          transport object could dissappear during the process of waiting
          for connection establishment or connection completion and calls
          on the transport object could crash. Thanks to Duane Binder for
          reporting this problem.

Tue Dec 31 14:03:53 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/RTCORBA/Profile_And_Endpoint_Selection/lanes_r:
        * tests/RTCORBA/Profile_And_Endpoint_Selection/bands_r:
        * tests/RTCORBA/Profile_And_Endpoint_Selection/invocation_priorities_r:
        * tests/RTCORBA/Profile_And_Endpoint_Selection/run_test.pl:
          Changed to run the tests with reduced numbered priority lanes on
          Solaris to avoid exhausting the limited SysV semaphores and
          causing unnecessary warnings.  Thanks to Irfan for the new set
          of configuration files.

Mon Dec 30 12:10:49 2002  Balachandran Natarajan  <bala@cs.wustl.edu>

        * examples/AMH/Sink_Server/st_server.dsp:
        * examples/AMH/Sink_Server/client.dsp:
        * examples/AMH/Sink_Server/mt_server.dsp: Changed the include path
          information in the release builds.

Mon Dec 30 08:49:31 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/util/utl_global.cpp:

          Fixed bug in #pragma prefix when the prefix directive is followed by
          an #include directive. Thanks to Adee Ran <adeeran@yahoo.com> for
          reporting the bug.

Mon Dec 30 06:12:53 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/AMH/Sink_Server/st_server.dsp (USERDEP__TEST_):
        * examples/AMH/Sink_Server/client.dsp:
        * examples/AMH/Sink_Server/mt_server.dsp: Changed the path to the
          tao_idl in the external_dependencies section. This should fix
          the warnings in the daily builds.

Sun Dec 29 11:29:20 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/AMH/Sink_Server/AMH_Sink_Server.dsw:
        * examples/AMH/Sink_Server/client.dsp:
        * examples/AMH/Sink_Server/st_server.dsp:
        * examples/AMH/Sink_Server/mt_server.dsp:
        * tests/AMH_Exceptions/AMH_Exceptions.dsw:
        * tests/AMH_Exceptions/server.dsp:
        * tests/AMH_Exceptions/client.dsp: Added the above files. No need
          to explain why they need to be added ;)

Sun Dec 29 08:44:06 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/ast/ast_array.cpp:
        * TAO_IDL/ast/ast_sequence.cpp:
        * TAO_IDL/be/be_array.cpp:
        * TAO_IDL/be/be_decl.cpp:
        * TAO_IDL/be/be_sequence.cpp:
        * TAO_IDL/be/be_union_branch.cpp:
        * TAO_IDL/be/be_valuetype.cpp:
        * TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
        * TAO_IDL/be/be_visitor_ami_pre_proc.cpp:
        * TAO_IDL/be/be_visitor_argument.cpp:
        * TAO_IDL/be/be_visitor_array.cpp:
        * TAO_IDL/be/be_visitor_attribute.cpp:
        * TAO_IDL/be/be_visitor_component.cpp:
        * TAO_IDL/be/be_visitor_decl.cpp:
        * TAO_IDL/be/be_visitor_exception.cpp:
        * TAO_IDL/be/be_visitor_field.cpp:
        * TAO_IDL/be/be_visitor_interface_fwd.cpp:
        * TAO_IDL/be/be_visitor_operation.cpp:
        * TAO_IDL/be/be_visitor_scope.cpp:
        * TAO_IDL/be/be_visitor_sequence.cpp:
        * TAO_IDL/be/be_visitor_structure.cpp:
        * TAO_IDL/be/be_visitor_typedef.cpp:
        * TAO_IDL/be/be_visitor_union.cpp:
        * TAO_IDL/be/be_visitor_union_branch.cpp:
        * TAO_IDL/be/be_visitor_valuetype_fwd.cpp: #include'd
          ace/Log_Msg.h  to all the above files. This helps compilation to
          go smooth on AIX.

        * TAO_IDL/include/ast_module.h: #include'd ace/Unbounded_Set.h.

        * tao/Condition.h: #include'd tao/orbconf.h and forward declared
          ACE_Time_Value

        * tao/FILE_Parser.cpp:
        * tao/Typecode.cpp: #include'd ace/Malloc_Base.h.

          All the above changes help compilation on AIX. Thanks to Jon
          Wackley <jonw@mountaincable.net> for providing these patches.

        * tao/Muxed_TMS.cpp:
        * tao/Muxed_TMS.h: Use recursive mutex instead of a simple
          mutex. This prevents deadlock that might occur, when a thread
          tries to send a request during reply dispatching.

Sat Dec 28 13:09:53 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tao/Strategies/SHMIOP_Transport.cpp (recv_i): Changed the recv_i
          method to handle closed socket correctly.  The original
          implementation caused SHMIOP falling into an infinite loop when
          the other end closed the connection.

Sat Dec 28 10:33:20 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1361_Regression/Server_Thread_Pool.cpp: Fixed warnings
          in Full builds.

Sat Dec 28 09:35:36 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Makefile.bor: Removed ior_corbaloc test.

Fri Dec 27 20:00:41 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1361_Regression/run_test.pl: Added more threads in the
          client to stress the ORB.

Fri Dec 27 14:01:28 2002  Priyanka Gontla  <pgontla@ece.uci.edu>

        * orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
          Decrementing the reference count for object references
          when unbinding it from the map. Thanks to Carlos for pointing
          it out. Fixed bug 1403.

        * orbsvcs/tests/ImplRepo/run_test.pl:
          Fixed the typo in passing the name of the file to the ORBInitRef
          option. Did some minor indentation modifications.

Fri Dec 27 15:03:36 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/ior_corbaloc: Removed.

Fri Dec 27 11:49:22 2002  Priyanka Gontla  <pgontla@ece.uci.edu>

        * tao/CORBALOC_Parser.h:
        * tao/CORBALOC_Parser.cpp:
          Modified the signature of parse_string_assign_helper. We dont
          have to send the length of original string as an argument.
          When invoking assign_ke_string, the length of the token needs
          to be sent as opposed to the length of the whole address.
          Thanks to Bertin Colpron <BColpron@interstarinc.com>
          for pointing out.

Fri Dec 27 14:57:50 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/Makefile:
        * examples/Makefile.bor: Added ior_corbaloc to the list of
          directories.

Fri Dec 27 14:41:44 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/ior_corbaloc: Moved the test from tests/ior_corbaloc to
          examples. Moving the test to examples directory would help us to
          run the test in our daily builds.

Fri Dec 27 07:56:31 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_generator.cpp (create_module):

          Added a line to propagate the prefix of a module to a reopening of
          that module in another IDL file, overlooked in the changes of

          Wed Dec 11 18:26:09 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

          which was causing a reference (in a third IDL file) to a member of
          the reopened module to lack the correct prefix, if it had been set.
          Thanks to Nanbor Wang <nanbor@cse.wustl.edu> for reporting the
          problem.

Fri Dec 27 07:15:34 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/Simple/Simple_Util.h: Somehow missed this in my checkin.

Thu Dec 26 09:07:21 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/Simple/Simple_Util.h: Added a method to return the
          client side ORB.
        * examples/Simple/grid/Grid_Client_i.cpp: Hold the Grid_Factory's
          object reference in a var instead of a pointer. This prevents
          memory leaks in the application.

Wed Dec 25 17:47:47 2002  Bala  <bala@cs.wustl.edu>

        * TAO version 1.2.8 released.

Wed Dec 25 06:24:01 2002  Douglas C. Schmidt  <schmidt@tango.doc.wustl.edu>

        * docs/performance.html: Added some tips about how to reduce the size of
          the compile-time and run-time memory footprint.

Tue Dec 24 12:36:11 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/Security/Crash_Test/server.cpp: Fixed a compile
          error in g++ builds.

Mon Dec 23 22:48:58 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/Notify/Basic/AdminProperties.h:
        * orbsvcs/tests/Notify/Basic/AdminProperties.cpp: Fixed compile
          errors in g++ builds that were caused by improper signatures.

Mon Dec 23 22:33:56 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        A slight redesign of the changes applied to fix BUG 1276. The
        redesign was motivated due to a  drop in our performance.

        * tao/Reply_Dispatcher.cpp:
        * tao/Reply_Dispatcher.h:
        * tao/Reply_Dispatcher.i: Did a slight redesign of how timeouts are
          handled.  This was necessitated since the previous design made
          things slow. Though none of the synchronization primitives were
          used for normal cases ie. invocations without timeouts, we still
          created them for every invocation. Creation of synchronizaton
          primitives actually made things slow, and they have now been
          removed.

        * tao/Muxed_TMS.cpp: Removed calls to start_dispatch () and
          end_dispatch () on the Reply_Dispatcher.

        * tao/Invocation.cpp: We now do a synchronization on the internal
          lock used by Muxed_TMS strategy so that no two threads are
          active on the Reply_Handler at the same time. This, though not
          very elegant, provides the same effect as the changes in "Sun
          Dec 22 11:26:30 2002  Balachandran Natarajan
          <bala@isis-server.isis.vanderbilt.edu>". The gist of the changes
          mentioned above have still been retained.

        * tao/Exclusive_TMS.cpp: Removed calls to start_dispatch and
          end_dispatch () on the Reply_Dispatcher.

          These changes should get our performance back on track.

Mon Dec 23 18:21:51 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Discarding/Notify_Sequence_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Ordering/Notify_Sequence_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Ordering/Notify_Structured_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Notify_Sequence_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Sequence_Multi_Filter/Notify_Sequence_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Structured_Filter/Notify_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Consumer.cpp:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Supplier.cpp:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Notify_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Consumer.cpp:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Supplier.cpp:
        * orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Consumer.cpp:
        * orbsvcs/tests/Notify/performance-tests/Filter/Structured_Consumer.cpp:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.cpp:
          Debug messages are printed only if the debug level is set.

Mon Dec 23 16:25:08 2002  Boris S Kolpackov  <boris@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/Security/Makefile: Added
          orbsvcs/tests/Security/Crash_Test/Crash_Test directory.

Mon Dec 23 15:50:54 2002  Boris S Kolpackov  <boris@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/Security/Crash_Test/Crash_Test.dsw:
        * orbsvcs/tests/Security/Crash_Test/Crash_Test_Client.dsp:
        * orbsvcs/tests/Security/Crash_Test/Crash_Test_Server.dsp:
        * orbsvcs/tests/Security/Crash_Test/Makefile:
        * orbsvcs/tests/Security/Crash_Test/README:
        * orbsvcs/tests/Security/Crash_Test/cacert.pem:
        * orbsvcs/tests/Security/Crash_Test/client.conf:
        * orbsvcs/tests/Security/Crash_Test/client.cpp:
        * orbsvcs/tests/Security/Crash_Test/client_cert.pem:
        * orbsvcs/tests/Security/Crash_Test/client_key.pem:
        * orbsvcs/tests/Security/Crash_Test/run_test.pl:
        * orbsvcs/tests/Security/Crash_Test/server.conf:
        * orbsvcs/tests/Security/Crash_Test/server.cpp:
        * orbsvcs/tests/Security/Crash_Test/server.ior:
        * orbsvcs/tests/Security/Crash_Test/server_cert.pem:
        * orbsvcs/tests/Security/Crash_Test/server_key.pem:
        * orbsvcs/tests/Security/Crash_Test/test.idl:
        * orbsvcs/tests/Security/Crash_Test/test_i.cpp:
        * orbsvcs/tests/Security/Crash_Test/test_i.h:
        * orbsvcs/tests/Security/Crash_Test/test_i.i:
          Added a new test to verifies that the ORB's connection
          management mechanism is functioning properly in conjunction
          with SSLIOP. For more information please refer to README.

Mon Dec 23 15:08:22 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/Notify/Basic/AdminProperties.cpp:
        * orbsvcs/tests/Notify/Basic/AdminProperties.h: Fixed a warning
          with SunCC builds.

Mon Dec 23 15:16:21 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/RTPortableServer/RT_Object_Adapter_Factory.cpp: Moved the
          setting of the <collocation_resolver_name_> from the constructor
          to create (), since it is not required immediately on loading
          the RT_PortableServer. This should fix a problem with GCC 2.95
          builds on Solaris where the static initializations are all
          messed up! Surprising that other tests even work.

Mon Dec 23 10:44:19 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
        * TAO_IDL/be/be_visitor_ccm_pre_proc.cpp:

          Fixed code generation errors for components and eventtypes. Thanks
          to Nanbor Wang <nanbor@cse.wustl.edu> for his example IDL files
          that uncovered the problem.

Mon Dec 23 06:57:41 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.h:
        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp: Fixed warnings in
          SunCC builds. Yet another problem with SunCC compiler. This
          should also hopefully fix a similar problem with Borland 6.

Sun Dec 22 22:46:50 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.cpp: Replaced the word "error" from one
          of the debug statements. The test
          tests/RTCORBA/MT_Client_Protocol_Priority uses a script that
          parses the output from the test run to determine if the test was
          right. The script searches for the word "error" in the output
          and on seeing it barf's. Hence the change.

Sun Dec 22 23:18:58 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Reply_Dispatcher.h:
        * tao/Reply_Dispatcher.i: Added an accessor for <timeout_>

        * tao/Muxed_TMS.cpp: Call start_dispatch () and end_dispatch ()
          only if the Reply_Dispatcher has timout associated with it. This
          should fix most of the problems that showed up in the latest
          builds.

Sun Dec 22 20:22:50 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * performance-tests/Latency/Thread_Per_Connection/svc.conf: Used
          the blocked connect strategy instead of the default
          strategy. This is needed to work around the problem outlined in
          BUG 1408.

Sun Dec 22 11:26:30 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        Fix for Bug 1276. Please see

        http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1276 for more
        details on this bug. The gist of the fix is this

          - If a follower thread timesout, it first tries to unbind the
            dispatcher from the table

          - If unbinding is succesfull it throws a TIMEOUT exception to
            the client.

          - If unbinding is unsuccesful, it waits on a condition variable
            in the reply dispatcher

          - Once the reply is available it dispatches the reply.

          - This helps avoid the race conditions that are documented in
            1276.

        None of the above code should be executed when timeouts are not
        enabled in the ORB ie. for the default path.

        * tao/Bind_Dispatcher_Guard.cpp:
        * tao/Bind_Dispatcher_Guard.h:
        * tao/Bind_Dispatcher_Guard.i: Added method unbind_dispatcher ()
          which unbinds the dispatcher from the Transport_Mux_Strategy and
          status (), which allows to set the status of the dispatcher
          guard.

        * tao/Transport_Mux_Strategy.h
        * tao/Exclusive_TMS.cpp:
        * tao/Exclusive_TMS.h:
        * tao/Muxed_TMS.cpp:
        * tao/Muxed_TMS.h: Changed the signature of the method
          unbind_dispatcher (). It now returns an int. Further, we mark
          the Reply_Dispatcher as busy when the dispatching thread is
          ready to call Reply_Dispatcher::dispatch_reply ().

        * tao/Reply_Dispatcher.cpp:
        * tao/Reply_Dispatcher.h:
        * tao/Reply_Dispatcher.i: Added a mutex and a condition variable
          for the follower to wait on when a leader thread is within the
          Reply_Dispatcher. Methods to wait on the CV and to mark the
          reply_dispatcher as being used and free have been added. These
          methods are essentially no-ops if timeouts are not set.

        * tao/Invocation.cpp:
        * tao/Invocation.h: If the invocation thread gets a timeout, it
          first unbinds its reply dispatcher from the Mux_Strategy. If the
          unbind fails (this means that another thread has aleardy
          collected the reply from the transport) , it waits on the
          reply_dispatcher to collect the reply instead of just throwing a
          TIMEOUT exception.

Fri Dec 20 13:47:33 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/Security/Big_Request/Makefile:
        * orbsvcs/tests/Security/Callback/Makefile:
        * orbsvcs/tests/Security/MT_SSLIOP/Makefile:
        * orbsvcs/tests/Security/Secure_Invocation/Makefile:
        * orbsvcs/tests/Security/SecurityLevel1/Makefile: Too much of cut
          and paste. Fixed places where BIN was assigned something
          arbitrary.

Thu Dec 19 13:45:50 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/util/utl_global.cpp:

          Added a patch sent in by Greg Mulyar <greg_mu@yahoo.com> to make
          sure that the ACE version of gperf is used when both the ACE and
          GNU versions of gperf are present. This fixes BUG 1406.

Thu Dec 19 08:48:04 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/Security/Big_Request/Makefile:
        * orbsvcs/tests/Security/Callback/Makefile:
        * orbsvcs/tests/Security/MT_SSLIOP/Makefile:
        * orbsvcs/tests/Security/Secure_Invocation/Makefile:
        * orbsvcs/tests/Security/SecurityLevel1/Makefile: Added our usual
          checks to make sure that these dont get built if Security
          service or SSLIOP libraries arent built. This shold fix compile
          errors in NO_AMI_MESSAGING and NO_INTERCEPTORS builds.

Thu Dec 19 08:25:04 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Transport_Cache_Manager.cpp: Call
          TAO_Transport::close_connection_no_purge () in
          TAO_Transport_Cache_Manager::purge () instead of
          close_connection_i (). Surprising that Chris Cleeland missed
          this after we agreed that this was the right things to do. Looks
          like Chris C has been caught up in a different world altogether
          :-). This should fix the  errors in the daily builds.

Wed Dec 18 19:45:45 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/fe/fe_declarator.cpp:

          Added a check for 0 return from a narrow to AST_Type. This
          check catches attempts to use constants, enum values,
          attributes, and operations as IDL sequence elements, and
          outputs an error instead of crashing. Thanks to Petr
          Ferschmann <pferschmann@kerio.com> for pointing out the
          problem with enum values.

Wed Dec 18 14:48:32 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/Any.h:
        * tao/Any.i:

          Added cast operator to Any& for class Any_var. Thanks to Torsten
          Kuepper <torsten.kuepper@nokia.com> for pointing out the lack of
          this spec-required operator. This fixes BUG 1404.

Wed Dec 18 14:46:53 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Makefile (TAO_ORBSVCS): Build SSL only when
          corba_messaging and interceptors are infact turned on.

Wed Dec 18 08:22:39 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/LoadBalancing/LB_Random.cpp
          (tao_lb_random_init_routine):

          Fixed compile-time problem on platforms that do not support for
          the Pthread standard.  This function should always be visible.

Tue Dec 17 09:53:02 2002  Chris Cleeland  <cleeland_c@ociweb.com>

        * tao/Transport_Cache_Manager.*:

          Fixed deadlock that can occur when trying to gain reactor token
          and transport cache manager lock while purging cache entries.
          Unfortunately , the classic solution to the classic
          deadlock-- which is typically caused by an ordering problem, and is
          solved by re-ordering--doesn't apply.  We simply don't have
          control of the order due to the fact that we have two frameworks
          interacting, and the offending bodies of code don't have
          visibility to both locks.

          The key is not trying to remove the handler while the transport
          cache lock is held.  So, we break this into two loops.  The first
          loop does everything cache-releated with only the cache lock held,
          then releases it.  The second loop then does only the
          reactor-related things.

          Key changes are:

          - Move purge() from .inl to .cpp.
          - Fold close_entries() into purge() (purge was the only thing that
            called close_entries anyway).
          - Use a stack to accumulate the transports that have been purged
            in the first loop, then, in the second loop, pop the stack and
            call the remove_handler on each transport.
          - Note that the transports whose pointers are stuck in the stack
            are properly reference counted using
            TAO_Transport::_duplicate/release.

          Thanks to Raytheon in San Diego for providing the environment to
          find this!

Tue Dec 17 08:14:35 2002  Chad Elliott  <elliott_c@ociweb.com>

        * utils/nslist/nslist.mpc:

          Adding an mpc file for nslist and company.

Tue Dec 17 06:36:17 2002  Chad Elliott  <elliott_c@ociweb.com>

        * orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp:
        * orbsvcs/orbsvcs/Event/EC_Gateway_UDP.h:
        * orbsvcs/orbsvcs/Event/EC_Reactive_ConsumerControl.h:
        * orbsvcs/orbsvcs/Event/EC_Reactive_SupplierControl.h:
        * orbsvcs/orbsvcs/Event/Memory_Pools.h:
        * orbsvcs/orbsvcs/Naming/Persistent_Context_Index.h:
        * orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.h:
        * orbsvcs/orbsvcs/Sched/Scheduler_Generic.h:
        * tao/Default_Endpoint_Selector_Factory.cpp:
        * tao/Exception.cpp:
        * tao/Object.h:
        * tao/PortableServer/POAManager.h:
        * tao/Strategies/advanced_resource.cpp:
        * tao/Synch_Refcountable.cpp:
        * tao/Transport_Cache_Manager.h:
        * tao/Utils/PolicyList_Destroyer.cpp:
        * tao/default_resource.cpp:

          Added #include's and forward declarations for the Green Hills
          compiler for VxWorks.

        * orbsvcs/orbsvcs/IOR_Multicast.cpp:

          Added .inout() to a CORBA::String_var.

        * orbsvcs/orbsvcs/PortableGroup/Portable_Group_Map.cpp:

          Divide the object_group_id by 1 to force ACE_U_LongLong (on
          platforms that don't support unsigned long long) to cast down to
          unsigned long.

        * tao/Fault_Tolerance_Service.i:
        * tao/Fault_Tolerance_Service.cpp:
        * tao/MProfile.i:
        * tao/MProfile.cpp:

          Moved a couple of inline methods to the .cpp to avoid inclusion of
          header files in the .h.

        * tao/TAO_Singleton_Manager.cpp:

          Added check for ghs when determining which version of
          set_unexpected() to call.

Mon Dec 16 23:26:50 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Policy_Validator.cpp: Reset the last_ to zero during
          destruction. If not reset, it starts creating problem during
          reloading of libraries since they see that last_ is not zero but
          pointing to a stale location. Thanks to Guan
          Joe <annieg608@hotmail.com> for reporting this. Having a static
          member is not the way to go. But let me hold on till 1.3 goes
          out of the way.

Mon Dec 16 17:09:55 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/CORBALOC_Parser.cpp:
        * tao/ORB.cpp:
        * tao/ORB_Core.cpp:

          Silly errors in the fix below. Thanks to Chris Cleeland
          <cleeland_c@ociweb.com> for catching it.

Mon Dec 16 14:27:15 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/Any.cpp:
        * tao/CORBALOC_Parser.cpp:
        * tao/CORBA_String.h:
        * tao/CORBA_String.inl:
        * tao/ORB.cpp:
        * tao/ORB_Core.cpp:

          Removed the String_var non-const cast operator to char*,
          as per http://cgi.omg.org/issues/issue3797.txt, and made
          necessary changes to TAO where CORBA::String_var is
          passed to strcpy, strcat, etc., without using .out()
          or .inout().

Mon Dec 16 09:29:32 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/CORBA_String.h:
        * tao/CORBA_String.inl:

          Added the spec-required cast operator to char*& for
          the string_var class. Thanks to Torsten Kuepper
          <torsten.kuepper@nokia.com> for reporting the oversight.
          This closes [BUGID:1402].

Sun Dec 15 22:26:29 2002  Priyanka Gontla  <pgontla@ece.uci.edu>

        * tao/CORBALOC_Parser.cpp:
          Fixed a problem with the ior_corbaloc test. A wrong string was
          being used for strcmp. Thanks to Bala for finding and reporting
          the problem.

Sun Dec 15 20:18:53 2002  Priyanka Gontla  <pgontla@ece.uci.edu>

        * tests/ior_corbaloc/status_i.h:
        * tests/ior_corbaloc/status_i.cpp:
        * tests/ior_corbaloc/ior_corbaloc_client_i.cpp:
          Fixed exception macros usage.

Sun Dec 15 01:37:14 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/fe/idl.ll:
        * TAO_IDL/fe/lex.yy.cpp:
        * TAO_IDL/util/utl_global.cpp:

          Further changes to the #pragma prefix handling. Special checks
          had to be added to deal with the unique behavior of the
          preprocessor on the Linux platforms.

Sat Dec 14 17:08:17 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/Timer_Queue.cpp: Reverted "Sat Dec 14
          09:19:30 2002  Balachandran Natarajan
          <bala@isis-server.isis.vanderbilt.edu>"  since the offending ACE
          change has been reverted. Thanks to Dr. Schmidt for reverting
          the ACE change.

Sat Dec 14 09:19:30 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/Timer_Queue.cpp: #included Reactor.h. No
          reason to do this, but this change in ACE makes us do this
          "Fri Dec 13 16:05:05 2002  Douglas C. Schmidt
          <schmidt@ace.cs.wustl.edu>"

          The above change just couples the Reactor and the timerqueue
          code.

Fri Dec 13 17:37:25 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Basic/AdminProperties.cpp:
          Added the "Error" word in the debug message so
          that it shows up red in the scoreboard on run error.

        * orbsvcs/tests/Notify/Basic/run_test.pl:
          AdminProperties test is run conditionally - skipped when the
          Notification is in Reactive mode, because the Reactive mode does
          not support any queues to test the MaxQueueLength Admin
          Property. In the MT mode, it uses the adminproperties.conf

        * orbsvcs/tests/Notify/MT_Dispatching/run_test.pl:
          The Notify output is no longer parsed, as the debug messages
          have changed.

Fri Dec 13 12:52:31 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/CosLoadBalancing.idl:

          Added missing "RequestsPerSecond" LoadId constant.

          Reordered register_load_monitor() parameters so that they are
          consistent with the other methods in the PortableGroup and
          CosLoadBalancing modules (i.e. object to be registered is last
          argument).

          Uncommented Strategy::analyze_loads() method.  It is required
          for adaptive load balancing support.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp
          (register_load_monitor):

          Updated parameter list to match the updated IDL.

          Unbind the load monitor just registered if scheduling of the
          timer handler fails.  Fixes a resource leak.

          Fixed problem where it wasn't possible to register more than one
          load monitor.

          (push_loads):

          Invoke the Strategy::analyze_loads() method on load
          balancing strategies associated with object groups that have
          members residing at the given location.  This is an adaptive
          load balancing fix.

          (check_strategy_prop, preprocess_properties):

          Replaced check_strategy_prop() method with the new
          preprocess_properties() method.  In addition to performing the
          property checks found in the check_strateg_prop() method,
          preprocess_properties() also converts the "StrategyInfo"
          property to a "Strategy" property.  This allows applications to
          retrieve references to the built-in strategies, in addition to
          fixing a problem where different LeastLoaded strategy
          configurations could not be created.

          (next_member):

          Since built-in load balancing strategy references are now stored
          in the object group's property list, the same code that was used
          for the custom strategies may be used for the built-in ones.
          The code is now much cleaner.

          (init_least_loaded):

          Removed this method.  The introduction of the
          preprocess_properties() method obviates the need for this
          method.

          (extract_float_property):

          Move this method to the TAO_LB_LeastLoaded servant
          implementation.  It was only used by that servant.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_Random.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_RoundRobin.h:

          All built-in load balancing strategies are now unconstrained.
          Applications should be able to make invocations on those
          strategies.

        * orbsvcs/orbsvcs/LoadBalancing/LB_Random.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_Random.cpp:

          Refactored out random number generator initialization code so
          that other balancing strategies (e.g. LeastLoaded) may
          initialize it if necessary.

          If a standard PThreads implementation is configured, use the
          pthread_once() function to force only a single initialization of
          the random number generator to occur.

          (get_loads, analyze_loads):

          Implemented these methods.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.cpp
          (TAO_LB_LeastLoaded):

          Initialize the random number generator prior to selecting group
          members randomly.

          (get_location):

          Fixed default load rebalancing and request rejection behavior.
          By default, neither of these should happen, as required by the
          forthcoming CORBA Load Balancing and Monitoring specification.

          Fixed problem where the same location was always selected.

          Cleaned up the code quite a bit.

          (get_properties, get_loads, analyze_loads):

          Implemented these methods.

          (init):

          New method used to initialize the LeastLoaded servant.  All
          LeastLoaded property extraction and checking is performed in
          this method.  This method is invoked by the LoadManager when an
          application configures LeastLoaded as its balancing strategy.

          (extract_float_property):

          Method that extracts CORBA::Float values from a given
          LeastLoaded property.

        * orbsvcs/orbsvcs/LoadBalancing/LB_MemberLocator.cpp (pre_invoke):

          Cosmetic change.

        * orbsvcs/orbsvcs/LoadBalancing/LB_RoundRobin.cpp (get_loads):
          (analyze_loads):

          Implemented these methods.

        * orbsvcs/LoadBalancer/LoadManager.cpp (ACE_TMAIN):

          Updated
        * orbsvcs/LoadBalancer/LoadMonitor.cpp (register_load_monitor):

          Updated LoadManager::register_load_monitor() call arguments to
          match the updated IDL.

        * orbsvcs/orbsvcs/PortableGroup.idl (groups_at_location):

          Added new method to the ObjectGroupManager interface that
          returns a sequence of references to the ObjectGroups residing at
          a given location.  This method should be pushed into the
          forthcoming standard.

        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h:
        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp:

          Implemented ObjectGroupManager::groups_at_location() method.

        * orbsvcs/orbsvcs/Naming/Hash_Naming_Context.cpp (resolve):

          Improved exception-safety, and a potential memory leak in the
          emulated exception case.

Fri Dec 13 10:58:40 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.h:
        * orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp:
          Made amends for "signed unsigned comparison" compile warning.

        * orbsvcs/orbsvcs/Notify/CosNotify_Initializer.cpp:
          Removed reference to defunct .inl file.

Fri Dec 13 10:04:59 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/fe/fe_tmplinst.cpp:

          Added missing semicolon.

Fri Dec 13 00:10:23 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/AdminProperties.cpp:
          Added missing template instantiation for TAO_NS_AdminProperties_var

        * orbsvcs/orbsvcs/Notify/Builder.cpp:
          Added a 2 step initialization of TAO_NS_AdminProperties object
          to appease Borland compiler.

        * orbsvcs/orbsvcs/Notify/CosNotify_Initializer.cpp:
        * orbsvcs/orbsvcs/Notify/CosNotify_Initializer.h:
          Moved Initializer from Notify_Service.cpp to a seperate file.
          This should fix the bug related to multiple instances of the
          Initalizer. Thanks to Shelton Tang <stang@altigen.com> for
          reporting this.

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Service.h:
          Removed Initializer class and implementation.

        * orbsvcs/orbsvcs/Makefile.CosNotification:
        * orbsvcs/Orbsvcs/CosNotification.dsp:
        * orbsvcs/Orbsvcs/CosNotification_Static.dsp:
        * orbsvcs/Orbsvcs/CosNotification.bor:
          Updated.

        * orbsvcs/Notify_Service/Makefile:
        * orbsvcs/Notify_Service/Notify_Service.h:
          Replaced include for Initializer to "CosNotify_Initializer.h"

        * orbsvcs/tests/Notify/Basic/AdminProperties.h:
        * orbsvcs/tests/Notify/Basic/AdminProperties.cpp:
          Modified the test to check MaxQueueLength and MaxSuppliers and
          MaxConsumers seperately. Events are dispatched in a seperate
          thread. The main thread receives events, an initial delay and
          a consumer delay can be configured to provide a lag in event
          delivery to force the Notification to buffer events.

        * orbsvcs/tests/Notify/Basic/Sequence.h:
        * orbsvcs/tests/Notify/Basic/Sequence.cpp:
          Added a test for sequences. In the default run, this test sends
          15 events in batches of 5 events via a sequence supplier. It
          sets the consumer's batch size to 3 and sets a pacing interval
          of 2 seconds. it checks to see if 15 events are indeed received.

        * orbsvcs/tests/Notify/Basic/adminproperties.conf:
          Svc Conf file for the AdminProperties test - This prevents the
          supplier's event sending thread from reading incomming requests.

        * orbsvcs/tests/Notify/Basic/Makefile:
        * orbsvcs/tests/Notify/Basic/Makefile.bor:
        * orbsvcs/tests/Notify/Basic/Sequence.dsp:
        * orbsvcs/tests/Notify/Notify_Tests.dsw:
        * orbsvcs/tests/Notify/Basic/run_test.pl:
          Added Sequence Test.

        * orbsvcs/tests/Notify/Discarding/notify.conf:
          To apply the MaxEventsPerConsumer QoS we need configure a queue
          per proxysupplier.

        * orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.h:
        * orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp:
        * orbsvcs/tests/Notify/Discarding/Structured_Supplier.cpp:
          This test was expecting to receive the same number of events as
          the MaxEventsPerConsumer. We know that atleast 1 *extra* event
          will be delivered because the 1st event delivery causes the
          channel queue to fill up and discard events. Thus, we send 40
          events, set the MaxEventsPerConsumer at 10 and really expect to
          see 11 events, but we give some leeway and set the expected count
          at 13. far less compared to 40.

Thu Dec 12 10:10:53 2002  Douglas C. Schmidt  <schmidt@ace.cs.wustl.edu>

        * orbsvcs/orbsvcs/Naming/Persistent_Context_Index.cpp: Fixed
          an inappropriate use of ACE_NEW_RETURN where a placement new
          operator will suffice.  Thanks to Torsten Kuepper
          <torsten.kuepper@nokia.com> for reporting this.  Fixes [bugid
          1396].

        * docs/performance.html: Added suggestions on how to speedup
          compilation times for ACE+TAO and applications.  Thanks to Alex
          Hornby <alex@anvil.com> for contributing these suggestions.

Thu Dec 12 10:29:11 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/fe/fe_tmplinst.cpp:

          Added an explicit instantiation to the list.

Thu Dec 12 09:20:07 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/CosNotification.bor:
          Added missing .obj extensions to new files added.

Wed Dec 11 23:23:26 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/util/utl_global.cpp: Fixed a warning in the builds.

Wed Dec 11 18:26:09 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/fe/idl.ll:
        * TAO_IDL/fe/lex.yy.cpp:
        * TAO_IDL/include/idl_global.h:
        * TAO_IDL/util/utl_global.cpp:

          Fixes to the #pragma prefix handling in the IDL compiler.
          Thanks to Duane Binder <duane.binder@veritas.com> for
          reporting that one of the "omg.org" prefixes in the
          chain of (p)idl files included from orb.idl was not
          getting cleared at file's end.

Wed Dec 11 19:18:33 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Notify_Signal_Property_T.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Signal_Property_T.h:
        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.h:
        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.inl:
        * orbsvcs/orbsvcs/Notify/Sequence/Method_Request_Dispatch_EventBatch.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/Method_Request_Dispatch_EventBatch.h:
        * orbsvcs/orbsvcs/Notify/Sequence/Method_Request_Dispatch_EventBatch.inl:
          Removed the following files obsoleted by the changes to Buffering
          and Sequences described below.

        * orbsvcs/orbsvcs/Notify/Timer.h:
          Abstract Timer object that is obtained via the Proxy.

        * orbsvcs/orbsvcs/Notify/Timer_Queue.cpp:
        * orbsvcs/orbsvcs/Notify/Timer_Queue.h:
        * orbsvcs/orbsvcs/Notify/Timer_Queue.inl:
          Timer implementation that uses the ACE_Timer_Queue.

        * orbsvcs/orbsvcs/Notify/Timer_Reactor.cpp:
        * orbsvcs/orbsvcs/Notify/Timer_Reactor.h:
        * orbsvcs/orbsvcs/Notify/Timer_Reactor.inl:
          Timer implementation that uses the ACE_Reactor::instance. This timer
          assumes that the Reactor is run by the main thread.

        * orbsvcs/orbsvcs/Notify/Sequence/Batch_Buffering_Strategy.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/Batch_Buffering_Strategy.h:
        * orbsvcs/orbsvcs/Notify/Sequence/Batch_Buffering_Strategy.inl:
          The Batch Buffering strategy that extends the base
          Buffering_Strategy by adding methods to extract batch size events.

        * orbsvcs/orbsvcs/Notify/AdminProperties.cpp:
        * orbsvcs/orbsvcs/Notify/AdminProperties.h:
        * orbsvcs/orbsvcs/Notify/AdminProperties.inl:
          Added a global queue lock and condition for global queue not
          empty. Added a TAO_NS_AdminProperties_var to manage
          AdminProperty lifetime.

        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.h:
        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.inl:
          The Buffering Strategy(BS) has been re-implemented:
          The BS now checks for a local and global maxima when enqueing
          events. If either maxima is reached and discarding is enabled,
          queued messages are discarded according to the discard policy.
          The global lock in the AdminProperties class (created per
          Event Channel)is used to serialize access to the global message
          count and condition variables.
          Note that the local maxima is infact due to the
          MaxEventsPerConsumer QoS property. Hence to use this property
          there must be a queue configured per proxy supplier. (using
          -AllocateTaskPerProxy directive in the svc.conf. see
          $TAO_ROOT/orbsvcs/tests/Notify/Discarding/notify.conf for an example)

        * orbsvcs/orbsvcs/Notify/Builder.cpp:
        * orbsvcs/orbsvcs/Notify/Builder.h:
          Removed <apply_threadpool_qos> and <apply_threadpool_lane_qos>
          methods. The TAO_NS_Object now provides protected virtual
          methods to override concurrency related QoS application.

        * orbsvcs/orbsvcs/Notify/EventChannel.cpp:
          Removed deletion of AdminProperties Object. As this object is
          now refcounted, it automatically gets destroyed when the
          EventChannel is destroyed. However, the EC might be destroyed
          before its child objects.

        * orbsvcs/orbsvcs/Notify/FilterAdmin.cpp:
        * orbsvcs/orbsvcs/Notify/FilterAdmin.h:
        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.h:
        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch_No_Filtering.cpp:
        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch_No_Filtering.h:
        * orbsvcs/orbsvcs/Notify/Method_Request_Lookup.cpp:
        * orbsvcs/orbsvcs/Notify/Method_Request_Lookup.h:
        * orbsvcs/orbsvcs/Notify/Proxy.cpp:
        * orbsvcs/orbsvcs/Notify/Proxy.h:
          "Constified" TAO_NS_Event_var parameter.

        * orbsvcs/orbsvcs/Notify/Method_Request.cpp:
        * orbsvcs/orbsvcs/Notify/Method_Request.h:
          - Provided concrete implementations for the <execute> and <copy>
          methods.
          - Added <event> method to obtain the event wrapped by this
          Message.

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Service.h:
          - Added <set_event_channel_threads> method.
          - Removed check for "threads > 0" in set_XXX_qos_properties
          method. If 0 threads are specified, the QoS property for
          concurrency defaults to a Reactive model.

        * orbsvcs/orbsvcs/Notify/Object.cpp:
        * orbsvcs/orbsvcs/Notify/Object.h:
        * orbsvcs/orbsvcs/Notify/Object.inl:
          - Added <apply_reactive_concurrency>,
          <apply_thread_pool_concurrency> and <apply_lane_concurrency> methods.
          These methods can be overridden for NS_Object specific concurrency QoS.

        * orbsvcs/orbsvcs/Notify/Property.h:
          - Removed reference to Notify_Signal_Property_T.

        * orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
        * orbsvcs/orbsvcs/Notify/ProxySupplier.h:
          Overide TAO_NS_Object::qos_changed method. This method checks
          for the MaxEventsPerConsumer QoS property and applies it to the
          Buffering Strategy of the Worker Task.

        * orbsvcs/orbsvcs/Notify/Reactive_Task.cpp:
        * orbsvcs/orbsvcs/Notify/Reactive_Task.h:
        * orbsvcs/orbsvcs/Notify/Reactive_Task.inl:
          Added acessors for timer and buffering strategy.
          The reactor base timer is used and there is no buffering
          strategy.

        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.h:
        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.inl:
          This task delegates message enqueues and dequeues to the
          buffering strategy. The Timer_Queue is used to schedule timers.
          The <svc> method thus dispatches timers and executes command objects.

        * orbsvcs/orbsvcs/Notify/Worker_Task.cpp:
        * orbsvcs/orbsvcs/Notify/Worker_Task.h:
          Added abstract accessors for timer and buffering strategy.

        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.h:
          Added NULL check before <release>ing the peer object.

        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h:
          Changed timer handling and related code. Timers are set via the
          TAO_NS_Timer object obtained via this objects Proxy. If a
          dispatching thread is configured, events are now dispatched in
          the context of the dispatching thread and not in the main thread.

        * orbsvcs/orbsvcs/Makefile.CosNotification:
        * orbsvcs/Orbsvcs/CosNotification.dsp:
        * orbsvcs/Orbsvcs/CosNotification_Static.dsp:
        * orbsvcs/Orbsvcs/CosNotification.bor:
          Updated.

Wed Dec 11 16:26:48 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp: Removed redundant
          template instantiations that have already been instantiated
          through specialization. This should clear up one of the builds
          on the scoreboard.

Tue Dec 10 19:30:56 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_array/array_ci.cpp:

          Removed all memory management from the *_forany classes. A close reading
          of the spec, and discussion with Bala, made it clear that this
          class is meant to be nothing more than a helper for the overloaded Any
          and CDR stream operators, and should not make any memory management
          decisions of its own. Thanks to Petr Tuma <petr.tuma@mff.cuni.cz>
          for reporting the oversight.

Tue Dec 10 18:17:12 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/IIOP_Transport.cpp (send_message): Formatted the debug
          statement to print out %m instead of %p. The TAO_Transport
          object under some circumstances return -1 with errno set to
          ENOENT. %m would then be a bit more softer than %p which leads
          to crashes.

Tue Dec 10 16:15:09 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * Makefile: Added a target 'reverseclean' to be used in our daily
          builds.

Mon Dec  9 22:25:06 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_argument/vardecl_ss.cpp:

          Added initialization for INOUT and OUT argument declarations in the
          skeleton body when they are of any integer or floating point type.
          This is a workaround for VC7, which has an internal compiler error
          when the corresponding IDL operation has certain non-void return
          types, i.e., when this return type is declared in the skeleton
          body just before the argument in question. The C++ compiler is
          evidently unable to tell that the argument variable is intialized
          by demarshaling later in the generated skeleton body. Thanks to
          Tim Pullen <tim@timpullen.co.uk> for reporting the problem.

Mon Dec 09 18:11:02 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/OBV/TC_Alignment/server.dsp:
        * tests/OBV/TC_Alignment/client.dsp: Fixed the release build
          configuration.

Mon Dec  9 15:43:38 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.cpp (handle_input_eh): Use a cached
          transport id instead of calling id () when printing out
          ACE_DEBUG statements. Thanks to Duane Binder for reporting the
          problem.

Mon Dec  9 14:51:01 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/LF_Connect_Strategy.cpp (wait): Cosmetic fixes to the debug
          statements. Should fix a FMR problem with Purify.

Mon Dec  9 16:33:07 UTC 2002  Don Hinton  <dhinton@ieee.org>

        * orbsvcs/orbsvcs/Event/ECG_Mcast_EH.i:  Added missing
          ACE_INLINE's.

Mon Dec  9 10:26:07 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/IIOP_Transport.cpp (recv_i): Fixed a small error in the
          debug  statement. Thanks to Duane Binder for pointing this out.

        * tao/IIOP_Connection_Handler.cpp: Initialized dscp_codepoint_ in
          the second constructor. This was observed by Ossama, Duane
          Binder and me. I decided to check this in.

Thu Dec  5 20:45:49 2002  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * orbsvcs/orbsvcs/Event_Utilities.cpp (event_debug): Print out the
          debugging info in hex as well as decimal.  Thanks to Oliver Kellog
          <oliver.kellogg@sysde.eads.net> for reporting this.

Sat Dec  7 09:44:33 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * orbsvcs/orbsvcs/CosTime.dsp:
        * orbsvcs/orbsvcs/CosTrading.dsp:
        * orbsvcs/orbsvcs/DsLogAdmin.dsp:
        * orbsvcs/orbsvcs/Fault_Tolerance.dsp:

          Changes to MFC project settings for IDL compilation. Thanks to
          John Morey <jmorey@mmintl.com> for reporting the bugs.

Sat Dec  7 11:59:06 UTC 2002  Don Hinton  <dhinton@ieee.org>

        * orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp:  Removed close
          from dtor since it can raise an exception.  This is
          consistent with previous behavior since the user must
          explicitely call close.

Fri Dec  6 21:02:48 UTC 2002  Don Hinton  <dhinton@ieee.org>

        * orbsvcs/orbsvcs/Event/ECG_Mcast_EH.{h,cpp}:  Removed use of
          TAO:Utils:Implicit_Deactivator since it has problems on windows.
          Made dtor exception safe.  Thanks to Bala for pointing this out.

        * orbsvcs/tests/EC_Custom_Marshal/Makefile:
        * orbsvcs/tests/EC_MT_Mcast/Makefile:
        * orbsvcs/tests/EC_Mcast/Makefile:
        * orbsvcs/tests/EC_Multiple/Makefile:
        * orbsvcs/tests/EC_Throughput/Makefile:
        * orbsvcs/tests/Event/Basic/Makefile:
        * orbsvcs/tests/Event/Performance/Makefile: Removed link to
          libTAO_Utils to pick up Implicit_Deactivator due to windows
          problem cited above.

Fri Dec  6 05:20:28 UTC 2002  Don Hinton  <dhinton@ieee.org>

        * orbsvcs/orbsvcs/Event/ECG_Mcast_EH.{h,i,cpp}: Refactored
          code to properly remove event handlers from the reactor.  This
          included refcounting the event handlers.  Added ifdef for
          ACE_LACKS_PERFECT_MULTICAST_FILTERING so that platforms that
          bind the multicast address by default don't even try to
          join multiple groups on a single socket before adding a new
          socket. Also added a deactivator for the Observer class to
          help simplify deactivation on shutdown and in case of exceptions.
          Thanks to Russ Noseworthy for reporting this.

        * orbsvcs/tests/EC_Custom_Marshal/Makefile:
        * orbsvcs/tests/EC_MT_Mcast/Makefile:
        * orbsvcs/tests/EC_Mcast/Makefile:
        * orbsvcs/tests/EC_Multiple/Makefile:
        * orbsvcs/tests/EC_Throughput/Makefile:
        * orbsvcs/tests/Event/Basic/Makefile:
        * orbsvcs/tests/Event/Performance/Makefile: Added link to
          libTAO_Utils to pick up Implicit_Deactivator.

Thu Dec  5 14:42:21 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Server_Connection_Purging/client.cpp: Fixed a warning in
          gcc 32 builds.

Thu Dec  5 11:16:40 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Server_Connection_Purging/run_test.pl: Missed this in my
          last checkin.

Thu Dec  5 08:24:23 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Regression/Bug_1020_Regression.dsw (Project):
        * tests/Bug_1020_Regression/client.dsp:
        * tests/Bug_1020_Regression/server.dsp: Removed them since they
          dont compile if service pack 5 isnt loaded.

Thu Dec  5 09:58:45 UTC 2002  Don Hinton  <dhinton@ieee.org>

        * docs/tutorials/Quoter/index.html:
        * docs/tutorials/Quoter/On_Demand_Activation/index.html:
        * docs/tutorials/Quoter/Simple/Persistent/index.html:  Fixed a
          few minor typos and ommissions in the code sections, along with
          an html formatting problem that showed up with certain browsers.

Wed Dec  4 23:40:31 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Transport.cpp: Old habits die-hard. Made a mistake while
          constructing objects, which basically leads to unspecified
          behaviours on g++, Sunc++ etc. Fixed object construction by
          adding a temporary variable. This should fix most of the
          problems that showed up in our builds.

Wed Dec  4 18:34:21 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Makefile: Added the new test to the list of DIRS.

Wed Dec  4 18:30:55 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Server_Connection_Purging/Test_i.h:
        * tests/Server_Connection_Purging/Test_i.cpp:
        * tests/Server_Connection_Purging/Test.idl:
        * tests/Server_Connection_Purging/client.cpp:
        * tests/Server_Connection_Purging/server.cpp:
        * tests/Server_Connection_Purging/Makefile:
        * tests/Server_Connection_Purging/run_test.pl:
        * tests/Server_Connection_Purging/svc.conf: Simple test for
          checking whether the handles on the server side are being
          purged. Borland and Win32 files would follow.

Wed Dec  4 17:25:06 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Transport_Cache_Manager.cpp (update_item) : Return -1 in
          case the map entry is zero after holding the lock. Thanks to
          Scott Harris for pointing this out.

Wed Dec  4 17:15:29 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/TAO_Server_Request.cpp: Fixed a typo in this "Tue Dec  3
          18:13:42 2002  Balachandran Natarajan
          <bala@isis-server.isis.vanderbilt.edu>" checkin.

Wed Dec  4 13:00:53 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connect_Strategy.h:
        * tao/Connect_Strategy.cpp (post_failed_connect): Improved
          documentation for this abstract class since it was outdated.

Wed Dec  4 12:50:39 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.h:
        * tao/Connection_Handler.cpp: Added a new method is_finalized ()
          which returns whether the connection handler has reached its
          final state or not.

Wed Dec  4 12:24:52 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/LF_CH_Event.h (TAO_LF_CH_Event): Made the call is_state_final ()
          protected.

Wed Dec  4 12:14:09 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Reactive_Connect_Strategy.cpp: Use the LF_Event's standard
          calls, like keep_waiting (), successful () and error_detected ()
          to wait and collect results, instead of using special calls on
          the connection handler.

Wed Dec 04 07:05:06 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/OBV/TC_Alignment/client.dsp:
        * tests/OBV/TC_Alignment/server.dsp: Fixed release configurations.

Wed Dec 04 06:59:27 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Regression/Bug_1020_Regression.dsw (Project):
        * tests/Bug_1020_Regression/client.dsp:
        * tests/Bug_1020_Regression/server.dsp: Added MSVC files for the test.

Tue Dec  3 21:38:02 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/IIOP_Connector.cpp:
        * tao/Strategies/SHMIOP_Connector.cpp:
        * tao/Strategies/UIOP_Connector.cpp:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
        * orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp: Obtain the status
          of the state transformations on the connection handler before
          decrementing the refcount and pass that to the
          post_failed_connect () call.

Tue Dec  3 21:27:52 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Blocked_Connect_Strategy.cpp:
        * tao/Blocked_Connect_Strategy.h:
        * tao/Connect_Strategy.cpp:
        * tao/Connect_Strategy.h:
        * tao/LF_Connect_Strategy.cpp:
        * tao/LF_Connect_Strategy.h:
        * tao/Reactive_Connect_Strategy.cpp:
        * tao/Reactive_Connect_Strategy.h: Did some refactoring of code,
          especially the call to post_failed_connect (). Since all connect
          strategies may require some cleaning up, moved the
          implementation to the base class. Added an argument to the call
          post_failed_connect () to indicate the status of the state
          transformations that occurred on the Connection_Handler.

Tue Dec  3 18:16:38 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/LF_Connect_Strategy.h:
        * tao/LF_Connect_Strategy.cpp:
        * tao/Reactive_Connect_Strategy.h
        * tao/Reactive_Connect_Strategy.cpp: Implemented the
          post_failed_connect () method  to shutdown the connection
          handler properly for cases that are not taken care by the asynch
          connect process in ACE_Svc_Handler. This fixes a memory leak
          reported by Duane Binder of Veritas. Thanks a lot to Duane
          reporting the problem and teaching me how to reproduce this on
          solaris. I couldnt reproduce this on Win32 and Linux since the
          the TCP stack behaved a bit differently on those platforms.

Tue Dec  3 18:13:42 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        Fix for BUG 1382. Please see

        http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1382

        for details. The problem is basically that we didnt know when and
        how to do reference counting. The following fix addresses
        that.

        * tao/Transport.h:
        * tao/Transport.inl (TAO_Transport_Refcount_Guard): A new helper
          guard class which increments the refcount when constructed and
          decrements the refcount on destruction.

        * tao/Transport.cpp (process_parsed_messages): Just before
          resuming the handle, increment the refcount of TAO_Transport and
          decrement it when exiting the scope once request and reply
          processing is done.

        * tao/TAO_Server_Request.cpp: Removed incrementing and
          decrementing the TAO_Transport. It has now been moved to
          TAO_Transport::process_parsed_messages () which is a safer and
          the right place to do refcounting. Manipulating refcounts here
          is too late between which world of bad things could strike.

Mon Dec  2 18:42:12 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Borland/ChatClient.cpp:
        * examples/Borland/ChatClientWnd.cpp:
        * examples/Borland/ORBThread.cpp:
          Made these files compiling with latest version of TAO

        * examples/Borland/README:
          Added more info about what to do if someone wants to compile
          this example. Thanks to Tim Smith <timsmith_s@hotmail.com>
          for reporting that this example doesn't compile anymore.

Mon Dec  2 13:25:20 2002  Craig Rodrigues <crodrigu@bbn.com>

        * orbsvcs/orbsvcs/Makefile.av (ACE_SHLIBS): Add -lTAO_IORTable to
          appease MacOS X linker.

Mon Dec  2 13:21:26 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Utils/Auto_Functor.cpp: Changed the names of #ifndef. They
          had the same symbols as the header file. Thanks to Don Hinton
          for pointing this out.

Sun Dec 01 10:17:32 2002  Balachandran  <bala@cs.wustl.edu>

        * TAO version 1.2.7 released.

Sat Nov 30 13:38:34 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/CosNotification_Static.dsp:

          Changes to project settings.

Sat Nov 30 09:38:33 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Transport_Cache_Manager.cpp: Added a second check after
          holding the lock for the hash map entry in update_item ().

Fri Nov 29 19:42:12 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp:
        * orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connection_Handler.cpp:
        * tao/Strategies/SHMIOP_Connection_Handler.cpp:
        * tao/Strategies/UIOP_Connection_Handler.cpp: Replicated the changes
          in IIOP to the above protocols. Need to refactor this code.

Fri Nov 29 19:30:20 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connect_Strategy.h:
        * tao/Connect_Strategy.cpp: Added a new method post_failed_connect
          () which could be used to do cleanup if the connect () call
          fails.

        * tao/Blocked_Connect_Strategy.h:
        * tao/Blocked_Connect_Strategy.cpp: Implemented the
          post_failed_connect () method to do cleanup of the svc_handler
          created. Since the blocked connect strategy doesnt use the
          reactor, and hence no handle_close () call if connection
          establishment fails,  we need to employ a seperate mechanism to
          take care of cleanup. This fixes a memory leak.

        * tao/IIOP_Connector.cpp: Call post_failed_connect () if the
          connect () call fails.

Fri Nov 29 19:25:59 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Transport.cpp: Prevented the thread doing the server side
          purging from waiting on the LF and waiting for connection
          closure, since its of no use.

Fri Nov 29 18:13:03 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp: Changed to use
          Thread_Manager::task () directly to acquire the task pointer of
          the current thread instead of acquiring it indirectly from the
          Thread_Descriptor since accessing Thread_Descriptor directly is
          no longer allowed.

Fri Nov 29 12:58:00 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/OBV/TC_Alignment/TC_Alignment.dsw:
        * tests/OBV/TC_Alignment/client.dsp:
        * tests/OBV/TC_Alignment/server.dsp:

          Renamed the project files, since the default filename (the same as the
          project name) contained whitespace.

Fri Nov 29 12:31:20 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * orbsvcs/orbsvcs/CosNotification.dsp:

          Changes to IDL compiler settings for this project.

Fri Nov 29 11:42:45 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp:
        * tao/Strategies/SHMIOP_Connection_Handler.cpp:
        * tao/Strategies/UIOP_Connection_Handler.cpp: Cache and idle the
          transport in add_transport_to_cache () instead of just caching
          and leaving the transport in busy state.

Fri Nov 29 11:16:28 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        This set of fixes are for fixing BUG 1247. Please see

        http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1247
        for more details. The problem is that the server side connections
        never got purged. The cache manager was designed to purge
        connections in the client and server end.

        * tao/Transport_Cache_Manager.h:
        * tao/Transport_Cache_Manager.cpp:
        * tao/transport_cache_manager.inl: Added two new methods,
          cache_idle_transport () and update_entry (). The former
          caches the transport and puts it in the idle and purgable
          state. The latter is useful to update the purge policy
          information.

        * tao/Transport.h:
        * tao/Transport.cpp: Added a new method update_transport () which
          in turn calls the TAO_Transport_Cache_Manager::update_entry ()
          to update the purging policy information.

          In close_connection_shared (), the connection handler is set in
          a temporary state before waiting on the LF for connection
          closure.

        * tao/Connection_Handler.cpp (TAO_Connection_Handler):
        * tao/Connection_Handler.h: Added a new method
          connection_close_wait () to set the connection handler in a
          a state which is an intermediate state between SUCESS and
          CONNECTION_CLOSED.

          Added a call to update transport information in handle_output_eh
          () and handle_input_eh (). This is needed for the following
          reasons

            . A connection could be cached by a server thread and the
              connection would be continously used to receive requests. In
              such cases the cache and purging policies should be updated
              to ensure that actively used connections are not purged.

            . In BiDirectional cases, a client thread could cache the
              connection, but the connection could be actively used by a
              server thread. An update is needed to avoid purging the
              connections abruptly.

        * tao/IIOP_Connection_Handler.cpp: Cache and idle the transport in
          add_transport_to_cache () instead of just caching and leaving
          the transport in busy state.

        * tao/LF_Event.h:
        * tao/LF_CH_Event.h:
        * tao/LF_CH_Event.cpp: Added a new temporary state in the path
          from LFS_SUCCESS to LFS_CONNECTION_CLOSED.

Fri Nov 29 09:56:46 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/OBV/Any/client.cpp:
        * tests/OBV/Any/AnyS_impl.cpp: Fixed compile errors in BCB6
          builds.

Fri Nov 29 08:01:56 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Makefile: PortableGroup will not be compiled if
          AMI is disabled.

Fri Nov 29 11:55:41 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.cpp:
        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h:

          Fixed Segmentation fault.


Thu Nov 28 22:39:38 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Service.cpp:
          Fixed warnings in builds where excetions are turned off.


Thu Nov 28 22:30:37 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/OBV/TC_Alignment/client.cpp: Fixed errors and warnings in
          builds where exceptions are turned off.

Thu Nov 28 14:45:43 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1361_Regression/Server_Thread_Pool.cpp (svc):
        * tests/Bug_1361_Regression/Server_Thread_Pool.h:
        * tests/Bug_1361_Regression/shutdown.cpp: Fixed warnings and
          compile errors.

Thu Nov 28 07:57:12 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/Admin.h:
        * orbsvcs/orbsvcs/Notify/EventChannel.h:
        * orbsvcs/orbsvcs/Notify/EventChannelFactory.h:
        * orbsvcs/orbsvcs/Notify/Proxy.h: Added missing includes to
          compile a bit better on VC 7.0. Thanks to Tommy Andreasen
          <tommy.andreasen@radiometer.dk> for providing patches.

Thu Nov 28 07:40:16 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/OBV/TC_Alignment/server.cpp: Fixed fuzz errors.

Thu Nov 28 07:03:12 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/OBV/Any/client.bor:
        * tests/OBV/Any/server.bor:
          Fix errors in these bcb makefiles.

Wed Nov 27 22:31:34 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1361_Regression/Server_Thread_Pool.h:
        * tests/Bug_1361_Regression/Server_Thread_Pool.cpp: Converted the
          usage of ACE_SYNCH_MUTEX to ACE_SYNCH. Missed that
          Message_Queue needs a condition variable in addition to the
          mutex.

Wed Nov 27 18:58:25 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * orbsvcs/orbsvcs/CosNotification_Static.dsp:

          Fixed project settings.

Wed Nov 27 18:32:31 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/OBV/TC_Alignment/Makefile:
        * tests/OBV/TC_Alignment/client.cpp: Fixed problems in g++ builds.

Wed Nov 27 15:22:13 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1361_Regression/Server_Thread_Pool.cpp: Fixed a
          warning from our daily builds.

Wed Nov 27 14:02:16 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/OBV/TC_Alignment/Makefile:

          Applied patch sent by Criag Rodrigues <crodrigu@bbn.com>.

Wed Nov 27 13:45:32 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Log/NotifyLog_i.h: Fixed conflicts the files.

Wed Nov 27 13:03:19 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/Typecode.cpp:

          Changed handling of valuetypes to skip a long when skipping the
          valuetype typecode members ValueModifier and Visibility.
          Even though these quanitities are defined as constant short types
          by the spec, the IDL compiler creates typecodes with a hard-coded
          array of longs. Skipping a short can cause an alignment problem depending
          on what comes previously in the CDR stream. Thanks to Pablo d'Angelo
          <pablo@mathematik.uni-ulm.de> for reporting the problem and for
          sending in example code.

        * tests/OBV/TC_Alignment/Makefile:
        * tests/OBV/TC_Alignment/Makefile.bor:
        * tests/OBV/TC_Alignment/OBV TC Alignment Client.dsp:
        * tests/OBV/TC_Alignment/OBV TC Alignment Server.dsp:
        * tests/OBV/TC_Alignment/OBV_TC_Alignment.mpc:
        * tests/OBV/TC_Alignment/README:
        * tests/OBV/TC_Alignment/TC_Alignment.dsw:
        * tests/OBV/TC_Alignment/client.bor:
        * tests/OBV/TC_Alignment/client.cpp:
        * tests/OBV/TC_Alignment/run_test.pl:
        * tests/OBV/TC_Alignment/server.bor:
        * tests/OBV/TC_Alignment/server.cpp:
        * tests/OBV/TC_Alignment/test.idl:
        * tests/OBV/TC_Alignment/test_i.cpp:
        * tests/OBV/TC_Alignment/test_i.h:

          New test added to check for recurrence of the above problem.

        * tests/OBV/Makefile:
        * tests/OBV/Makefile.bor:

          Added new test to parent directory makefiles.

Wed Nov 27 12:30:41 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Makefile.DsEventLogAdmin:
        * orbsvcs/orbsvcs/Makefile.DsLogAdmin:
        * orbsvcs/orbsvcs/Makefile.DsNotifyLogAdmin: Updated dependencies.

Wed Nov 27 16:35:03 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * orbsvcs/orbsvcs/Log/NotifyLogConsumer.h:
        * orbsvcs/orbsvcs/Log/NotifyLogFactory_i.h:
        * orbsvcs/orbsvcs/Log/NotifyLogNotification.h:

          Removed includes to deprecated files.


Wed Nov 27 13:54:55 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * orbsvcs/tests/Log/Basic_Log_Test/client.cpp:
        * orbsvcs/tests/Log/Basic_Log_Test/Basic_Log_Test.cpp:
        * orbsvcs/tests/Log/Basic_Log_Test/Basic_Log_Test.h:
        * orbsvcs/tests/Log/Basic_Log_Test/Makefile:

          Documentation changes to files.


Wed Nov 27 13:48:19 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * orbsvcs/Logging_Service/Basic_Logging_Service/Basic_Logging_Service.cpp:
        * orbsvcs/Logging_Service/Basic_Logging_Service/Basic_Logging_Service.h:
        * orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Service.cpp:
        * orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Service.h:
        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.cpp:
        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h:
        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Server.cpp:
        * orbsvcs/Logging_Service/RTEvent_Logging_Service/RTEvent_Logging_Service.cpp:
        * orbsvcs/Logging_Service/RTEvent_Logging_Service/RTEvent_Logging_Service.cpp:

          Documentation changes to files.


Wed Nov 27 13:36:11 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * orbsvcs/examples/Log/Basic/main.cpp:
        * orbsvcs/examples/Log/Basic/TLS_Client.cpp:
        * orbsvcs/examples/Log/Basic/TLS_Client.h:
        * orbsvcs/examples/Log/Event/Event_Consumer.cpp:
        * orbsvcs/examples/Log/Event/Event_Consumer.h:
        * orbsvcs/examples/Log/Event/Event_Supplier.cpp:
        * orbsvcs/examples/Log/Event/Event_Supplier.h:
        * orbsvcs/examples/Log/Notify/Notify_Consumer.cpp:
        * orbsvcs/examples/Log/Notify/Notify_Consumer.h:
        * orbsvcs/examples/Log/Notify/Notify_Supplier.cpp:
        * orbsvcs/examples/Log/Notify/Notify_Supplier.h:
        * orbsvcs/examples/Log/RTEvent/RTEvent_Consumer.cpp:
        * orbsvcs/examples/Log/RTEvent/RTEvent_Consumer.h:
        * orbsvcs/examples/Log/RTEvent/RTEvent_Supplier.cpp:
        * orbsvcs/examples/Log/RTEvent/RTEvent_Supplier.h:

          Documenation changes to files.

Wed Nov 27 07:18:54 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1361_Regression/Server_Thread_Pool.h:
        * tests/Bug_1361_Regression/Server_Thread_Pool.cpp: Fixed compile
          errors in single threaded builds.

Wed Nov 27 13:19:19 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * orbsvcs/orbsvcs/Makefile.DsEventLogAdmin:
        * orbsvcs/orbsvcs/Makefile.DsNotifyLogAdmin:
        * orbsvcs/orbsvcs/Makefile.RTEventLogAdmin:

          Files amended for new *LogConsumer files.

Wed Nov 27 13:12:54 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * orbsvcs/orbsvcs/Log/BasicLogFactory_i.cpp:
        * orbsvcs/orbsvcs/Log/BasicLogFactory_i.h:
        * orbsvcs/orbsvcs/Log/BasicLog_i.cpp:
        * orbsvcs/orbsvcs/Log/BasicLog_i.h:
        * orbsvcs/orbsvcs/Log/EventLogConsumer.cpp:
        * orbsvcs/orbsvcs/Log/EventLogConsumer.h:
        * orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp:
        * orbsvcs/orbsvcs/Log/EventLogFactory_i.h:
        * orbsvcs/orbsvcs/Log/EventLogNotification.cpp:
        * orbsvcs/orbsvcs/Log/EventLogNotification.h:
        * orbsvcs/orbsvcs/Log/EventLog_i.cpp:
        * orbsvcs/orbsvcs/Log/EventLog_i.h:
        * orbsvcs/orbsvcs/Log/Iterator_i.cpp:
        * orbsvcs/orbsvcs/Log/Iterator_i.h:
        * orbsvcs/orbsvcs/Log/LogMgr_i.cpp:
        * orbsvcs/orbsvcs/Log/LogMgr_i.h:
        * orbsvcs/orbsvcs/Log/LogNotification.cpp:
        * orbsvcs/orbsvcs/Log/LogNotification.h:
        * orbsvcs/orbsvcs/Log/LogRecordStore.cpp:
        * orbsvcs/orbsvcs/Log/LogRecordStore.h:
        * orbsvcs/orbsvcs/Log/LogRecordStore_persist.cpp:
        * orbsvcs/orbsvcs/Log/LogRecordStore_persist.h:
        * orbsvcs/orbsvcs/Log/Log_Constraint_Interpreter.cpp:
        * orbsvcs/orbsvcs/Log/Log_Constraint_Interpreter.h:
        * orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp:
        * orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.h:
        * orbsvcs/orbsvcs/Log/Log_i.cpp:
        * orbsvcs/orbsvcs/Log/Log_i.h:
        * orbsvcs/orbsvcs/Log/NotifyLogConsumer.cpp:
        * orbsvcs/orbsvcs/Log/NotifyLogConsumer.h:
        * orbsvcs/orbsvcs/Log/NotifyLogFactory_i.cpp:
        * orbsvcs/orbsvcs/Log/NotifyLogFactory_i.h:
        * orbsvcs/orbsvcs/Log/NotifyLogNotification.cpp:
        * orbsvcs/orbsvcs/Log/NotifyLogNotification.h:
        * orbsvcs/orbsvcs/Log/NotifyLog_i.cpp:
        * orbsvcs/orbsvcs/Log/NotifyLog_i.h:
        * orbsvcs/orbsvcs/Log/PersistStore.cpp:
        * orbsvcs/orbsvcs/Log/PersistStore.h:
        * orbsvcs/orbsvcs/Log/RTEventLogConsumer.cpp:
        * orbsvcs/orbsvcs/Log/RTEventLogConsumer.h:
        * orbsvcs/orbsvcs/Log/RTEventLogFactory_i.cpp:
        * orbsvcs/orbsvcs/Log/RTEventLogFactory_i.h:
        * orbsvcs/orbsvcs/Log/RTEventLogNotification.cpp:
        * orbsvcs/orbsvcs/Log/RTEventLogNotification.h:
        * orbsvcs/orbsvcs/Log/RTEventLog_i.cpp:
        * orbsvcs/orbsvcs/Log/RTEventLog_i.h:

          Documentation changes to files.

Wed Nov 27 10:14:26 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * orbsvcs/orbsvcs/RTEventLog.dsp:
        * orbsvcs/orbsvcs/DsEventLogAdmin.dsp:
        * orbsvcs/orbsvcs/DsNotifyLogAdmin.dsp:

          Updated to reflect additional files...
          orbsvcs/orbsvcs/Log/EventLogConsumer.h
          orbsvcs/orbsvcs/Log/EventLogConsumer.cpp
          orbsvcs/orbsvcs/Log/NotifyLogConsumer.h
          orbsvcs/orbsvcs/Log/NotifyLogConsumer.cpp
          orbsvcs/orbsvcs/Log/RTEventLogConsumer.h
          orbsvcs/orbsvcs/Log/RTEventLogConsumer.h

Wed Nov 27 09:23:12 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_1361_Regression/Test.idl:
          Fixed fuzz error

        * tests/Bug_1361_Regression/server.bor:
          Removed not existing file and corrected TAO_IDL flags

        * tests/Bug_1361_Regression/client.bor:
          Corrected TAO_IDL flags

        * tests/Bug_1361_Regression/Makefile.bor:
          Added shutdown.bor

Tue Nov 26 23:09:41 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Makefile:
        * tests/Makefile.bor: Added the new test to the daily builds.

        * tests/Bug_1361_Regression/server.bor:
        * tests/Bug_1361_Regression/client.bor:
        * tests/Bug_1361_Regression/shutdown.bor:
        * tests/Bug_1361_Regression/Makefile.bor: The Borland Makefiles.

Tue Nov 26 22:32:06 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1361_Regression/*: A new regression for BUG
          1361.

        * tests/Bug_1361_Regression/client.cpp:
        * tests/Bug_1361_Regression/Echo_Caller.cpp:
        * tests/Bug_1361_Regression/Echo_Caller.h:
        * tests/Bug_1361_Regression/Echo.cpp:
        * tests/Bug_1361_Regression/Echo.h
        * tests/Bug_1361_Regression/Makefile
        * tests/Bug_1361_Regression/ORB_Task.cpp:
        * tests/Bug_1361_Regression/ORB_Task.h:
        * tests/Bug_1361_Regression/run_test.pl*
        * tests/Bug_1361_Regression/server.cpp
        * tests/Bug_1361_Regression/Server_Thread_Pool.cpp
        * tests/Bug_1361_Regression/Server_Thread_Pool.h
        * tests/Bug_1361_Regression/Server_Timer.cpp
        * tests/Bug_1361_Regression/Server_Timer.h
        * tests/Bug_1361_Regression/shutdown.cpp
        * tests/Bug_1361_Regression/Test.idl:

          Thanks to Duane Binder <duane.binder@veritas.com> for donating
          this test case.

Tue Nov 26 16:03:52 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Basic_Regression/run_test.pl:
        * tests/Bug_1020_Regression/run_test.pl: Fixed these scripts to
          work for 5 minutes instead of 7. They tend to get timedout
          creating noise in the builds.

Tue Nov 26 15:01:40 2002  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/AbstractBase.cpp:
        * tao/AbstractBase.h:
        * tao/ORB.cpp:
        * tao/ORB.h:
        * tao/ValueBase.cpp:
        * tao/ValueBase.h:
        * tao/ValueFactory.cpp:
        * tao/ValueFactory.h:
        * tao/ValueFactory_Map.cpp:
        * tao/ValueFactory_Map.h:
        * tao/corbafwd.h:
        * tao/orbconf.h:
        * tao/DynamicAny/DynCommon.cpp:
        * tao/DynamicAny/DynCommon.h:

          Removed TAO_HAS_VALUETYPE flag. None of the tests or examples that
          use valuetypes have ever used this flag.

Tue Nov 26 14:21:20 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * docs/tutorials/Quoter/On_Demand_Activation/Handler_i.h:
        * docs/tutorials/Quoter/On_Demand_Activation/Handler_i.cpp:
          Fixed compile errors by adding dummy implementations for the
          base interface methods in interface Stock{}; This should fix
          compile errors on many platforms.

Tue Nov 26 13:41:21 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.h:
        * orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.h:
        * orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp:
          Prefixed "Notify_" to original filesnames to disambiguate from
          simile in Trader. Thanks to Jaroslaw Nozderko
          <jaroslaw.nozderko@polkomtel.com.pl> for reporting this problem
          and Bala for providing the fix.

        * orbsvcs/orbsvcs/Notify/ETCL_Filter.h:
        * orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
        * orbsvcs/orbsvcs/Makefile.CosNotification:
        * orbsvcs/orbsvcs/CosNotification.dsp:
        * orbsvcs/orbsvcs/CosNotification.bor:
          Modified to point to renamed files.

Tue Nov 26 09:09:48 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/PortableGroup.bor:

          Matched changes to corresponding makefile and project files. Thanks to
          Johnny Willemsen <jwillemsen@rememdy.nl> for pointing this out.

Tue Nov 26 00:01:07 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/ORB.cpp: Fix for BUG [1373]. The marshalling and
          demarshalling operators for TAO_opaque objects were
          wrong. Thanks to Carlos O'Ryan for reporting this problem and
          providing a patch.

Mon Nov 25 14:39:00 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_ami_pre_proc.cpp:

          Added implied IDL generation for imported (included from another
          IDL file) interfaces. No C++ code is generated for these or any
          other imported nodes in the AST.

        * orbsvcs/orbsvcs/PortableGroup.dsp:
        * orbsvcs/orbsvcs/PortableGroup_Static.dsp:
        * orbsvcs/orbsvcs/Makefile.PortableGroup:

          Added IDL compiler command line option to generated AMI code. Also
          added link to TAO Messaging library. These were necessary because some
          of the interfaces in CosLoadBalancing.idl, which already uses AMI,
          inherit from interfaces in PortableGroup.idl, so there must be
          associated reply handlers to inherit as well.

        * TAOACE_Static.dsw:

          Removed some project dependencies that were causing 'already defined'
          link errors.

Mon Nov 25 15:09:50 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * docs/tutorials/Quoter/AMI/Handler_i.cpp:
        * docs/tutorials/Quoter/AMI/Handler_i.h: Fixed compile errors by
          adding dummy implementations for the base interface methods in
          interface Stock{}; This should fix compile errors on many
          platforms.

Mon Nov 25 12:25:47 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Event_Forwarder.idl:
          Moved up from subdirectory Notify. Dependencies could not be
          updated correctly due to the idl file in a subdirectory. Thanks
          to Jaroslaw Nozderko <jaroslaw.nozderko@polkomtel.com.pl> for
          prompting this correction.

        * orbsvcs/orbsvcs/Makefile:
        * orbsvcs/orbsvcs/CosNotification.dsp:
        * orbsvcs/orbsvcs/CosNotification.bor:
          Modified to point currectly to Event_Forwarder.idl.

        * Modified the following changelog entries to thank bug reporters:
          Sun Oct 27 01:04:09 2002  Pradeep Gore  <pradeep@oomworks.com> and
          Thu Nov 21 18:45:23 2002  Pradeep Gore  <pradeep@oomworks.com>

Mon Nov 25 11:38:37 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/examples/CosEC/RtEC_Based/lib/Makefile: The Makefile was
          by default generating a static library even in dynamic
          builds. Fixed the Makefile to work fine.

Sun Nov 24 12:27:27 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_ami_pre_proc.cpp:

          Added check for null result of scoped name lookups in creation of
          inheritance list for reply handlers. Also added a check for each
          possible reply handler parent to determine if it is from an included
          IDL file or not, since the AMI preprocessing visitor does not creeate
          implied IDL for imported nodes. This check may make the first one
          redundant, but it is there anyway for added safety. Thanks to Johnny Willemsen
          <jwillemsen@rememdy.nl> and Craig Rodrigues <crodrigu@bbn.com> for
          reporting the bug.

Sun Nov 24 00:21:43 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Makefile*: Made another try in updating
          dependencies again. Thanks to Russ Carter and  Dirk Moermans
          <dirk.moermans@brutele.be> for pointing out the problem.

Sat Nov 23 10:52:28 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/IIOP_Transport.cpp: Cosmetic fixes to the debugging
          statements.

Fri Nov 22 15:30:28 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_ami_pre_proc.cpp:
        * TAO_IDL/be_include/be_visitor_ami_pre_proc.h:

          Fixed the creation of the inheritance list for the implied
          AMI reply handler interface. It now inherits from the
          reply handler of each of the original interface's parents. Thanks
          to Carlos O'Ryan <coryan@atdesk> for pointing out the bug. This closes
          [BUGID:1371].

Fri Nov 22 12:27:27 2002  Craig Rodrigues <crodrigu@bbn.com>

        * orbsvcs/examples/CosEC/RtEC_Based/lib/Makefile:
          Fix extraneous spaces in GNU make findstring commands.

Fri Nov 22 04:53:12 2002  Bala  <bala@cs.wustl.edu>

        * TAO version 1.2.6 released.

Thu Nov 21 18:45:23 2002  Pradeep Gore  <pradeep@oomworks.com>

        * docs/releasenotes/index.html: Updates the section on
          Notification Service.
        * docs/releasenotes/notify.html: Added a detailed feature matrix
          of the Cos Notification Service. Thanks to Sharon Caspi
          <sharonc@scopus.net> for suggesting this.


Thu Nov 21 13:26:27 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.cpp: Avoid checks for reactor consistency
          if the handler is not registered with the reactor. This should
          fix most of the runtime problems that we are seeing. This place
          needs to be reexamined after the beta. The intersection of
          RTCORBA and nonRT cases simply makes this place too
          complicated.

Wed Nov 20 18:04:00 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Muxing/run_test.pl: Checked in a version of the script
          that I use locally by mistake. Reverted the change to the
          original form.

Wed Nov 20 18:01:38 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.cpp (close_connection_eh): Did cosmetic
          changes to the assertive checks.

Wed Nov 20 15:23:40 2002  Ossama Othman  <ossama@uci.edu>

        * TAO_IDL/be/be_visitor_operation/ami_cs.cpp
          (gen_marshal_and_invoke):

          Initialize the invocation status variable in the generated stub
          code.  Previously, that variable was uninitialized, which caused
          some invalid code execution paths to occur.  Fixes some problems
          exhibited by TAO's basic AMI regression test.

Wed Nov 20 15:15:02 2002  Ossama Othman  <ossama@uci.edu>

        * tao/ClientRequestInfo_i.h (setup_picurrent):

          New method that sets up the thread scope and request scope
          PICurrent objects on the client side.

        * tao/ClientRequestInfo_i.cpp (TAO_ClientRequestInfo_i):
          (setup_current):

          Refactored duplicate code in both TAO_ClientRequestInfo_i
          constructors to the new setup_picurrent() method.

          Only set the TSC's peer if a copy was actually performed.  Fixes
          a seg fault after calling
          PortableInterceptor::Current::set_slot() after a client
          invocation was performed.  Thanks to Philipp Leibfried
          <pleibfried@speech-design.de> for providing a test case that
          reproduced this problem.

Wed Nov 20 15:54:10 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_exception/exception_cs.cpp:

          Changed an internal variable name in generated code for the
          _downcast() method that was short and ran a high risk of name
          clash with the exception typename.

Wed Nov 20 15:23:13 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.cpp (close_connection_eh): Do not do
          comparisions checks for reactor pointers in TAO_Transport,
          TAO_ORB_Core and ACE_Event_handler when the ORB has already
          shutdown. The comparisons could be wrong since the thread that
          is closing it may not have the right access to all the resources
          opened up by other threads (read RTCORBA threads).

Wed Nov 20 16:14:31 2002  Irfan Pyarali  <irfan@oomworks.com>

        * orbsvcs/Notify_Service/Notify_Service.cpp: Added
          ../orbsvcs/Notify/Notify_Service.h so that the static
          initializer can run and add the service objects to the service
          repository.  Thanks to Bala for helping with this.

Wed Nov 20 12:48:35 2002  Irfan Pyarali  <irfan@oomworks.com>

        * orbsvcs/tests/Notify/performance-tests/RedGreen/Makefile.bor:

          Fixed test name from RedGreen to RedGreen_Test.

        * orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Consumer.dsp
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Supplier.dsp
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Multi_Filter_Consumer.dsp
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Multi_Filter_Supplier.dsp

          Fixed release executable name.

Wed Nov 20 10:26:58 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/CosNotification_Static.dsp: Fixed path to some
          idl files in the project.

Tue Nov 19 22:32:30 2002  Ossama Othman  <ossama@uci.edu>

        * tao/Acceptor_Registry.cpp (is_collocated):

          Fixed problem where only the first endpoint in an endpoint chain
          was used when determining if an acceptor is collocated despite
          the fact the endpoint chain was "walked" when making this
          determination.

Tue Nov 19 15:16:56 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Filter_Consumer.bor:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Filter_Supplier.bor:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Consumer.bor:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Supplier.bor:
          Updated executable file names.

        * orbsvcs/tests/Notify/Basic/run_test.pl:
          Modified to accept conf files are parameters.

        * orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.cpp:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.h:
          Fixed problems with the test not exiting gracefully.

        * orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp:
          Modified the <create> method to add missing initialization of
          TAO_NS_Notify_Service. Thanks to Steve Totten<totten_s@ociweb.com>
          for providing the OCI test example and Irfan for showing how to
          use <_tao_poa_downcast>.

        * orbsvcs/Notify_Service/Notify_Service.dsp: Release executable
          should go in the Release directory.

Tue Nov 19 15:16:56 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Filter_Consumer.bor:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Filter_Supplier.bor:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Consumer.bor:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Supplier.bor:
          Updated executable file names.

        * orbsvcs/tests/Notify/Basic/run_test.pl:
          Modified to accept conf files are parameters.

        * orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.cpp:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.h:
          Fixed problems with the test not exiting gracefully.

        * orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp:
          Modified the <create> method to add missing initialization of
          TAO_NS_Notify_Service. Thanks to Steve Totten<totten_s@ociweb.com>
          for providing the OCI test example and Irfan for showing how to
          use <_tao_poa_downcast>.

        * orbsvcs\Notify_Service\Notify_Service.dsp: Release executable
          should go in the Release directory.

Tue Nov 19 11:02:00 2002  Pradeep Gore  <pradeep@oomworks.com>

        * Added explaination for each class in
          ChangeLogTag: Sun Oct 27 01:04:09 2002  Pradeep Gore
          <pradeep@oomworks.com>

Mon Nov 18 20:45:12 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Blocking/notify.conf:
          As per Bala's suggestion, applied "-ORBClientConnectionHandler
          RW" hoping to make the blocking work.  Alas, the buffering
          design needs a facelift.

        * orbsvcs/tests/Notify/Ordering/run_test.pl
          - Increased allowable period for consumers to run so that test
            doesn't timeout before hand.
          - Commented out priority policy temporarily till the sequences
            implementation of priority ordering is completed.

        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Notify_Sequence_Push_Consumer.cpp:
          Removed the MaxEventsPerConsumer policy applied to the
          proxy. That isn't what the test was supposed to excercise.

        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Consumer.cpp
          Changed OR_OP to AND_OP otherwise the Consumer Admin filter will
          always be true and no events would be rejected.

Mon Nov 18 17:54:41 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Transport.cpp: Cosmetic changes.

Mon Nov 18 14:50:31 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be_include/be_global.h:
        * TAO_IDL/be/be_global.cpp:

          Added storage and accessors for the AST node
          Components::CCMObject, which is looked up and stored
          if there is at least one component in the IDL file.

        * TAO_IDL/be/be_interface.cpp:
        * TAO_IDL/be/be_visitor_ccm_pre_proc.cpp:
        * TAO_IDL/be_include/be_visitor_ccm_pre_proc.h:

          Added the operations of Components::CCMObject to the operation
          table and *_skel method generation for component equivalent
          interfaces. Thanks to Nanbor <nanbor@cse.wustl.edu> for uncovering
          this bug.

        * TAO_IDL/be/be_visitor_component/component_sh.cpp:
        * TAO_IDL/be_include/be_visitor_component/component_sh.h:

          Added conditional generation of AMH classes for component
          equivalent interfaces.

        * TAO_IDL/be/be_visitor_interface/thru_poa_proxy_impl_sh.cpp:

          Added base component equivalent interface (if any) to the generated
          inheritance list for component equivalent interfaces.

Mon Nov 18 12:11:53 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/CosNotification_Static.dsp:

          Fixed settings for the IDL files in this project.

Mon Nov 18 13:01:42 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
        Commented decrement of <queue_length_> in the svc method.
        This needs to be corrected but at this point all the tests crash
        because of this, so its being taken out temporarily.

Mon Nov 18 11:04:35 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/performance-tests/RedGreen/run_test.pl:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/run_test.pl:
        Appended Structured_ suffix to executable name.
        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
        Reverted thread creation flags.

Mon Nov 18 07:32:10 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/Event.h: Work around for a weird BCB6
          compiler bug. Thanks to Chris Kohlhoff for helping me with this.

Mon Nov 18 07:28:16 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Portable_Interceptors/AMI/Makefile: Prevent the contents
          from being compiled when AMI is disabled.

Sun Nov 17 17:32:47 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/CosNotification_Static.dsp: Updated dsp file.

Sun Nov 17 12:57:10 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/CosNotification_Static.dsp:
          Updated.
        * orbsvcs/orbsvcs/Notify/Structured/RTCORBA_*:
          Removed extraneous files.

Sun Nov 17 12:05:20 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Portable_Interceptors/Makefile.bor: Added AMI test to the
          list of tests that needs compilation. Thanks to Johnny for
          pointing this out.

Sun Nov 17 09:37:08 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Makefile*: Updated dependencies again.

Sat Nov 16 21:09:32 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Portable_Interceptors/Makefile: Added AMI test to the list
          of tests that needs compilation.

Sat Nov 16 20:43:21 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * */Makefile: Updated dependency.

Sat Nov 16 20:11:13 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
          - Modified threadpool creation flags to ACE_Task::activate.
          - Corrected decrement of <queue_length_>.

Fri Nov 15 15:29:24 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Basic/run_test.pl:
          Modified to run the basic tests with a reactive and
          multithreaded Notification.

        * orbsvcs/tests/Notify/Basic/notify.mt.conf:
          Added MT conf for the Basic test.

        * orbsvcs/tests/Notify/Basic/notify.reactive.conf:
          Added reactive conf for the Basic test.

        * orbsvcs/tests/Notify/Blocking/notify.conf:
        * orbsvcs/tests/Notify/Discarding/notify.conf:
        * orbsvcs/tests/Notify/MT_Dispatching/notify_mtdispatching.conf:
        * orbsvcs/tests/Notify/Ordering/notify.conf:
        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/notify.conf:
        * orbsvcs/tests/Notify/Sequence_Multi_Filter/notify.conf
        * orbsvcs/tests/Notify/performance-tests/Filter/notify.conf
        * orbsvcs/tests/Notify/performance-tests/RedGreen/listener.conf
        * orbsvcs/tests/Notify/performance-tests/RedGreen/lookup.conf
        * orbsvcs/tests/Notify/performance-tests/RedGreen/reactive.conf
        * orbsvcs/logging_service/notify_logging_service/svc.conf:
        * orbsvcs/Notify_Service/svc.conf: Reverted factory back to
          Notify_Default_Event_Manager_Objects_Factory. I have decided not
          to introduce any changes for Notify Options in TAO 1.3. Better
          replacements will be introduced gradually in subsequent
          releases.

        * orbsvcs/Notify_Service/Notify_Server.cpp:
          Not handling signals. The shutdown code and event handler is
          maintained in case we want to address this in the future.

        * orbsvcs/tests/Notify/performance-tests/RedGreen/run_test.pl:
          - Modified to run all 3 test cases described in the README.
        * orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp:
          Changed hardcoded "10" to the expected number of events that can
          be specified on the command line.

        * orbsvcs/tests/Notify/Discarding/Sequence_Consumer.cpp:
          - Changed low=2 and high=20. Here is the explanation:
          The Supplier sends 96 events as 6 batches of 16 events.
          The Notification is run with 1 dispatching thread. The Discarding
          Policy is set and the MaxEventsPerConsumer is set to 2 (Event
          Batches).The Batch size is 5 so the maximum batches that can be
          received is 20 (19 batches with 5 events each and 1 batch with 1
          event).if we receive 20 batches then the channel
          hasn't discarded anything. so high = 20. In the worst case the
          consumer starts *after* the supplier has send all the events to
          the Notification. This means that only 2 batches are queued and
          all others are discarded. Hence low = 2.

          - Changed the sleep time that the consumer was polling fior
          excess events, from 3 to 1 sec. otherwise the perl script was
          timing out.

        * orbsvcs/tests/Notify/Ordering/Notify_Sequence_Push_Consumer.h:
        * orbsvcs/tests/Notify/Ordering/Notify_Sequence_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/Ordering/Sequence_Consumer.cpp:
          Removed high-low logic. There is *no* discarding policy set so
          the Sequence Consumer should received the expected number of 96 events.

        * orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Consumer.cpp:
          - Changed ConsumerAdmin interfilter operator to AND_OP. With an
          OR_OP, all the filters would return true! this is because the
          filters of the Admin and Proxy, both are combined to determine event
          eligibility. Note that this test success/failure has to be
          determined visually.

        * orbsvcs/tests/Notify/listener.conf:
        * orbsvcs/tests/Notify/lookup.conf:
        * orbsvcs/tests/Notify/reactive.conf:
          Reverted to Notify_Default_Event_Manager_Objects_Factory for
          backward compatibility.

        * orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Consumer.dsp:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Supplier.dsp:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Multi_Filter_Consumer.dsp:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Multi_Filter_Supplier.dsp:
        * orbsvcs/tests/Notify/Structured_Filter/run_test.pl:
          Reverted executable name to Structured_* prefix.

        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
          Discarding condition should be executed when buffering limit has
          reached. Current logic was enqueing 1 extra event.

        * orbsvcs/orbsvcs/Notify/Builder.cpp:
          Added call to set default startup QoS options on the Proxys and Admins.

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Service.h:
          - Added support for configuring startup threads at the proxy and
            Admin level while maintaining backward compatibility.
          - Modified updates logic - Updates are send synchronously by
          default. If the -AsynchUpdates option is set, updates are queued along
          with the regular events in the Proxy objects worker task.

        * orbsvcs/orbsvcs/Notify/Properties.h:
        * orbsvcs/orbsvcs/Notify/Properties.inl:
          Added get/set methods for Proxy and Admin level default QoS.
          Changed <updates> to <asynch_updates> flag.

        * orbsvcs/orbsvcs/Notify/Property_T.h:
        * orbsvcs/orbsvcs/Notify/Property_T.inl:
        - Added assignment operator to TAO_NS_Property_T.
        - Added an <invalidate> method to TAO_NS_PropertyBase_T

        * orbsvcs/orbsvcs/Notify/Proxy.cpp:
        - Send updates synchronously unless default properties mandate
          asynchrony. In that case the event is executed in the current
          thread context.

        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.h:
          Added dummy methods and ACE_ASSERT in them if called.

        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.h:
        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.inl:
          Added an accessor for the current size of the EventBatch.
          Note that this size can be greater than the batchsize.

        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.h:
          Overloaded ProxyPushSupplier::push method.
          The overloaded implementation executes the filtering and
          dispatch in the current thread context. Now, this dispatch
          doesn't immediately go remote but is stored in an event batch
          waiting for the pacing interval to expire after which the
          batchsize events are queued in the SequenceProxy's worker thread
          to be finally dispatched to the remote consumer.

        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h:
          Removed <dispatch_immediate> and <cancel_timer> methods.
          There was no need for these seperate methods.

        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
          Modified the implementation so that the Pacing Timer is deployed
          only if there is atleast 1 event queued to send, otherwise the
          existing timer is removed. This will avoid needless timeouts.

Sat Nov 16 08:22:38 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.h: Fixed typos that
          lead to link errors.

        * tao/Asynch_Queued_Message.cpp: Fixed a warning in the daily
          builds.

Sat Nov 16 12:43:12 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/server.bor:
          Fixes error in this BCB makefile.

Fri Nov 15 18:29:28 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/LoadBalancing/LB_Random.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_Random.cpp (next_member):
          (_tao_next_member):

          Refactored random member selection code into a TAO-specific
          static method.  This is possible since this random load
          balancing strategy implementation is stateless.  This allows
          other strategies to reuse the random member selection code
          without instantiating the TAO_LB_Random class.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.cpp (next_member):

          No loads have been reported for any of the locations the object
          group members reside at.  If no loads have been reported to the
          LoadManager, adaptive load balancing decisions cannot be made.
          Fall back on a non-adaptive strategy, such as the Random load
          balancing strategy, instead.  The Random load balancing strategy
          is used since it is very lightweight and stateless.

Fri Nov 15 15:26:29 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Basic.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/LB_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/client.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/server.cpp:

          Corrected ACE_RCSID macros.  They listed the wrong directory.

Fri Nov 15 15:13:20 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/LoadBalancer/Signal_Handler.cpp (activate):

          sigwait() is not supported on MS Windows, meaning that signals
          cannot be handled synchronously with the current implementation
          of this signal handler.  Handle signals asynchronously through
          the ORB's reactor instead.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp (init):

          Fixed buffer overrun problem that was causing an unhandled
          exception to be thrown on MS Windows.  The hexidecimal
          representation of the time in milliseconds was supposed to be
          embedded in a string buffer of 8 characters.  The decimal
          representation, which is greater than 8 characters long, was
          being embedded into the string instead.

        * orbsvcs/orbsvcs/LoadBalancing/LB_Component.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_Component.cpp:

          Cosmetic and spelling fixes/updates.

        * orbsvcs/orbsvcs/LoadBalancing/LB_IORInterceptor.h:

          CORBA::SystemException, not CORBA_SystemException.

Fri Nov 15 16:59:49 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.h: Fixed warnings
          in Borland build.

Fri Nov 15 15:22:54 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_ccm_pre_proc.cpp:

          Added check to skip implied IDL generation for imported nodes.
          Thanks once again to Nanbor <nanbor@cse.wustl.edu> for his
          testing of the new CCM-related IDL features.

Fri Nov 15 14:51:31 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Asynch_Queued_Message.cpp:
        * tao/Asynch_Queued_Message.h:
        * tao/Synch_Queued_Message.cpp:
        * tao/Synch_Queued_Message.h:
        * tao/Queued_Message.cpp:
        * tao/Queued_Message.h: Added an extra default argument to the
          constructor that indicates whether the class is heap allocated
          or not.

        * tao/Transport.cpp: Changed the places where the
          Asynch_Queued_Message was allocated on the heap to pass the
          right value for the flag that indicates the status of creation
          of the class.

          Thanks to Chad Elliott for pinting out that if the
          Asynch_Queued_Message was allocated on the heap, it may not get
          destroyed if TAO_Asynch_Queued_Message::destroy () was
          called.

Fri Nov 15 20:52:12 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/Notify/Event_Map_T.h:
          Added missing include to fix BCB compile error.

        * tests/Bug_1020_Basic_Regression/*.bor:
        * tests/Bug_1020_Regression/*.bor:
        * tests/Bug_1269_Regression/*.bor:
        * tests/Bug_1270_Regression/*.bor:
          Added new BCB makefiles to build these tests

        * tests/Makefile.bor:
          Added new tests for which there are now BCB makefiles.

Fri Nov 15 11:06:07 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/CosLoadBalancing.dsp:
        * orbsvcs/orbsvcs/CosLoadBalancing_Static.dsp:

          Added LB_Client_{Component,ORBInitalizer}.{h,cpp} files to these
          project files.

Fri Nov 15 10:51:04 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/component_cs.cpp:

          Changed the signature of the global <flat name>_upcast() method for
          components, used by sequences containing forward declared
          components. Thanks again to Nanbor <nanbor@cse.wustl.edu> for
          confirming my suspicion.

Fri Nov 15 09:29:31 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/component_cs.cpp:
        * TAO_IDL/be/be_visitor_component/component_ch.cpp:

          Fixed up some omissions and signatures in generated code. Thanks to
          Nanbor <nanbor@cse.wustl.edu> for uncovering them.

Thu Nov 14 19:45:18 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/DsLogAdmin.dsp: Added required paths to the
          libraries.

Thu Nov 14 16:40:06 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/LoadBalancer/LoadMonitor.cpp (usage):
        * orbsvcs/LoadBalancer/LoadManager.cpp (usage):

          Clarified usage message.

          (parse_args):

          If the "-h" command line option was supplied, print the usage
          message and exit immediately.  Previously, the usage message was
          printed but the executable never exited.

        * orbsvcs/orbsvcs/LoadBalancing/LB_ClientComponent.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_ClientComponent.cpp:
        * orbsvcs/orbsvcs/LoadBalancing/LB_ClientORBInitializer.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_ClientORBInitializer.cpp:

          New sources that transparently add adaptive load balancing
          support to a client.  They are used to transparently register
          the existing LB_ClientRequestInterceptor.  This part of a set of
          changes that enable the adaptive load balancing support in
          Cygnus, i.e. TAO's new load balancer.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.cpp (get_location):

          Fixed problem where CosLoadBalancing::LocationNotFound exception
          was propagated to the client, and interpreted as a
          CORBA::UNKNOWN exception.  If loads at the supplied location
          are not available continue the loop and attempt to retrieve
          loads from the next location.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp
          (built_in_strategy):

          Corrected debugging statement.

Thu Nov 14 16:35:45 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Makefile: Added new tests to the daily builds.

Thu Nov 14 16:28:13 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1269_Regression/run_test.pl:
        * tests/Bug_1270_Regression/run_test.pl: Reduced the runtime
          further to 4 minutes. 7 minutes is too high to blow away the
          stack on machines like charanga!

Thu Nov 14 16:21:58 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1270_Regression/run_test.pl: Reduced the runtime from
          70 minutes to 7 minutes. This will make them usable in the daily
          builds.

Thu Nov 14 13:47:10 2002  Ossama Othman  <ossama@uci.edu>

        * TAO_IDL/be/be_visitor_operation/ami_cs.cpp
          (gen_marshal_and_invoke):

          Fixed "empty controlled statment" warning that occurred due to
          an ACE_ASSERT disappearing when NDEBUG is defined.  That
          ACE_ASSERT is to be executed when a oneway operation check
          evaluates to true.  When NDEBUG is defined, there is nothing to
          execute if that condition is true.  Moved the condition check
          inside the ACE_ASSERT.  This is safe since no other code is
          meant to be run if the oneway operation check/condition is
          true, i.e. there are no side-effects.

Thu Nov 14 14:33:21 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Transport.h:
        * tao/Transport.cpp: Changed the semantics of one of the arguments
          in the call close_connection_shared (). The argument was called
          "disable_purge" and was used in exactly the opposite manner. The
          condition that was used to purge the entry from the cache was
          also topsy-turvy.

          This was fixed the following way

            - the argument is now called "purge".
            - a value of 1 will purge the entry from the cache manager and
              a value of 0 otherwise.

          This should fix the failure of the Crash_On_Write test in our
          daily builds. The same problem seems to have been reported by
          Christophe Vedel <cv@validy.com> in different context, BUG
          1299.

Thu Nov 14 14:04:27 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/AV.dsp:

          Added missing dependency to project.

        * orbsvcs/orbsvcs/DsLogAdmin.dsp:

          Added missing link paths to release version.

Thu Nov 14 10:55:01 2002  Ossama Othman  <ossama@uci.edu>

        * tests/Portable_Interceptors/AMI/Server_Interceptor.cpp
          (send_reply, send_exception):

          Fixed unused argument warning in emulated exceptions case.

Thu Nov 14 10:04:52 2002  Ossama Othman  <ossama@uci.edu>

        * tests/Portable_Interceptors/AMI/client.cpp (test_ami):
          (test_ami_errors):

          Use a PortableServer::ServantBase_var instead of a
          TAO::Utils::Servant_var.  MSVC++ 6 can't handle the member
          templates in the latter.

Thu Nov 14 11:48:31 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/CosNotification.bor: Added a wild card character
          to the list of files to be compiled.

Thu Nov 14 09:43:40 2002  Ossama Othman  <ossama@uci.edu>

        * tests/Portable_Interceptors/AMI/server.dsp:

          Corrected library path for the TAO_Messaging library.

Wed Nov 13 17:18:35 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.cpp: Release the OS resources only when
          the reference count reaches zero. There may be lot of
          furore over this decision. But doing this would help to
          circumvent BUG 1294 and BUG 1361. The solution in BUG 1294, is
          not scalable to situations explained in BUG 1361 which leads to
          crashes. The only way to circumvent that is to release the OS
          resources at the end of the lifetime of the handler.

          Not exactly sure how I missed this yesterday.

Wed Nov 13 14:15:33 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Accept_Strategy.h:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Accept_Strategy.cpp:

          New TAO_SSLIOP-specific TAO_Accept_Strategy implementation.
          This accept strategy builds on on the TAO_Accept_Strategy
          implementation.  It sub-classes that class, and overrides the
          accept_svc_handler() method so that a timeout value may be
          passed to the underlying peer acceptor.  This is necessary to
          defend against a simple Denial-of-Service attack.  See the
          comments in the header for details.  [Bug 1348]

        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Factory.cpp (init):

          Added new "-SSLAcceptTimeout" option.  This option allows
          applications to override the default 10 second TAO_SSLIOP
          accept() timeout.

          (make_acceptor):

          Pass the timeout value to the SSLIOP_Acceptor's constructor.

        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.h:

          Updated use the new TAO_SSLIOP_Accept_Strategy implementation
          instead of the generic one supplied by TAO.  [Bug 1348]

          Cache the accept timeout value in a member variable.

        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp
          (TAO_SSLIOP_Acceptor):

          Initialize the accept timeout member from the value passed to
          this constructor from the SSLIOP_Factory.

          (ssliop_open_i):

          Pass the accept timeout value to the
          TAO_SSLIOP_Accept_Strategy's constructor.  [Bug 1348]

        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp (ssliop_connect):

          Only register the connection handler with the reactor when
          creating a new connection.  Previously, the connection handler
          was registered each time an invocation was made even if a
          connection was previously established.

        * orbsvcs/tests/Security/Secure_Invocation/client.bor (TAO_IDL):
        * orbsvcs/tests/Security/Secure_Invocation/server.bor (TAO_IDL):

          Removed "-GC" option from the TAO_IDL flags.  This test does not
          require AMI callbacks.

Wed Nov 13 14:30:44 2002  Pradeep Gore  <pradeep@oomworks.com>

        * Repeated ChangeLogTag: Tue Nov 12 12:37:18 2002  Pradeep Gore
          <pradeep@oomworks.com>
        * orbsvcs/orbsvcs/CosNotification.dsp:
          Updated.
        * Repeated only the removal of files as per ChangeLogTag: Mon Nov
          11 20:11:56 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Object.h:
        * orbsvcs/orbsvcs/Notify/Object.cpp:
          Added missing call to update_qos_properties
        * orbsvcs/orbsvcs/Notify/Proxy.h:
        * orbsvcs/orbsvcs/Notify/Proxy.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp
        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h
          Changed signature of <qos_changed> method to accept
          QoSProperties.
        * orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
          Rearranged code to avoid deadlock in <connect> methods.

Wed Nov 13 10:41:50 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Log/NotifyLogNotification.h:
        * orbsvcs/orbsvcs/Log/NotifyLog_i.h:

          Checked in these files again after yesterday's update loss.

Wed Nov 13 06:27:48 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp: Fixed a compile
          error.

Tue Nov 12 14:34:37 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/IIOP_Connector.cpp:
        * tao/Strategies/UIOP_Connector.cpp:
        * tao/Strategies/SHMIOP_Connector.cpp:
        * orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp: Fixed unused
          variable warnings in builds compiled with ACE_NDEBUG option
          turned on. This makes the ACE_ASSERT dissappear.

Tue Nov 12 13:25:00 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/LF_CH_Event.cpp: Fixed compile error in no inline builds.

Tue Nov 12 13:13:05 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/TAO.dsp:
        * tao/TAO_Static.dsp: Added the new files.

Tue Nov 12 12:54:39 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/LF_Invocation_Event.inl: Fixed a typo.

Tue Nov 12 12:47:31 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        Fix for [BUG 1020]. Please see details of the bug at

        http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1020

        Please see the discussions in the above URL for details on
        the motivations for these changes. A very brief summary of the
        changes alone are mentioned.

        * tao/Transport.cpp(close_connection_shared): Wait on the
          leader follower if the handle is registered with the
          reactor.

        * tao/LF_Event.h:
        * tao/LF_Event.cpp:
        * tao/LF_Event.inl: Made the class TAO_LF_Event as an abstract
          base class. This helps us to strategize the type of
          behaviour required in different concrete classes which can
          in turn be used by other portions of the ORB to wait on LF.

        * tao/LF_Invocation_Event.h:
        * tao/LF_Invocation_Event.cpp:
        * tao/LF_Invocation_Event.inl: Concrete implementation of a
          LF_Event class, where the state transitions along the invocation
          path are consolidated.

        * tao/LF_CH_Event.h:
        * tao/LF_CH_Event.cpp: Concrete implementation of a LF_Event
          class, where the state transitions of the connection handler are
          consolidated.

        * tao/Queued_Message.h:
        * tao/Synch_Reply_Dispatcher.h: They now inherit from
          TAO_LF_Invocation_Event class.

        * tao/Connection_Handler.h: This class inherits now from the
          TAO_LF_CH_Event class.

        * tao/Makefile.bor:
        * tao/Makefile.tao: Added the new files to the list of compilable
          files.

Tue Nov 12 12:37:18 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/Logging_Service/Notify_Logging_Service/Makefile:
        * orbsvcs/examples/Log/Notify/Makefile:
          Updated dependencies.

        * orbsvcs/examples/Log/Notify/Notify_Consumer.h:
          Removed the include of
          orbsvcs/orbsvcs/Notify/Notify_EventChannel_i.h, which no longer exists.

Tue Nov 12 11:15:50 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/IIOP_Connector.cpp:
        * tao/Strategies/UIOP_Connector.cpp:
        * tao/Strategies/SHMIOP_Connector.cpp:
        * orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp: Added an assert
          statement after decrementing the reference count. Point taken
          from "Pragmatic Programmer".

Tue Nov 12 11:08:32 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.h: Commented out the following calls
          incr_pending_upcalls (), decr_pending_upcalls () and
          pending_upcalls (), since there was no implementation and they
          were not at all used.

        * tao/Connection_Handler.cpp: Cosmetic changes.

Tue Nov 12 10:17:05 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Log/NotifyLogNotification.h:
        * orbsvcs/orbsvcs/Log/NotifyLog_i.h:

          Removed the include of
          orbsvcs/orbsvcs/Notify/Notify_EventChannel_i.h, which no longer exists.

Tue Nov 12 13:31:12 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp:
          Made the argument of addressing_mode() same as in header file so that
          doxygen documentation is generated for this method.

Mon Nov 11 23:04:34 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Application_Controlled.dsw:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/client.dsp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/server.dsp:

          New MSVC++ 6 project files for this test.

Mon Nov 11 22:33:37 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Makefile (TAO_LB_LIBS):

          Corrected order of libraries linked to the server binary.

          (client):

          Do not link server-side libraries.  They are completely
          unnecessary for this client binary.

        * orbsvcs/tests/Makefile.bor (DIRS):

          Added "LoadBalancing" directory to the list of directories to
          recurse into.

        * orbsvcs/tests/LoadBalancing/Makefile.bor:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Makefile.bor:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Makefile.bor:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/client.bor:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/server.bor:

          New Borland C++ Makefiles for this test.

Mon Nov 11 20:31:18 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/LoadBalancer/LoadManager.cpp (TAO_LB_run_load_manager):
        * orbsvcs/LoadBalancer/LoadMonitor.cpp (TAO_LB_run_load_monitor):

          New global function that is run when the Load{Manager,Monitor}'s
          ORB thread is run.  It is only used on Linux when multi-thread
          support is enabled.  This is part of a work-around for the
          problem where signals can only be handled in the main() thread
          on Linux.

          (ACE_TMAIN):

          Spawn a new thread to run the LoadManager's ORB, and handle
          signals in this (main()) thread.  This is the second part of a
          work-around for the problem where signals can only be handled in
          the main() thread on Linux.

          Moved signal handler activation to just before the point where
          the ORB is run.  There is no need to activate the signal handler
          earlier than there.

Mon Nov 11 19:22:05 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/LoadBalancing/LB_ObjectReferenceFactory.h:

          Explicitly include "ace/Hash_Map_Manager_T.h" to pull in
          ACE_Hash_Map_Manager_Ex template.

Mon Nov 11 19:15:42 2002  Ossama Othman  <ossama@uci.edu>

        * tests/Portable_Interceptors/AMI/AMI.dsw:
        * tests/Portable_Interceptors/AMI/client.dsp:
        * tests/Portable_Interceptors/AMI/server.dsp:

          New MSVC++ project files for this test.

Mon Nov 11 18:03:37 2002  Ossama Othman  <ossama@uci.edu>

        * docs/interceptors.html:

          Updated release notes about AMI interceptor support.

          Updated CORBA spec URL to the 3.0.1 spec's URL.

        * tao/Messaging/Makefile.bor:
        * tao/Messaging/TAO_Messaging.dsp:
        * tao/Messaging/TAO_Messaging_Static.dsp:

          Added AMI_ClientRequestInfo_i.{h,cpp} to these Make/project
          files.

Mon Nov 11 17:27:22 2002  Carlos O'Ryan  <coryan@atdesk.com>

        * tao/Messaging/AMI_ClientRequestInfo_i.h:
        * tao/Messaging/AMI_ClientRequestInfo_i.cpp:
        * tao/Messaging/Makefile:
          Add implementation class for AMI ClientRequestInfos.  [Bug 286]

        * TAO_IDL/be/be_codegen.cpp:
          Move some #includes to the .cpp file, include
          AMI_ClientRequestInfo_i.h when compiling with interceptors and
          AMI.    [Bug 286]

        * TAO_IDL/be/be_visitor_operation/ami_cs.cpp:
          Generate interceptor code for sendc_*** operations.  [Bug 286]

        * tests/Portable_Interceptors/Makefile:
        * tests/Portable_Interceptors/AMI/Makefile:
        * tests/Portable_Interceptors/AMI/run_test.pl:
        * tests/Portable_Interceptors/AMI/.cvsignore:
        * tests/Portable_Interceptors/AMI/Client_Interceptor.h:
        * tests/Portable_Interceptors/AMI/Client_Interceptor.cpp:
        * tests/Portable_Interceptors/AMI/Client_ORBInitializer.h:
        * tests/Portable_Interceptors/AMI/Client_ORBInitializer.cpp:
        * tests/Portable_Interceptors/AMI/Echo.h:
        * tests/Portable_Interceptors/AMI/Echo.cpp:
        * tests/Portable_Interceptors/AMI/Echo_Handler.h:
        * tests/Portable_Interceptors/AMI/Echo_Handler.cpp:
        * tests/Portable_Interceptors/AMI/Server_Interceptor.h:
        * tests/Portable_Interceptors/AMI/Server_Interceptor.cpp:
        * tests/Portable_Interceptors/AMI/Server_ORBInitializer.h:
        * tests/Portable_Interceptors/AMI/Server_ORBInitializer.cpp:
        * tests/Portable_Interceptors/AMI/Shared_Interceptor.h:
        * tests/Portable_Interceptors/AMI/Test.idl:
        * tests/Portable_Interceptors/AMI/client.cpp:
        * tests/Portable_Interceptors/AMI/server.cpp:
          New regression test for the AMI interceptors.

Mon Nov 11 20:11:56 2002  Pradeep Gore  <pradeep@oomworks.com>

        Removed these files as they are no longer needed. All features and
        bug fixes have been absorbed in the new implementation as per
        ChangeLogTag: Sun Oct 27 01:04:09 2002  Pradeep Gore  <pradeep@oomworks.com>
        * orbsvcs/orbsvcs/Notify/Notify_AdminProperties.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_AdminProperties.h:
        * orbsvcs/orbsvcs/Notify/Notify_AdminProperties.i:
        * orbsvcs/orbsvcs/Notify/Notify_Buffering_Strategy.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Buffering_Strategy.h:
        * orbsvcs/orbsvcs/Notify/Notify_Channel_Objects_Factory.h:
        * orbsvcs/orbsvcs/Notify/Notify_Collection.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Collection.h:
        * orbsvcs/orbsvcs/Notify/Notify_Collection_Factory.h:
        * orbsvcs/orbsvcs/Notify/Notify_Command.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Command.h:
        * orbsvcs/orbsvcs/Notify/Notify_Command.i:
        * orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.h:
        * orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.h:
        * orbsvcs/orbsvcs/Notify/Notify_ConsumerAdmin_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_ConsumerAdmin_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_Event.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Event.h:
        * orbsvcs/orbsvcs/Notify/Notify_Event.i:
        * orbsvcs/orbsvcs/Notify/Notify_EventChannel_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_EventChannel_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Dispatch_Command.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Dispatch_Command.h:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Manager.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Manager.h:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Manager.i:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Manager_Objects_Factory.h:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Map.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Map.h:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Map.i:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Processor.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Event_Processor.h:
        * orbsvcs/orbsvcs/Notify/Notify_Factory.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Factory.h:
        * orbsvcs/orbsvcs/Notify/Notify_FilterAdmin_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_FilterAdmin_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_FilterFactory_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_FilterFactory_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_Filter_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Filter_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_ID_Pool_T.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_ID_Pool_T.h:
        * orbsvcs/orbsvcs/Notify/Notify_ID_Pool_T.i:
        * orbsvcs/orbsvcs/Notify/Notify_Listener_Filter_Eval_Command.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Listener_Filter_Eval_Command.h:
        * orbsvcs/orbsvcs/Notify/Notify_Listeners.h:
        * orbsvcs/orbsvcs/Notify/Notify_Lookup_Command.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Lookup_Command.h:
        * orbsvcs/orbsvcs/Notify/Notify_MT_Worker_Task.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_MT_Worker_Task.h:
        * orbsvcs/orbsvcs/Notify/Notify_POA_Factory.h:
        * orbsvcs/orbsvcs/Notify/Notify_ProxyConsumer_T.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_ProxyConsumer_T.h:
        * orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_ProxySupplier_T.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_ProxySupplier_T.h:
        * orbsvcs/orbsvcs/Notify/Notify_Proxy_T.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Proxy_T.h:
        * orbsvcs/orbsvcs/Notify/Notify_QoSAdmin_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_QoSAdmin_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_QoSAdmin_i.inl:
        * orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushConsumer_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushConsumer_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushSupplier_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushSupplier_i.h:
        * orbsvcs/orbsvcs/Notify/Notify_Source_Filter_Eval_Command.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Source_Filter_Eval_Command.h:
        * orbsvcs/orbsvcs/Notify/Notify_StructuredEvents.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_StructuredEvents.h:
        * orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushConsumer_i.cpp:
          Removed.

        * orbsvcs/orbsvcs/Notify/Dispatch_Observer_T.cpp:
        * orbsvcs/orbsvcs/Notify/Dispatch_Observer_T.h:
        * orbsvcs/orbsvcs/Notify/Dispatch_Observer_T.inl:
          Removed Dispatch Observer as error handling has moved to TAO_NS_Peer.

        * orbsvcs/orbsvcs/Notify/Event_Map_Observer.h:
        * orbsvcs/orbsvcs/Notify/Event_Map_Observer_T.cpp:
        * orbsvcs/orbsvcs/Notify/Event_Map_Observer_T.h:
        * orbsvcs/orbsvcs/Notify/Event_Map_Observer_T.inl:
          Removed Event_Map_Observer as Map changes are conveyed via
          return values in Event_Map_T <insert> and <remove> methods.

        * orbsvcs/orbsvcs/Notify/Pending_Worker_T.cpp:
        * orbsvcs/orbsvcs/Notify/Pending_Worker_T.h:
        * orbsvcs/orbsvcs/Notify/Pending_Worker_T.inl:
          Removed Pending_Worker as we have decided not to implement
          retries for now.

        * orbsvcs/orbsvcs/Notify/Builder.cpp:
          Removed code depending on Dispatch_Observer.

        * orbsvcs/orbsvcs/Notify/Consumer.h:
        * orbsvcs/orbsvcs/Notify/Consumer.cpp:
        * orbsvcs/orbsvcs/Notify/Consumer.inl:
          Added <dispatch_updates_i> method that invokes offer_change.
          Modified <push> implementation to catch exceptions and inform
          the base Peer class to handle exceptions while dispatching.
          Removed code that depended the Dispatch_Observer.

        * orbsvcs/orbsvcs/Notify/EventType.h:
        * orbsvcs/orbsvcs/Notify/EventType.cpp:
          Added a <dump> debugging helper method that prints the contents
          of the event type.

        * orbsvcs/orbsvcs/Notify/EventTypeSeq.h:
        * orbsvcs/orbsvcs/Notify/EventTypeSeq.cpp:
          - Added a <dump> debugging helper method that prints the contents
          of the event sequence.
          - Added a <populate_no_special> method that populates a
          CosNotification::EventTypeSeq but excludes the special event
          type.
          - Added an <intersection> method that calculates the common
          elements of two sequences.
          - Modified the <init> method to correctly handle cases with
          duplicates in the added and/or removed list.

        * orbsvcs/orbsvcs/Notify/Event_Manager.h:
        * orbsvcs/orbsvcs/Notify/Event_Manager.cpp:
        * orbsvcs/orbsvcs/Notify/Event_Manager.inl:
          - Removed code related to : Event_Map_Observer,
          Dispatch_Observer, Pending_Worker, Update_Removed_Worker and
          Update_Added_Worker.
          - Modified the <un_/publish>, <un_/subscribe> methods to return
          the list of eventypes that are being seen for the first or last
          time.
          - Added <offer_change> and <subscription_change> methods to
          handle update changes.
          - Added <offered_types> and <subscription_types> that return the
          current available types from the Consumer and Supplier Maps.
          - Added worker classes TAO_NS_ProxyConsumer_Update_Worker and
          TAO_NS_ProxySupplier_Update_Worker classes that inform proxys
          regarding update changes.
        - Added <connect> and <disconnect> methods that we delegate to the
          appropriate Event_Map and inform the newly connected Proxy of
          types that are avialable in the channel.

        * orbsvcs/orbsvcs/Notify/Event_Map_T.cpp:
        * orbsvcs/orbsvcs/Notify/Event_Map_T.h:
        * orbsvcs/orbsvcs/Notify/Event_Map_T.inl:
          - Added <connect> and <disconnect> methods that add  the proxy
          to an updates list. This list is used to disseminate the
          subscription/offer update changes.
          - Added accessor method for the updates list and count of proxys
          connected to this map.
         - Removed code relating to Event_Map_Observer.
         - The <insert> and <remove> methods now return 1 if the type
          being inserted or removed is the first time/ last time.

        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
          - Added checks for nil pointers and modified exception handling
          code to be simpler.

        * orbsvcs/orbsvcs/Notify/Peer.cpp:
        * orbsvcs/orbsvcs/Notify/Peer.h:
        * orbsvcs/orbsvcs/Notify/Peer.inl:
          - Added a <dispatch_updates> method that formats the event types
          for final dispatch.
          - Added a <handle_dispatch_exception> method that simply
          destroys the offending Peer.
          - Modified <dispatch_updates_i> to accept
          CosNotification::EventTypeSeq's.
        - Removed <updates_dispatch_observer_> data member and code
          related to it.
        - Removed <retry_count_> data member and retry related code.

        * orbsvcs/orbsvcs/Notify/Proxy.cpp:
        * orbsvcs/orbsvcs/Notify/Proxy.h:
          - Removed added_, removed_ data members, <type_added> and
          <type_removed> code because subscription/offer_change handling
          logic has been simplified.
          - Added <types_changed> method that enqueues a
          TAO_NS_Method_Request_Updates object in the Proxys worker task queue.
          - Renamed the <admin_subscription> to
          <admin_types_changed>. This seems more appropriate.

        * orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/ProxyConsumer.h:
           - Added calls to <connect>, <disconnect> and <offer_change>
          instead of calling <publish> and <un_publish>

        * orbsvcs/orbsvcs/Notify/ProxyConsumer.ProxyConsumer_T.cpp:
        * orbsvcs/orbsvcs/Notify/ProxyConsumer.ProxyConsumer_T.h:
          - Renaming to <admin_types_changed>
          - Call <offer_change> instead of calling <publish> and <un_publish>

        * orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
          - Calling <subscription_change> instead of <subscribe> and
          <un_subscribe>.
          - Added calls to <connect> and <disconnect>

        * orbsvcs/orbsvcs/Notify/ProxySupplier_T.cpp:
        * orbsvcs/orbsvcs/Notify/ProxySupplier_T.h:
        - Calling <subscription_change> instead of <subscribe> and
          <un_subscribe>.
        - Renamed <admin_subscription> to <admin_types_changed>

        * orbsvcs/orbsvcs/Notify/Refcountable.cpp:
        - Print messages at debug level 1.

        * orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.inl:
        - Renamed <admin_subscription> to <admin_types_changed>

        * orbsvcs/orbsvcs/Notify/Supplier.cpp:
        * orbsvcs/orbsvcs/Notify/Supplier.h:
        - Modified <dispatch_updates_i> signature.

        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
          Moved shutdown code fix from Notify_MT_Worker.cpp.

        * orbsvcs/orbsvcs/Notify/Types.h:
          - Removed forward declaration for Event_Map_Observer,
          Dispatch_Observer, Pending_Worker types that are no longer used.

        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.h:
          - Added missing virtual keyword to <push>

        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp
          - Changed the exception handling code to delegate to the Peer's
          <handle_dispatch_exception> method.

        * orbsvcs/orbsvcs/Notify/Method_Request_Updates.cpp:
        * orbsvcs/orbsvcs/Notify/Method_Request_Updates.h:
        * orbsvcs/orbsvcs/Notify/Method_Request_Updates.inl:
          Added a Method Request type that sends dispatch_updates to Peer
          objects. Updates are also treated as events and
          enqueued/dequeued in a queue(if any) of the Worker Task.
          This replaces the earlier logic of using Pending_Worker.

        * orbsvcs/tests/Notify/Events.cpp:
        * orbsvcs/tests/Notify/Events.h:
          - Added a -use_default_admin option that results in the test
          obtaining a Consumer/SupplierAdmin interface via the
          default_consumer/supplier_admin method.

        * orbsvcs/tests/Notify/Filter.cpp:
        * orbsvcs/tests/Notify/Filter.h:
          - Added this test for Filter operations.
          This test excercises the FilterAdmin code for a Consumer Admin.

        * orbsvcs/tests/Notify/MultiTypes.cpp:
        * orbsvcs/tests/Notify/MultiTypes.h:
        - Added this test to check the following -
          + Consumers of different types should receive events
          that are send by any kind of supplier.
          + A nested upcall to the Notification Service via a
          disconnect_XXX from within a push should succeed.

        * orbsvcs/tests/Notify/Updates.cpp:
        * orbsvcs/tests/Notify/Updates.h:
          Completely revamped this test. This test tests subscription and
          offer change calls and makes sure that the expected updates are
          indeed received.

        * orbsvcs/tests/Notify/Basic/run_test.pl:
          Added the new Filter and MultiTypes tests.

        * orbsvcs/tests/Notify/Basic/Makefile
        * orbsvcs/tests/Notify/Basic/Makefile.bor
        * orbsvcs/tests/Notify/Notify_Tests.dsw
        * orbsvcs/tests/Notify/Basic/Basic.dsw
          Modified to include the new Filter and MultiTypes tests and
          updated dependencies.

        * orbsvcs/orbsvcs/Makefile.CosNotification:
        * orbsvcs/orbsvcs/CosNotification.dsp:
        * orbsvcs/orbsvcs/CosNotification.bor:
          Removed old Notify files, added Method_Request_Updates file and
          updated dependencies.

        * orbsvcs/Notify_Service/Makefile:
          Updated dependencies.

Mon Nov 11 14:28:39 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/GIOP_Message_Base.cpp (consolidate_fragments): When growing
          the message block to increase the allocated memory, we now use
          the length () of the available message block as the basis for
          growing instead of the size (). Simon McQueen of PrismTech ran
          several experiments while investigating problems related to
          [BUGID 1356] and is convinced this is the right way to go, since
          this uses less memory. Since I dont foresee problems, his patch
          is being accepted for the release. Thanks to Simon for putting
          in lot of effort to narrow down the problem to this area.

Mon Nov 11 10:43:59 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.dsp:
          Added TAO_CosEvent.lib to the list of libraries for Release
          build only to fix a link problem on MSVC.

        * orbsvcs/tests/Log/Basic_Log_Test/Basic_Log_Test.cpp
          (write_records): Initialize the local variable <l> to 0 to fix a
          build warning.

Mon Nov 11 09:28:43 2002  Priyanka Gontla  <pgontla@ociweb.com>

        * orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
          Get the whole hostname name including the domain instead
          of just the hostname.
          Thanks to Kobi Cohen-Arazi <kobi@mivzak.com> for pointing
          out a exception thats raised.

        * orbsvcs/tests/ImplRepo/run_test.pl:
          cosmetic changes.

Sun Nov 10 20:24:59 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/IFR_Service/ifr_adding_visitor.cpp:
        * orbsvcs/IFR_Service/ifr_adding_visitor.h:
        * orbsvcs/IFR_Service/ifr_adding_visitor_exception.cpp:
        * orbsvcs/IFR_Service/ifr_adding_visitor_exception.h:

          Changed handling of reopened modules. In the case where a
          module and its member have both been seen before, tao_ifr
          now assumes that it is re-processing the IDL file in which
          the module and member were first seen, and ignores the member.
          It is possible that there is actually an illegal name clash, but
          it is not possible to tell the difference in every case, so we
          choose the behavior assuming that the common case will be the
          re-processing of an already-loaded IDL file. Thanks to Nick
          Cross <nick.cross@prismtechnologies.com> for reporting the
          problem when loading CosNaming.idl twice and then trying to
          look at the IFR contents.

        * orbsvcs/IFR_Service/ifr_adding_visitor_structure.cpp:

          Cosmetic changes.

Sun Nov 10 18:02:51 UTC 2002  Don Hinton  <dhinton@ieee.org>

        * TAO_IDL/be/be_visitor_valuetype/valuetype_cs.cpp: Fixed a problem
          with previous patch, Wed Oct 16 17:16:38 2002  Jeff Parsons
          <parsons@isis-server.isis.vanderbilt.edu>, where the logic was
          reversed.  Thanks to Jon Franklin for noticing the problem and
          providing the patch.

Sun Nov 10 08:19:21 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/IIOP_Connector.cpp:
        * tao/Connection_Handler.cpp:
        * tao/IIOP_Connection_Handler.cpp: Some debugging statements were
          either out of format or totally useless for any debugging
          purposes. Fixed some of them that I saw in the path that
          actually hinders my debugging.

Sat Nov 09 09:47:37 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * orbsvcs/orbsvcs/RTEventLog.dsp: The release build was not
          generating a different name from the debug build without
          following our naming convention.

Fri Nov 08 19:18:58 2002  Irfan Pyarali  <irfan@oomworks.com>

        * orbsvcs/tests/Notify/Basic:

          - Renamed the following file to make consistent:

            - AdminProperties_Test.* to AdminProperties.*
            - Events_Test.* to Events.*
            - LifeCycleTest.* to LifeCycle.*

          - Updated the following files to reflect the above described
            name changes:

            - Basic/Basic.dsw
            - Basic/Basic.mpc
            - Makefile
            - Makefile.bor
            - README

          - Added run_test.pl so that these tests can be run in the
            nightly built.

        * orbsvcs/tests/Notify/performance-tests/RedGreen: Added
          run_test.pl so that these tests can be run in the nightly built.

        * orbsvcs/tests/Notify:

          Updated the following project files so that they can be included
          in the mega Notify test workspace:

          orbsvcs/tests/Notify/Notify_Tests.dsw

          - Basic/ConnectDisconnect.dsp
          - Basic/IdAssignment.dsp
          - Basic/Simple.dsp
          - Basic/Updates.dsp
          - Blocking/Structured_Consumer.dsp
          - Blocking/Structured_Supplier.dsp
          - Discarding/Sequence_Consumer.dsp
          - Discarding/Sequence_Supplier.dsp
          - Discarding/Structured_Consumer.dsp
          - Discarding/Structured_Supplier.dsp
          - MT_Dispatching/Structured_Consumer.dsp
          - MT_Dispatching/Structured_Supplier.dsp
          - Ordering/Sequence_Consumer.dsp
          - Ordering/Sequence_Supplier.dsp
          - Ordering/Structured_Consumer.dsp
          - Ordering/Structured_Supplier.dsp
          - Sequence_Multi_ETCL_Filter/Sequence_Consumer.dsp
          - Sequence_Multi_ETCL_Filter/Sequence_Supplier.dsp
          - Sequence_Multi_Filter/Sequence_Consumer.dsp
          - Sequence_Multi_Filter/Sequence_Supplier.dsp
          - Structured_Filter/Structured_Filter_Consumer.dsp
          - Structured_Filter/Structured_Filter_Supplier.dsp
          - Structured_Multi_Filter/Structured_Multi_Filter_Consumer.dsp
          - Structured_Multi_Filter/Structured_Multi_Filter_Supplier.dsp
          - performance-tests/Filter/Sequence_Consumer.dsp
          - performance-tests/Filter/Sequence_Supplier.dsp
          - performance-tests/Filter/Structured_Consumer.dsp
          - performance-tests/Filter/Structured_Supplier.dsp
          - performance-tests/RedGreen/RedGreen.dsp
          - performance-tests/Throughput/Throughput.dsp

        * orbsvcs/tests/Notify/Notify_Tests.dsw: Add projects, updated
          names, and updated dependencies.

        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter: Renamed file to
          fix missing "e":

          Added   Sequence_Multi_ETCL_Filter.mpc
          Removed Sequenc_Multi_ETCL_Filter.mpc

        * orbsvcs/tests/Notify/Basic/IdAssignment.h: Fixed filename in
          comments.

        * orbsvcs/tests/Notify/Basic/Simple.cpp:
        * orbsvcs/tests/Notify/Basic/IdAssignment.cpp:
        * orbsvcs/tests/Notify/Basic/ConnectDisconnect.cpp:

          Reduce debugging statements.

        * $ACE_ROOT/bin/auto_run_tests.lst: Updated to run Notify test
          nightly.

Fri Nov  8 13:19:46 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.cpp (svc_i): Cosmetic fixes.

Fri Nov 08 10:47:41 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/Abstract_Interface/Abstract_Interface_Server.dsp: Fixed
          the broken release configuration.

Fri Nov 08 10:03:22 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * orbsvcs/orbsvcs/RTEventLog.dsp: Fixed the broken release build
          configuration.

Thu Nov 07 12:21:21 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * TAOACE.dsw:
        * orbsvcs/Logging_Service/Basic_Logging_Service/Basic_Logging_Service.dsw:
        * orbsvcs/Logging_Service/Basic_Logging_Service/Logging_Service.dsp:
        * orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Service.dsp:
        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.dsp:
        * orbsvcs/Logging_Service/RTEvent_Logging_Service/RTEvent_Logging_Service.dsp:
        * orbsvcs/examples/Log/Basic/Client.dsp:
        * orbsvcs/examples/Log/Event/Log_CEC_Simple_Consumer.dsp:
        * orbsvcs/examples/Log/Event/Log_CEC_Simple_Supplier.dsp:
        * orbsvcs/examples/Log/Notify/Log_Notify_Simple_Consumer.dsp:
        * orbsvcs/examples/Log/Notify/Log_Notify_Simple_Supplier.dsp:
        * orbsvcs/examples/Log/RTEvent/Log_RTEvent_Simple_Consumer.dsp:
        * orbsvcs/examples/Log/RTEvent/Log_RTEvent_Simple_Supplier.dsp:
        * orbsvcs/orbsvcs/RTEventLog.dsp:
        * orbsvcs/tests/Log/Basic_Log_Test/Basic_Log_Test.dsp:
        * tests/IDL_Test/idl_test.dsp: Fixed broken workspaces and projects.

Thu Nov  7 12:03:18 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Incoming_Mesage_Queue.cpp (duplicate): In duplicate () the
          copy constructor should be called instead of the plain
          constructor. Thanks to Simon McQueen <sm@prismtechnologies.com>
          for pointing this out.

Thu Nov  7 09:17:04 2002  Balachandran Natarajan  <bala@cs.wustl.edu>

        * utils/nslist/nsadd.cpp: Fixed a compile error caused undeclared
          variables.

Wed Nov  6 20:09:14 2002  Douglas C. Schmidt  <schmidt@tango.doc.wustl.edu>

        * utils/nslist/nsadd.cpp: Enhanced the utilty so that it can add
          arbitrary paths to Naming Service entries.  Thanks to Paul
          Caffrey <denginere@hotmail.com> for this fix.

Thu Nov  7 06:44:12 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/tests/Makefile.bor:
          Added Security directory

        * orbsvcs/tests/Security/Makefile.bor:
          Added new BCB makefle to build subdirectories

        * orbsvcs/tests/Security/Secure_Invocation/Makefile.bor:
        * orbsvcs/tests/Security/Secure_Invocation/client.bor:
        * orbsvcs/tests/Security/Secure_Invocation/server.bor:
          Added these new BCB makefiles. Thanks to Oleg Kraynov
          <mustafa@gema.ru> for creating these.

Wed Nov  6 11:43:01 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/examples/CosEC/RtEC_Based/lib/Makefile: Fixed an error
          which occurs when the right libraries havent been built. Thanks
          to Gautam Thaker for pointing this out.

Wed Nov  6 11:35:01 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Basic_Regression/Server_Task.h: Fixed fuzz
          errors.

Wed Nov  6 11:32:58 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Regression/Echo.cpp:
        * tests/Bug_1020_Regression/Echo.h:
        * tests/Bug_1020_Regression/Echo_Callback.cpp:
        * tests/Bug_1020_Regression/Echo_Callback.h:
        * tests/Bug_1020_Regression/ORB_Task.cpp:
        * tests/Bug_1020_Regression/ORB_Task.h:
        * tests/Bug_1020_Regression/Server_Task.cpp:
        * tests/Bug_1020_Regression/Test.idl: Fixed fuzz errors.

Tue Nov 05 17:32:22 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/ConsumerAdmin.cpp:
        * orbsvcs/orbsvcs/Notify/EventChannel.cpp:
        * orbsvcs/orbsvcs/Notify/FilterAdmin.cpp:
        * orbsvcs/orbsvcs/Notify/Proxy_T.cpp:
        * orbsvcs/orbsvcs/Notify/SupplierAdmin.cpp:

          Corrected the way IDSequences are populated. Thanks to Yamuna
          for helping to debug this.

Tue Nov 05 12:01:25 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Any/PushSupplier.cpp:
          ENV variable was being used in <init>, changed it back to
          ACE_ENV_ARG_DECL.

Tue Nov  5 08:28:23 2002  Douglas C. Schmidt  <schmidt@tango.doc.wustl.edu>

        * TAO_IDL/be/be_visitor_valuetype/field_cs.cpp (visit_enum): Changed
          "val)/" to "val)" to avoid a bug.  Thanks to Jian Chen for
          reporting the fix and to Marc Alter
          <marc.alter@fr.thalesgroup.com> for the original bug report.

Mon Nov  4 19:03:12 CST 2002 Pradeep Gore  <pradeep@oomworks.com>

        * (Removed previous bogus ChangeLog entry).
        * orbsvcs/orbsvcs/CosNotification.bor:
          Thanks to Christopher Kohlhoff <chris@kohlhoff.com>, Johnny
          Willemsen <jwillemsen@remedy.nl>, Irfan, Nanbor and Bala for help in
          correcting the .bor file.

        * tao/Messaging/Makefile.bor:
          Applied change in INCLUDE provided by Christopher Kohlhoff
          <chris@kohlhoff.com>.

        * orbsvcs/orbsvcs/Notify/Builder.cpp:
          In method <build_filter_factory> create a filter factory if we
          could not obtain one as a dynamic service.

        * orbsvcs/orbsvcs/Notify/Event_Map_Observer_T.cpp:
          TAO_NS_Update_Added_Worker<PROXY>::work, moved call to
          type_added inside the "if" statement.

          Following files were modified for backward compatibility as some
          application might be calling their <init_svc> method.
        * orbsvcs/orbsvcs/Notify/Notify_Default_CO_Factory.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Default_CO_Factory.h:
        * orbsvcs/orbsvcs/Notify/Notify_Default_Collection_Factory.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Default_Collection_Factory.h:
        * orbsvcs/orbsvcs/Notify/Notify_Default_EMO_Factory.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Default_EMO_Factory.h:
        * orbsvcs/orbsvcs/Notify/Notify_Default_POA_Factory.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Default_POA_Factory.h:

        * orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.h:
          static <create> method maintained for backward compatibility.

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp:
        * orbsvcs/orbsvcs/Notify/Notify_Service.h:
          In method TAO_NS_Notify_Service::init - added old options for
          backward compatibility.
          Revived Service Object
          Notify_Default_Event_Manager_Objects_Factory.

        * orbsvcs/orbsvcs/Notify/Properties.cpp:
        * orbsvcs/orbsvcs/Notify/Properties.h:
          Defined TAO_NS_DEFAULT_UPDATES_PERIOD instead of using a magic
          number for the subscription/publication change update
          notification interval.

        * orbsvcs/orbsvcs/Notify/Proxy.cpp:
          Added missing initialization of updates_off_ data member.

        * orbsvcs/orbsvcs/Notify/Service.h:
          Defined the string name for the
          Notify_Default_Event_Manager_Objects_Factory.

        * orbsvcs/orbsvcs/Notify/Any/PushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Any/PushSupplier.cpp:
          Check if narrow fails because CosEventComm client was connecting
          and does not support NotifySubscribe.

        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredPushSupplier.cpp:
          Replaced unnecessary calls to _narrow with _duplicate. Thanks to
          Irfan for pointing this out.

        * orbsvcs/Notify_Service/Notify_Service.cpp:
        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.cpp:
          Remove explicit instantiation of Dynamic_Service<TAO_NS_Service>
          as its now defined in Notify_EventChannelFactory_i.cpp.

Mon Nov  4 14:21:18 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Regression: Another test that has the capability
          of stressing things a bit more for this bug to show up. This
          test is structured in such a manner that multipel Multi-threaded
          clients can connect to a server. The clients crash at periodic
          intervals. This is a slightly improvised form of the basic
          test. Thanks to Carlos O'Ryan for donating this test.

        * tests/Bug_1020_Regression/client.cpp:
        * tests/Bug_1020_Regression/Echo_Callback.cpp:
        * tests/Bug_1020_Regression/Echo_Callback.h:
        * tests/Bug_1020_Regression/Echo.cpp:
        * tests/Bug_1020_Regression/Echo.h:
        * tests/Bug_1020_Regression/Makefile:
        * tests/Bug_1020_Regression/ORB_Task.cpp:
        * tests/Bug_1020_Regression/ORB_Task.h:
        * tests/Bug_1020_Regression/run_test.pl:
        * tests/Bug_1020_Regression/server.cpp:
        * tests/Bug_1020_Regression/Server.cpp:
        * tests/Bug_1020_Regression/Server.h:
        * tests/Bug_1020_Regression/Server_Task.cpp:
        * tests/Bug_1020_Regression/Server_Task.h:
        * tests/Bug_1020_Regression/Test.idl: Files for this test.


Mon Nov  4 14:18:15 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Basic_Regression/README: Added information about
          the motivation and purpose of this test.

Mon Nov  4 13:44:48 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1020_Basic_Regression: A new regression test for BUG
          1020. This is a simple test which was failing with 1.2.1. The
          test has Multi-threaded client communicating with a
          Multi-threaded server. The client is crashed to see whether the
          server crashes.

        * tests/Bug_1020_Basic_Regression/client.cpp:
        * tests/Bug_1020_Basic_Regression/Client_Task.cpp:
        * tests/Bug_1020_Basic_Regression/Client_Task.h:
        * tests/Bug_1020_Basic_Regression/Echo_Caller.cpp:
        * tests/Bug_1020_Basic_Regression/Echo_Caller.h:
        * tests/Bug_1020_Basic_Regression/Echo.cpp:
        * tests/Bug_1020_Basic_Regression/Echo.h:
        * tests/Bug_1020_Basic_Regression/Makefile:
        * tests/Bug_1020_Basic_Regression/server.cpp:
        * tests/Bug_1020_Basic_Regression/Server_Task.cpp:
        * tests/Bug_1020_Basic_Regression/Server_Task.h:
        * tests/Bug_1020_Basic_Regression/Test.idl: New files added for
          this test.

Mon Nov  4 12:24:51 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.h: Added a
          missing exception specification from the definition to the
          declaration of create_member (). This should fix  compile errors
          on Linux builds.

Mon Nov 04 11:10:14 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp:
          in method <init_main_thread> change argument to
          ACE_ENV_ARG_DECL_NOT_USED.

        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.cpp:
          Added code for explicit template instantiation.

Mon Nov 04 10:47:41 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.cpp:
          In <create_filter> method : Added check to include EXTENDED_TCL
          string as a valid constraint grammar.

Sun Nov  3 19:13:49 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h
          (member_count):

          Corrected exception specification so that it matches the method
          definition's exception specification.

        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
          (member_count):

          Removed extra line (cosmetic change).

Sun Nov  3 16:02:55 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/Makefile.PortableGroup:
        * orbsvcs/orbsvcs/PortableGroup.bor:
        * orbsvcs/orbsvcs/PortableGroup.dsp:
        * orbsvcs/orbsvcs/PortableGroup_Static.dsp:

          Removed PG_Group_Guard.{h,cpp} from these Makefiles and project
          files.  Those files no longer exist.

Sun Nov  3 15:59:59 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/LB_ORT.idl:

          Updated to CORBA 3.0 conventions.  Use the CORBA 3.0
          "typeprefix" keyword instead of "#pragma prefix".

Sun Nov  3 15:59:57 2002  Ossama Othman  <ossama@uci.edu>

        The following fix some problems with the infrastructure-controlled
        membership support in TAO's PortableGroup library:

        * orbsvcs/orbsvcs/PortableGroup/PG_Factory_Set.h
          (TAO_PG_Factory_Node):

          Replaced GenericFactory object reference attribute with a
          FactoryInfo attribute.  The latter is necessary to correctly
          implement infrastructure-controlled membership

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.h
          (delete_member):

          New method used to implement the
          ObjectGroupManager::remove_member() method when the object group
          in question is under infrastructure control.  The
          ObjectGroupManager will call back on the GenericFactory.

          (check_minimum_number_members):

          New method that creates new members if the object group in
          question is under infrastructure control.  Enough new members
          will be created to satisfy the MinimumNumberMembers property of
          the object group (assuming there are enough unused
          application-supplied GenericFactorys).

          (create_member):

          New method used to create a single member via the
          infrastructure.  This method is only used internally by the
          infrastructure.  It should not be confused with the
          ObjectGroupManager::create_member() method.

          (populate_object_group):

          Removed FactoryCreationId and ObjectId parameters.  They are no
          longer used by this method.

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.cpp:

          No need to include `PG_Group_Guard.h'.  That file has been
          removed.

          (TAO_PG_GenericFactory):

          Pass the "this" pointer to the ObjectGroupManager
          implementation.  The ObjectGroupManager will potentially call
          back on the GenericFactory in the infrastructure-controlled
          membership case.

          (create_object):

          Reorganized this method so that the TAO_PG_Group_Guard class is
          no longer needed.  In particular, the FactoryCreationId is

          The object group's factory set is now bound to the factory map
          in this method instead of the populate_object_group() method.
          This allowed the latter method to be cleaned up.

          (delete_object_i):

          Updated to access FactoryInfo field in the TAO_PG_Factory_Node
          structure that replaced the old GenericFactory object reference
          field.

          (populate_object_group):

          Fixed problem where only the number of factories equal to the
          initial number of members were bound to the factory map.  All
          factories should be bound to the map, but only
          InitialNumberMembers factories should be invoked.

          Refactored member creation code to the new create_member()
          method since the same code is also used by the new
          check_minimum_number_members() method.

        * orbsvcs/orbsvcs/PortableGroup/PG_Group_Guard.h:
        * orbsvcs/orbsvcs/PortableGroup/PG_Group_Guard.cpp:

          Remove these files.  The "guard" implementation contained in
          these files is no longer necessary due to improvements in the
          TAO_PG_GenericFactory::create_object() method.

        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h:
        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
          (_tao_add_member):

          TAO-specific object group member addition method intended for
          use by TAO's GenericFactory implementation.  It merely calls the
          new protected add_member_i() method in a way that prevents that
          method from performing remote member type checking via the
          CORBA::Object::_is_a() call.  TAO's GenericFactory
          implementation already performs member type checking in the
          infrastructure-controlled case.  This is an optimization to
          prevent redundant remote type checks.

          (add_member):

          Refactored object group member addition code to the new
          protected add_member_i() method.  It calls the add_member_i()
          method in a way that allows member type checking to occur.

          (add_member_i):

          New protected underlying and non-locking implementation of the
          add_member() and _tao_add_member() methods.

          (member_count):

          New accessor method that returns the number of members currently
          in a given object group.  Used by the new
          TAO_PG_GenericFactory::check_minimum_number_members() method.

          (generic_factory):

          Mutator method used to set the cached pointer to the
          TAO_PG_GenericFactory object which the TAO_PG_ObjectGroupManager
          will call back on.

Sun Nov  3 11:04:27 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Event/EC_Gateway_UDP.h: Fixed a compile errors
          in single threaded builds.

Sun Nov  3 10:18:15 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp: Fixed a compile error
          with minimum builds. Rearranged includes to have local includes
          first.

Sun Nov 03 11:00:27 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/CosNotification.bor:
          Added missing .obj extension to targets. Thanks to Johnny
          Willemsen <jwillemsen@remedy.nl> for pointing this out.

        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Server.cpp:
          Removed calls to initalize old Notification factories. This is
          not needed now.

Sat Nov  2 19:58:51 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Bug_1269_Regression/ORB_Task.cpp:
        * tests/Bug_1269_Regression/Server_Timer.cpp:
        * tests/Bug_1269_Regression/client.cpp:
        * tests/Bug_1269_Regression/shutdown.cpp:
        * tests/Bug_1270_Regression/ORB_Task.cpp:
        * tests/Bug_1270_Regression/Server_Timer.cpp:
        * tests/Bug_1270_Regression/client.cpp:
        * tests/Bug_1270_Regression/shutdown.cpp: Fixed compile errors on
          platforms where exceptions have been disabled.

        * tests/Bug_1270_Regression/run_test.pl:
        * tests/Bug_1269_Regression/run_test.pl: Changed the cutoff times
          so that the tests would run without displaying errors on my
          box. I would love these tests to run in our daily builds. But we
          cannot run these, since they run for more than 75 mins on my two
          processor box!

Sat Nov 02 20:46:08 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/CosNotification.bor:
          Modified to add new Notification files.

Sat Nov  2 19:56:31 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Synch_Refcountable.cpp: Cosmetic fix.

Sat Nov 02 18:10:44 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Basic/AdminProperties_Test.dsp:
          Inserted missing , in constructor.

        * orbscvs/orbsvcs/Notify/Notify_Service.cpp:
          Removed ACE_DEFAULT_THREAD_PRIORITY to threadpool task. Thanks
          to Bala for suggesting a fix.

        * orbscvs/orbsvcs/Notify/Thread_Pool_Task.cpp:
          Modified call to <activate> to use ACE_DEFAULT_THREAD_PRIORITY.

        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.cpp:
          Changed code to obtain the notify service.

        * orbsvcs/Logging_Service/Notify_Logging_Service/svc.conf:
          Modified the .conf file to use the revised Notify Service
          directive.

Sat Nov  2 10:48:46 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Utils/Servant_Var.h:
        * tao/Utils/Servant_Var.inl: Fixed errors in non-native exceptions
          build.

Fri Nov  1 20:12:09 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp (connect):
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.h: Added the overloaded
          connect () method without the timeout. The implementation just
          calls the method with timeout value. It shouldnt be necessary,
          but one build in the borland compiler warns about one of the
          connect () methods hiding the other one. Hopefully, this should
          resolve the warning.

Fri Nov 01 20:09:44 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/tests/Notify/Basic/AdminProperties_Test.dsp:
        * orbsvcs/tests/Notify/Basic/ConnectDisconnect.dsp
        * orbsvcs/tests/Notify/Basic/Events_Test.dsp:
        * orbsvcs/tests/Notify/Basic/IdAssignment.dsp:
        * orbsvcs/tests/Notify/Basic/LifeCycleTest.dsp:
        * orbsvcs/tests/Notify/Basic/Simple.dsp:

          Modified project files to correct .pdb target.

        * orbsvcs/tests/Notify/Basic/ConnectDisconnect.cpp:

          In method <run_test> removed duplicate call to Sequence Consumer.

        * orbsvcs/tests/Notify/performance-tests/Throughput/Throughput.cpp:
          Changed code to obtain the notify service for colocation.

        * orbsvcs/tests/Notify/Basic/AdminProperties_Test.dsp:
          Changed the default values used when the test is run without any
          parameters.

        * orbsvcs/tests/Notify/Blocking/notify.conf:
        * orbsvcs/tests/Notify/Discarding/notify.conf:
        * orbsvcs/tests/Notify/MT_Dispatching/notify_mtdispatching.conf:
        * orbsvcs/tests/Notify/Ordering/notify.conf:
        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/notify.conf:
        * orbsvcs/tests/Notify/Sequence_Multi_Filter/notify.conf:
        * orbsvcs/tests/Notify/performance-tests/Filter/notify.conf:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/listener.conf:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/lookup.conf:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/reactive.conf:

          Modified the .conf files to use the revised Notify Service directive.

        * orbsvcs/tests/Notify/Structured_Filter/run_test.pl:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/run_test.pl:

          Added missing definition for $notify_conf

        * orbsvcs/tests/Notify/Structured_Filter/notify.conf:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/notify.conf:

          Added missing notify.conf file.

Fri Nov  1 19:12:49 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Makefile.dirs: Added tao/Utils directory to the list of
          directories. Need to add this directory for Win32 and
          Borland. Need to make sure that they are fine on one before
          propagating things to others.

Fri Nov  1 19:06:45 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Utils/Auto_Functor.cpp:
        * tao/Utils/Auto_Functor.h:
        * tao/Utils/Auto_Functor.inl:
        * tao/Utils/Implicit_Deactivator.cpp:
        * tao/Utils/Implicit_Deactivator.h:
        * tao/Utils/ORB_Destroyer.cpp:
        * tao/Utils/ORB_Destroyer.h:
        * tao/Utils/PolicyList_Destroyer.cpp:
        * tao/Utils/PolicyList_Destroyer.h:
        * tao/Utils/PolicyList_Destroyer.inl:
        * tao/Utils/RIR_Narrow.cpp:
        * tao/Utils/RIR_Narrow.h:
        * tao/Utils/Servant_Var.cpp:
        * tao/Utils/Servant_Var.h: ACE'ified code. Made them exception
          safe even if native exceptions have been turned off.

Fri Nov 01 14:38:15 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * orbsvcs/Logging_Service/Logging_Service.dsw:
        * orbsvcs/Logging_Service/Basic_Logging_Service/Basic_Logging_Service.dsw:
        * orbsvcs/Logging_Service/Basic_Logging_Service/Basic_Logging_Service.dsp:
        * orbsvcs/Logging_Service/Basic_Logging_Service/Logging_Service.dsp:
          Renamed Basic_Logging_Service.dsp to Logging_Service.dsp.  This
          may fix the unknown project error in the nightly build.

Fri Nov 01 11:09:29 2002  Pradeep Gore  <pradeep@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Method_Request_Shutdown.cpp:
          Changed <execute> method parameter to
          ACE_ENV_SINGLE_ARG_DECL_NOT_USED

        * orbsvcs/orbsvcs/Notify/Service.h:
          Corrected the comment above the <init> method.

        * orbsvcs/orbsvcs/Notify/Service.h:
          Added a #define to define the string used to load the Cos
          Notification Service.

        * orbsvcs/orbsvcs/Notify/Notify_Service.h:
        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp:
          Added class TAO_NS_CosNotification_Service_Initializer.
          This is a helper to load the Cos Notification service into the service conf. for static links.

        * orbsvcs/Notify_Service/svc.conf:
          Changed the conf file to load the Cos Notification wih the static command.

        * orbsvcs/Notify_Service/Notify_Service.cpp:
          Changed the string to obtain the Cos Notification Service via
          the Service Configurator.

Fri Nov  1 09:44:43 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/DsNotifyLogAdmin.dsp:

          Fixed a project setting I overlooked in

          Thu Oct 31 16:46:11 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

Fri Nov  1 07:25:36 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/MProfile_Connection_Timeout/README:
        * tests/MProfile_Connection_Timeout/run_test.pl: Added these files
          to the test.

        * tests/MProfile_Connection_Timeout/client.cpp:
        * tests/MProfile_Connection_Timeout/server.cpp:
        * tests/MProfile_Connection_Timeout/test.idl:
        * tests/MProfile_Connection_Timeout/test_i.cpp:
        * tests/MProfile_Connection_Timeout/test_i.h: Improved error
          checking so that any problems will be signalled as errors in our
          daily builds.

Fri Nov  1 00:44:22 2002  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Event_Map_T.h:

          Fixed compile errors in debian build.

Thu Oct 31 22:33:04 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * TAOACE.dsw: Added ProtableServer library as a dependency for
          Messaging library.

        * tests/MProfile_Connection_Timeout/client.bor:
        * tests/MProfile_Connection_Timeout/server.bor:
        * tests/MProfile_Connection_Timeout/Makefile.bor: Added the
          borland Makefiles.

        * tests/MProfile_Connection_Timeout/client.dsp:
        * tests/MProfile_Connection_Timeout/server.dsp:
        * tests/MProfile_Connection_Timeout/MProfile_Connection_Timeout.dsw:
          Workspace and project files for Win32 builds

        * tests/MProfile_Connection_Timeout/MProfile_Connection_Timeout.mpc:
          MakefileProject creator.

Thu Oct 31 17:56:55 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/MProfile_Connection_Timeout/client.cpp (run_test):
          Cosmetic fixes.

        * tests/MProfile_Connection_Timeout/Makefile: Added the Makefile
          for the test.

Thu Oct 31 17:33:55 2002  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Dispatch_Observer_T.inl:
        * orbsvcs/orbsvcs/Notify/Event_Map_Entry_T.inl:
        * orbsvcs/orbsvcs/Notify/Event_Map_T.h:
        * orbsvcs/orbsvcs/Notify/Event_Map_T.inl:
        * orbsvcs/orbsvcs/Notify/Container_T.inl:

          Added ACE_TYPENAME for type names qualified by template
          parameters.

Thu Oct 31 17:09:50 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/MProfile_Connection_Timeout:
        * tests/MProfile_Connection_Timeout/client.cpp:
        * tests/MProfile_Connection_Timeout/server.cpp:
        * tests/MProfile_Connection_Timeout/test.idl:
        * tests/MProfile_Connection_Timeout/test_i.cpp:
        * tests/MProfile_Connection_Timeout/test_i.h: New test for BUG ID
          1284. This is just a preliminary checkin. Other parts of the
          test are coming in shortly.

Thu Oct 31 16:46:11 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/CosNotification.dsp:

          Added link path to ETCL library.

        * orbsvcs/orbsvcs/DsEventLogAdmin.dsp:
        * orbsvcs/orbsvcs/DsNotifyLogAdmin.dsp:

          Added setting for release version, and fixed export settings for debug
          and release versions.

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp:

          Cosmetic changes.

        * orbsvcs/orbsvcs/Notify/Service.h:

          Added missing 'virtual' to a pure virtual function declaration.

Thu Oct 31 15:42:04 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/PortableGroup/UIPMC_Connector.cpp:
        * orbsvcs/orbsvcs/PortableGroup/UIPMC_Connector.h:
        * orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
        * orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.h:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.h: Replicated the
          changes from "Thu Oct 31 14:48:39 2002  Balachandran Natarajan
          <bala@isis-server.isis.vanderbilt.edu>" for the remaining
          protocols.

Thu Oct 31 15:40:31 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp (handle_timeout): Fixed
          a stupid typo :(

Thu Oct 31 14:48:39 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        This is a fix for BUGID 1284. Please see

        http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1284 for more
        details. This fix does the following

        - The invocation class selects a timeout from the two options that
          it has access to, viz. a user defined timeouts for connection
          establishment or the roundtrip timeout defined by the user.

        - If the user defined connection timeout policy is used and if the
          call to TAO_Transport::connect () returns an errno of ETIME, the
          invocation class tries the next endpoint in the profile.

        - If the roundtrip timeout is used, we raise a CORBA::TIMEOUT
          exception.

        The connection timeout policy if set, overrides the roundtrip
        timeout policy value. To get the semantics right, the following
        changes were performed:

        * tao/Transport_Connector.cpp:
        * tao/Transport_Connector.h: Added another connect () method with
          a timeout value. Made the connect () methods non-pure-virtual,
          such that we could share some code and maintain backward
          compatibility. Further, the pure-virtual method make_connection
          () passes a timeout value. This shouldnt break backward
          compatibility either.

        * tao/IIOP_Connector.cpp:
        * tao/IIOP_Connector.h: Added a timeout argument to the
          make_connection () method. This method gets called from
          TAO_Connector::connect () method which has a timeout. The
          implementation of the make_connection () method is now changed
          to just use the timeout value that is passed instead of
          selecting a timeout value.

        * tao/Invocation.cpp: Selects a timeout from the two possible
          alternatives and passes one of the values to the connect ()
          call. Based on the timeout value used and the return value
          handles errors as explained above.

        * tao/Strategies/DIOP_Connector.cpp:
        * tao/Strategies/DIOP_Connector.h:
        * tao/Strategies/SHMIOP_Connector.cpp:
        * tao/Strategies/SHMIOP_Connector.h:
        * tao/Strategies/UIOP_Connector.cpp:
        * tao/Strategies/UIOP_Connector.h: Changes to the protocols within
          TAO. Changes to other protocols will follow.

Thu Oct 31 13:59:50 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/GIOP_Message_Base.cpp: Fixed a typo in the comments.

Thu Oct 31 13:08:23 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp (handle_timeout): Fixed
          compile errors in single threaded builds.

Thu Oct 31 12:07:51 2002  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.cpp:

          Fixed debian build compile warnings.

Thu Oct 31 11:58:24 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/EC_MT_Mcast/MCast.cpp: Fixed compile error in
          builds where exceptions have been turned off.

Thu Oct 31 10:51:12 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * docs/Smart_Proxies.html: Fixed a few typos.

Thu Oct 31 10:52:50 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/IFRService/Container_i.cpp:
        * orbsvcs/orbsvcs/IFRService/InterfaceDef_i.cpp:

          Added checks for successful opening of an ACE_Configuration
          section so that subsequent iteration of values or subsections
          (which will fail) can be skipped. Thanks to Nick Cross
          <nick.cross@prismtechnologies.com> for reporting the bug.

Thu Oct 31 10:50:16 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tao/ValueBase.h:
        * tao/ValueBase.i:

          Restored const version of ValueBase_var operator that casts to
          ValueBase*.

Thu Oct 31 00:46:22 2002  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * orbsvcs/tests/Notify/Makefile:

          Removed the old Throughput test.

Wed Oct 30 19:06:59 2002  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * orbsvcs/orbsvcs/Notify/Event_Manager.cpp:
        * orbsvcs/orbsvcs/Notify/Event.cpp:
        * orbsvcs/orbsvcs/Notify/Types.cpp:
        * orbsvcs/orbsvcs/Notify/Factory.cpp:

          Added template instantiations to fix link errors.


Wed Oct 30 19:38:20 UTC 2002  Craig Rodrigues  <crodrigu@bbn.com>

        * orbsvcs/orbsvcs/AV/UDP.cpp (TAO_AV_UDP_Object::handle_input):
          Improve debugging message.

Wed Oct 30 12:49:32 2002  Irfan Pyarali  <irfan@oomworks.com>

        * tao/PortableServer/PortableServer_ORBInitializer.cpp
          (register_poa_current): Moved registration of POA Current from
          post_init() to pre_init().  Thanks to Ossama for pointing this
          out.

Wed Oct 30 09:01:12 2002  Ossama Othman  <ossama@uci.edu>

        * tao/PortableServer/PortableServer_ORBInitializer.cpp
          (register_poa_current):

          Removed obsolete/incorrect comment regarding the lack of
          reference counting in the TAO_ORBInitInfo object.
          TAO_ORBInitInfo is now properly reference counted.

Wed Oct 30 11:38:36 2002  Irfan Pyarali  <irfan@oomworks.com>

        * Following are fixes for bug 1344.  Thanks to Ossama for pointing
          this out.

        * tao/PortableServer/Object_Adapter.cpp (create): Moved the
          registration of the POA Current to the
          PortableServer_ORBInitializer.  If POA Current is resolved
          before RootPOA, this code executes does not execute in time.

        * tao/PortableServer/PortableServer_ORBInitializer.cpp
          (register_poa_current): POA Current is now registered in
          TAO_PortableServer_ORBInitializer::post_init().

        * tao/ORB_Core.i (poa_current): Simply return <poa_current>.  It
          should have been correctly initialized.

        * tests/POA/Current: Added new test to ensure that accessing the
          POA current before the RootPOA does not cause any problems.

          The following files were added:

          - tests/POA/Current/Current.cpp
          - tests/POA/Current/Current.dsp
          - tests/POA/Current/Current.dsw
          - tests/POA/Current/Current.mpc
          - tests/POA/Current/Makefile
          - tests/POA/Current/makefile.bor
          - tests/POA/Current/run_test.pl

          The following files were modified:

          - $ACE_ROOT/bin/auto_run_tests.lst
          - tests/TAO_Tests.dsw
          - tests/POA/Makefile
          - tests/POA/Makefile.bor
          - tests/POA/README

Wed Oct 30 13:15:01 CET 2002  Oliver Kellogg  <oliver.kellogg@sysde.eads.net>

        * orbsvcs/tests/EC_MT_Mcast/MCast.cpp (run_orb_within_thread):

          Added missing ACE_DECLARE_NEW_CORBA_ENV.

Tue Oct 29 17:50:59 2002  Ossama Othman  <ossama@uci.edu>

        * tao/TAO_Singleton_Manager.cpp (fini, _set_unexpected):

          Call set_unexpected() in the global namespace when using
          MSVC++.  MSVC++ doesn't place set_unexpected() in the "std"
          namespace.  Thanks to Irfan for pointing the build problem.

Tue Oct 29 19:20:29 2002  Yamuna Krishnamurthy  <yamuna@cs.wustl.edu>

        * orbsvcs/orbsvcs/Notify/Service.h:

          Make the init (int,char**) method abstract.

Tue Oct 29 11:37:37 2002  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * orbsvcs/orbsvcs/Makefile.CosNotification:

          Generated dependencies. Added the cleanup of the tao_idl
          generated files for Notify/Event_Forwarder.idl.

Tue Oct 29 09:34:59 CET 2002  Oliver Kellogg <oliver.kellogg@sysde.eads.net>

        * orbsvcs/tests/EC_MT_Mcast/MCast.cpp: Use ACE_OS::sleep() instead
          of sleep(). Thanks to Johnny.

Tue Oct 29 00:33:27 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/Makefile.CosNotification (realclean):

          Fixed typo where the command to be executed for this target was
          placed in the target's dependency list.  Addresses several build
          errors.

Tue Oct 29 07:38:44 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/tests/EC_MT_Mcast/Makefile.bor:
          Added new BCB makefile for this test.

Mon Oct 28 22:11:12 2002  Ossama Othman  <ossama@uci.edu>

        * tao/TAO_Singleton_Manager.cpp:

          Do not pull the std::unexpected() function into the global
          namespace through a "using" clause to avoid a conflict with some
          STL implementations (e.g. STLPort) that already do that.

          (init, _set_unexpected):

          If the compiler's C++ library defines the "std" namespace,
          explicitly call std::set_unexpected.  This fix was motivated by
          Kobi Cohen Arazi <kobi@mivzak.com>.

Mon Oct 28 19:18:25 2002  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * orbsvcs/orbsvcs/Makefile.CosNotification:

        * orbsvcs/orbsvcs/Notify/Service.h:
        * orbsvcs/orbsvcs/Notify/Pending_Worker_T.h:
        * orbsvcs/orbsvcs/Notify/Pending_Worker_T.cpp:
        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.h:
        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:

          Added init methods with base class signatures to avoid compile
          warnings

        * orbsvcs/orbsvcs/Notify/EventChannelFactory.h:
        * orbsvcs/orbsvcs/Notify/Admin.h:
        * orbsvcs/orbsvcs/Notify/ConsumerAdmin.cpp:

          Made the TAO_NS_Object_Id_Seq definition public so it can be
          accessed from other classes.

        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:

          Put the pacing_interval_.value () into an ACE_Time_Value before
          checking with ACE_Time_Value::zero.

        * orbsvcs/orbsvcs/Notify/Factory.cpp:

          Removed duplicate template instantitaion of TAO_NS_EventType.

Mon Oct 28 17:19:58 2002  Irfan Pyarali  <irfan@oomworks.com>

        * tests/POA/MT_Servant_Locator/MT_Servant_Locator.cpp: Fixed
          ACE_ENV warnings.

Mon Oct 28 16:55:11 2002  Irfan Pyarali  <irfan@oomworks.com>

        * tests/POA/MT_Servant_Locator/Makefile: Fixed and updated
          dependencies.

Mon Oct 28 16:48:23 2002  Irfan Pyarali  <irfan@oomworks.com>

        * tests/POA/MT_Servant_Locator/MT_Servant_Locator.cpp: <Task::event_>
          was being used in both preinvoke() and postinvoke().  This led
          to a deadlock if the second signal() was missed since the event
          was already signaled. Solution was to give both preinvoke() and
          postinvoke() their own event variables.

Mon Oct 28 14:20:32 2002  Irfan Pyarali  <irfan@oomworks.com>

        * tao/PortableServer/POA.cpp (locate_servant_i): We no longer
          need to use the non-servant upcall idiom for calling
          ServantLocator::preinvoke() since we are now let of the lock
          altogether before calling the servant locator.
          ServantLocator::postinvoke() is also handled in a similar
          manner.

          Note that it is possible for some other thread to reset the
          servant locator once the lock is released.  However, this
          possiblility also exists for postinvoke() which is also called
          outside the lock.

          Thanks to Ashok Sadasivan <ashok_sadasivan@hotmail.com> for
          pointing this out.

        * tao/PortableServer/Object_Adapter.cpp (prepare_for_upcall):
          Check the state before releasing the lock since it may already
          have been released for Servant Locators.

        * tao/PortableServer/Object_Adapter: Moved State enumeration from
          protected to public section.  Also added accessor and set method
          of the state.

        * tests/POA/MT_Servant_Locator: Added new test to ensure that the
          POA allows multiple simultaneous calls to Servant Locators.

          The following files were added:

          - tests/POA/MT_Servant_Locator/MT_Servant_Locator.cpp
          - tests/POA/MT_Servant_Locator/MT_Servant_Locator.dsp
          - tests/POA/MT_Servant_Locator/MT_Servant_Locator.dsw
          - tests/POA/MT_Servant_Locator/MT_Servant_Locator.mpc
          - tests/POA/MT_Servant_Locator/Makefile
          - tests/POA/MT_Servant_Locator/makefile.bor
          - tests/POA/MT_Servant_Locator/run_test.pl
          - tests/POA/MT_Servant_Locator/test.idl

          The following files were modified:

          - $ACE_ROOT/bin/auto_run_tests.lst
          - tests/TAO_Tests.dsw
          - tests/POA/Makefile
          - tests/POA/Makefile.bor
          - tests/POA/README

Mon Oct 28 14:20:32 2002  Irfan Pyarali  <irfan@oomworks.com>

        * Following are fixes for bug 1317.  Thanks to Ossama for pointing
          this out.

        * tao/TAO_Internal.cpp (open_services_i): If available, allow the
          Adapter Factory to setup by calling init().  This is similar to
          what we do for RT-CORBA.

        * tao/ORB_Core.cpp (poa_factory_name): Added accessor.

        * tao/RTPortableServer/RT_Object_Adapter_Factory.h: Changed
          inheritance from TAO_Adapter_Factory to
          TAO_Object_Adapter_Factory to get the base class' init()
          functionality.

Mon Oct 28 18:38:35 CET 2002  Oliver Kellogg  <oliver.kellogg@sysde.eads.net>

        * orbsvcs/tests/Makefile:
        * orbsvcs/tests/Makefile.am:
        * orbsvcs/tests/Makefile.bor:
        * orbsvcs/tests/EC_MT_Mcast/AddrServer.cpp:
        * orbsvcs/tests/EC_MT_Mcast/AddrServer.h:
        * orbsvcs/tests/EC_MT_Mcast/Consumer.cpp:
        * orbsvcs/tests/EC_MT_Mcast/Consumer.h:
        * orbsvcs/tests/EC_MT_Mcast/MCast.cpp:
        * orbsvcs/tests/EC_MT_Mcast/MCast.dsp:
        * orbsvcs/tests/EC_MT_Mcast/MCast.dsw:
        * orbsvcs/tests/EC_MT_Mcast/Makefile:
        * orbsvcs/tests/EC_MT_Mcast/README:
        * orbsvcs/tests/EC_MT_Mcast/Supplier.cpp:
        * orbsvcs/tests/EC_MT_Mcast/Supplier.h:
        * orbsvcs/tests/EC_MT_Mcast/svc.conf:
        * orbsvcs/tests/EC_MT_Mcast/run_test.pl:
          Added a regression test for the multithreading problem in class
          TAO_ECG_UDP_Receiver.

Mon Oct 28 18:21:18 CET 2002  Oliver Kellogg  <oliver.kellogg@sysde.eads.net>

        * orbsvcs/orbsvcs/Event/EC_Gateway_UDP.{h,cpp}:
          TAO_ECG_UDP_Receiver member request_map_ may be accessed
          concurrently. Added a mutex, request_map_protector_.
          Thanks to Andreas Koehler <andreas.koehler@sysde.eads.net>
          for tracking down the bug and providing the fix.

Sun Oct 27 09:04:33 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/Notify/Event_Forwarder.idl:
          Fixed fuzz build errors.

Sun Oct 27 09:04:33 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Property.h:
        * orbsvcs/orbsvcs/Notify/POA_Helper.h:
        * orbsvcs/orbsvcs/Notify/Constraint_Visitors.h:
        * orbsvcs/orbsvcs/Notify/Constraint_Interpreter.h:
          Fixed fuzz build errors.

Sun Oct 27 01:04:09 2002  Pradeep Gore  <pradeep@oomworks.com>

        Updated framework for TAO's Notification Service:
        - Fixes bugs related to Notification Object Lifecycle,
          Thanks to David R Robison <drrobison@openroadsconsulting.com>,
          Thomas Natterer <Thomas.Natterer@de.thalesatm.com>,
          Wilbur Lang <wilbur@szonline.net> and
          Jian Chen <jchen@huawei.com> for reporting various bugs resulting
          due to this.

        - Fixes bugs related to incorrect ID assignments,
          Thanks to Rick Marlborough <RMarlborough@LIO.AACISD.com>,
          David-A O-Brien <david-a.o-brien@db.com> and
          Shelton Tang <stang@altigen.com>  for reporting various bugs resulting
          due to this.

        - Fixes implementation of SequenceProxys and Event Batch.
          Thanks to Frederic Langlet <Frederic.Langlet@alcatel.com> for
          reporting this problem.

        - Contains base framework for adding RT-CORBA extensions.

        Added Files:
        * orbsvcs/orbsvcs/NotifyExt.idl:
          Defines extensions to The Notification Service to support
          threadpools. The threadpool parameters are passed to the set_qos
          method as QoS name-value pair. For the Cos Notify, a threadpool
          is created as an ACE_Task object.

        * orbsvcs/orbsvcs/Notify_Forwarder.idl:
          An internal interface to context switch the event propagation
          from the proxyconsumer to proxysupplier. This is achieved by the
          caller thread invoking the <forward> method of this
          interface. Colocation ensures that this call is invoked in the
          context of the thread associated with the target object.
          The Event_Forwarder extends the
          CosNotifyChannelAdmin::StructuredProxyPushSupplier interface.

        * orbsvcs/orbsvcs/Notify/Admin.cpp :
        * orbsvcs/orbsvcs/Notify/Admin.h :
        * orbsvcs/orbsvcs/Notify/Admin.inl:
          Base class implementation for the Notify Admin Interfaces.

        * orbsvcs/orbsvcs/Notify/AdminProperties.cpp:
        * orbsvcs/orbsvcs/Notify/AdminProperties.h :
        * orbsvcs/orbsvcs/Notify/AdminProperties.inl:
          Maintains the AdminProperties that can be applied per
          eventchannel.

        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.h:
        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.inl :
          Buffering Strategy for queue and discrading policies.

        * orbsvcs/orbsvcs/Notify/Builder.cpp:
        * orbsvcs/orbsvcs/Notify/Builder.h:
        * orbsvcs/orbsvcs/Notify/Builder.inl :
          Builder for the EventChannelFactory, EventChannel, Admin and
          proxy objects.

        * orbsvcs/orbsvcs/Notify/Constraint_Interpreter.cpp :
        * orbsvcs/orbsvcs/Notify/Constraint_Interpreter.h:
        * orbsvcs/orbsvcs/Notify/Constraint_Visitors.cpp :
        * orbsvcs/orbsvcs/Notify/Constraint_Visitors.h:
          Implementation of interfaces to the ETCL Filtering code.

        * orbsvcs/orbsvcs/Notify/Consumer.cpp :
        * orbsvcs/orbsvcs/Notify/Consumer.h:
        * orbsvcs/orbsvcs/Notify/Consumer.inl:
          Wrapper for the Consumer that connects to a proxy object.

        * orbsvcs/orbsvcs/Notify/ConsumerAdmin.cpp :
        * orbsvcs/orbsvcs/Notify/ConsumerAdmin.h:
        * orbsvcs/orbsvcs/Notify/ConsumerAdmin.inl :
          Consumer Admin Implementation.

        * orbsvcs/orbsvcs/Notify/Container.cpp:
        * orbsvcs/orbsvcs/Notify/Container.h:
        * orbsvcs/orbsvcs/Notify/Container.inl :
        * orbsvcs/orbsvcs/Notify/Container_T.cpp:
        * orbsvcs/orbsvcs/Notify/Container_T.h :
        * orbsvcs/orbsvcs/Notify/Container_T.inl:
          Base class for the Factory-Container objects in Notify
          viz. Factory, Channel and Admin objects. This class manages the
          lifetimes of the POA's for activating the EC objects as well as
          the POA for activating the Proxys.

        * orbsvcs/orbsvcs/Notify/Destroy_Callback.h :
          Callback for each Notify Object that supports the <release>
          method which is invoked when the objects reference count
          falls to 0.

        * orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp :
        * orbsvcs/orbsvcs/Notify/ETCL_Filter.h:
        * orbsvcs/orbsvcs/Notify/ETCL_Filter.inl :
          Implements to CosNotifyFilter interface.

        * orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.cpp:
        * orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.h :
        * orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.inl:
          Implements to CosNotifyFilterFactory interface.

        * orbsvcs/orbsvcs/Notify/Event.cpp:
        * orbsvcs/orbsvcs/Notify/Event.h :
        * orbsvcs/orbsvcs/Notify/Event.inl:
          Abstract base class for all types of Notify Events.

        * orbsvcs/orbsvcs/Notify/EventChannel.cpp:
        * orbsvcs/orbsvcs/Notify/EventChannel.h :
        * orbsvcs/orbsvcs/Notify/EventChannel.inl:
          EventChannel interface implementation.

        * orbsvcs/orbsvcs/Notify/EventChannelFactory.cpp :
        * orbsvcs/orbsvcs/Notify/EventChannelFactory.h:
        * orbsvcs/orbsvcs/Notify/EventChannelFactory.inl :
          EventChannel Factory Interface implementation.

        * orbsvcs/orbsvcs/Notify/EventType.cpp:
        * orbsvcs/orbsvcs/Notify/EventType.h:
        * orbsvcs/orbsvcs/Notify/EventType.inl:
          Abstraction for the Notify EventType.

        * orbsvcs/orbsvcs/Notify/EventTypeSeq.cpp:
        * orbsvcs/orbsvcs/Notify/EventTypeSeq.h :
        * orbsvcs/orbsvcs/Notify/EventTypeSeq.inl:
          Helper class to manage a sequence of EventTypes.

        * orbsvcs/orbsvcs/Notify/Event_Manager.cpp :
        * orbsvcs/orbsvcs/Notify/Event_Manager.h:
        * orbsvcs/orbsvcs/Notify/Event_Manager.inl:
          An event manager that contains the supplier and consumer event
          maps.Consumers and Supppliers connect to the EventManager and
          inform it of any subscription/offer changes.

        * orbsvcs/orbsvcs/Notify/Event_Map_Entry_T.cpp:
        * orbsvcs/orbsvcs/Notify/Event_Map_Entry_T.h :
        * orbsvcs/orbsvcs/Notify/Event_Map_Entry_T.inl:
          An event map entry is maintained per eventtype.
          The entry contains a collection of proxys that are assigned
          to the same eventtype.

        * orbsvcs/orbsvcs/Notify/Event_Map_T.cpp :
        * orbsvcs/orbsvcs/Notify/Event_Map_T.h:
        * orbsvcs/orbsvcs/Notify/Event_Map_T.inl:
          Template definition of the lookup data structure that maps
          EventTypes to recipient lists.

        * orbsvcs/orbsvcs/Notify/Factory.cpp :
        * orbsvcs/orbsvcs/Notify/Factory.h:
        * orbsvcs/orbsvcs/Notify/Factory.inl:
          An default factory that creates Notify objects.

        * orbsvcs/orbsvcs/Notify/FilterAdmin.cpp :
        * orbsvcs/orbsvcs/Notify/FilterAdmin.h:
          Implementation of the filter admin interface.

        * orbsvcs/orbsvcs/Notify/FilterFactory.h :
          Interface for FilterFactories. This allows us to plug
          different filterfactories if required.

        * orbsvcs/orbsvcs/Notify/ID_Factory.cpp:
        * orbsvcs/orbsvcs/Notify/ID_Factory.h :
        * orbsvcs/orbsvcs/Notify/ID_Factory.inl:
          A Factory class for generating the ID's associated with the
          Notify Objects.Note that each TAO_NS_POA used one of these.
          Note that the previous implementation of Notification created
          unique id's for *each* category of Objects. so
          e.g. ConsumerAdmins went from 0,1,2... and ProxySuppliers went
          from 0,1,2... Now ConsumerAdmins and ProxySuppliers would share
          Id's 0,1,2... 3,4,5. The spec. requires Ids to be unique, It
          does not require each category to be unique. moreover
          CORBA::ULongs are wide enough so that we don't get into any
          recycling of Ids. This simplification fixes many nagging bugs in
          Notification.

        * orbsvcs/orbsvcs/Notify/Method_Request.cpp :
        * orbsvcs/orbsvcs/Notify/Method_Request.h:
        * orbsvcs/orbsvcs/Notify/Method_Request.inl :
          Base class for command objects in the activation queue.

        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp :
        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.h :
        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.inl :
          Method request for Event dispatching. Contains the event to
          be dispatched and also evaluates the proxy supplier and
          consumer admin filters.

        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch_No_Filtering.cpp :
        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch_No_Filtering.h :
        * orbsvcs/orbsvcs/Notify/Method_Request_Dispatch_No_Filtering.inl :
          Dispatch method request to push the event to the target
          consumer without any filtering. This is used when sending
          queued events (e.g. via suspend) that don't have to pass a
          filter because they have already been through it.

        * orbsvcs/orbsvcs/Notify/Method_Request_Lookup.cpp:
        * orbsvcs/orbsvcs/Notify/Method_Request_Lookup.h :
        * orbsvcs/orbsvcs/Notify/Method_Request_Lookup.inl :
          Command object to lookup the consumer list in the Event_Map.
          Also evaluates the ProxyConsumer and ConsumerAdmin filters.

        * orbsvcs/orbsvcs/Notify/Method_Request_Shutdown.cpp :
        * orbsvcs/orbsvcs/Notify/Method_Request_Shutdown.h :
        * orbsvcs/orbsvcs/Notify/Method_Request_Shutdown.inl:
          Command Object to signal shutdown of the activation queue.

        * orbsvcs/orbsvcs/Notify/Notify_Service.cpp :
        * orbsvcs/orbsvcs/Notify/Notify_Service.h:
        * orbsvcs/orbsvcs/Notify/Notify_Service.inl :
          Service Object that allows clients to create and manage Cos Notify
          Factory.

        * orbsvcs/orbsvcs/Notify/Object.cpp:
        * orbsvcs/orbsvcs/Notify/Object.h:
        * orbsvcs/orbsvcs/Notify/Object.inl :
        * orbsvcs/orbsvcs/Notify/Object_T.cpp:
        * orbsvcs/orbsvcs/Notify/Object_T.h:
        * orbsvcs/orbsvcs/Notify/Object_T.inl :
          Defines the base Notifiy Object that is used to implement the
          basic behavior of Notify Classes.

        * orbsvcs/orbsvcs/Notify/POA_Helper.cpp:
        * orbsvcs/orbsvcs/Notify/POA_Helper.h :
        * orbsvcs/orbsvcs/Notify/POA_Helper.inl:
          A helper class that manages the lifetime of POA objects.

        * orbsvcs/orbsvcs/Notify/Peer.cpp:
        * orbsvcs/orbsvcs/Notify/Peer.h :
        * orbsvcs/orbsvcs/Notify/Peer.inl:
          Base class for Consuemrs and Suppliers that connect to the
          proxys.

        * orbsvcs/orbsvcs/Notify/Properties.cpp:
        * orbsvcs/orbsvcs/Notify/Properties.h :
        * orbsvcs/orbsvcs/Notify/Properties.inl:
          Holds the properties accessible globally.

        * orbsvcs/orbsvcs/Notify/Property.h:
          Forward declaration of the QoS/Admin properties supported by
          Notify.

        * orbsvcs/orbsvcs/Notify/PropertySeq.cpp:
        * orbsvcs/orbsvcs/Notify/PropertySeq.h:
        * orbsvcs/orbsvcs/Notify/PropertySeq.inl:
          A helper class to manage Property Sequences.

        * orbsvcs/orbsvcs/Notify/Property_Boolean.cpp:
        * orbsvcs/orbsvcs/Notify/Property_Boolean.h :
        * orbsvcs/orbsvcs/Notify/Property_Boolean.inl:
          Implementation of a oolean property type.

        * orbsvcs/orbsvcs/Notify/Property_T.cpp :
        * orbsvcs/orbsvcs/Notify/Property_T.h:
        * orbsvcs/orbsvcs/Notify/Property_T.inl:
          Template type for encapsulating Notify Property types.

        * orbsvcs/orbsvcs/Notify/Proxy.cpp :
        * orbsvcs/orbsvcs/Notify/Proxy.h:
        * orbsvcs/orbsvcs/Notify/Proxy.inl:
          Base Proxy type.

        * orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/ProxyConsumer.h:
        * orbsvcs/orbsvcs/Notify/ProxyConsumer.inl:
          Base class for all ProxyConsumers.

        * orbsvcs/orbsvcs/Notify/ProxyConsumer_T.cpp:
        * orbsvcs/orbsvcs/Notify/ProxyConsumer_T.h :
        * orbsvcs/orbsvcs/Notify/ProxyConsumer_T.inl:
          Template class that implements ProxyConsumer interface methods.

        * orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
        * orbsvcs/orbsvcs/Notify/ProxySupplier.h:
        * orbsvcs/orbsvcs/Notify/ProxySupplier.inl:
          Base class for all ProxySuppliers.

        * orbsvcs/orbsvcs/Notify/ProxySupplier_T.cpp:
        * orbsvcs/orbsvcs/Notify/ProxySupplier_T.h :
        * orbsvcs/orbsvcs/Notify/ProxySupplier_T.inl:
          Template class that implements ProxySupplier interface methods.

        * orbsvcs/orbsvcs/Notify/Proxy_T.cpp
        * orbsvcs/orbsvcs/Notify/Proxy_T.h :
        * orbsvcs/orbsvcs/Notify/Proxy_T.inl:
          Template class that implements Proxy interface
          methods.

        * orbsvcs/orbsvcs/Notify/QoSProperties.cpp:
        * orbsvcs/orbsvcs/Notify/QoSProperties.h:
        * orbsvcs/orbsvcs/Notify/QoSProperties.inl:
          Container of the common QoS properties supported by the
          Notification.

        * orbsvcs/orbsvcs/Notify/Reactive_Task.cpp:
        * orbsvcs/orbsvcs/Notify/Reactive_Task.h:
        * orbsvcs/orbsvcs/Notify/Reactive_Task.inl:
          A worker task that executes the command object in the context
          of the caller thread.

        * orbsvcs/orbsvcs/Notify/Refcountable.cpp:
        * orbsvcs/orbsvcs/Notify/Refcountable.h:
        * orbsvcs/orbsvcs/Notify/Refcountable.inl:
          A base class for Notify Objects that wish to be refcounted.
          If a destroy_callback is supplied, it is invoked when the
          ref. count falls to 0.

        * orbsvcs/orbsvcs/Notify/Service.h :
          Interface that defines a ACE_Service_Object for clients to
          create Notify Factories. Using this clients can obtain various
          types of the Notify Factory implementations. (CosNotify and
          Real-Time Notify).

        * orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.cpp:
        * orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.h:
        * orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.inl:
          Helper class for propagating Admin level subscription changes
          to proxys.

        * orbsvcs/orbsvcs/Notify/Supplier.cpp:
        * orbsvcs/orbsvcs/Notify/Supplier.h:
        * orbsvcs/orbsvcs/Notify/Supplier.inl:
          A base wrapper class for encapsulation the remote supplier
          that has connect to a proxy.

        * orbsvcs/orbsvcs/Notify/SupplierAdmin.cpp:
        * orbsvcs/orbsvcs/Notify/SupplierAdmin.h:
        * orbsvcs/orbsvcs/Notify/SupplierAdmin.inl:
          Supplier Admin implementation.

        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.h:
        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.inl:
          A worker task that creates a thread pool and executes the
          enqueued Method_Request command objects in the worker thread
          context.

        * orbsvcs/orbsvcs/Notify/Types.cpp
        * orbsvcs/orbsvcs/Notify/Types.h:
        * orbsvcs/orbsvcs/Notify/Types.inl:
          Class that defines the commonly used Types in Notification.

        * orbsvcs/orbsvcs/Notify/Worker_Task.cpp:
        * orbsvcs/orbsvcs/Notify/Worker_Task.h:
        * orbsvcs/orbsvcs/Notify/Worker_Task.inl:
        Base abstract worker task that is used by Notification objects
        to execute a command object.

        * orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp:
        * orbsvcs/orbsvcs/Notify/Any/AnyEvent.h:
        * orbsvcs/orbsvcs/Notify/Any/AnyEvent.inl:
        Abstraction of the Any event received by a CosEvent Channel
        style proxy consumer.

        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.inl:
        Implementation of the CosEC ProxyPushConsumer

        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.cpp :
        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.h :
        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.inl :
        Implementation of the CosEC ProxyPushSupplier.

        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.inl:
        Implementation of the Notification ProxyPushConsumer.

        * orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.inl:
        Implementation of the Notification ProxyPushSupplier.

        * orbsvcs/orbsvcs/Notify/Any/PushConsumer.cpp :
        * orbsvcs/orbsvcs/Notify/Any/PushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/PushConsumer.inl :
        Impkementation of the PushConsumer that connects to the Any
        style Proxy Supplier.

        * orbsvcs/orbsvcs/Notify/Any/PushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Any/PushSupplier.h :
        * orbsvcs/orbsvcs/Notify/Any/PushSupplier.inl:
        Implementation of the PushSupplier that connects to the Any
        style Proxy Consumer.

        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.h:
        * orbsvcs/orbsvcs/Notify/Sequence/EventBatch.inl:
        Helper class that manages the Sequence proxy's EventBatch.

        * orbsvcs/orbsvcs/Notify/Sequence/Method_Request_Dispatch_EventBatch.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/Method_Request_Dispatch_EventBatch.h:
        * orbsvcs/orbsvcs/Notify/Sequence/Method_Request_Dispatch_EventBatch.inl:
        A command object that stores an event batch destined for
        dispatch to a sequence consumer.

        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.inl:
        Implementation of the Notify SequenceProxyPushConsumer interface.

        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.inl:
        Implementation of the Notify SequenceProxyPushSupplier
        interface.

        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.inl:
        Wrapper to manage the SequenceConsumer that connects to the
        Sequence Proxy.

        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Sequence/SequencePushSupplier.inl:
        Wrapper to manage the SequenceSupplier that connects to the
        Sequence Proxy.

        * orbsvcs/orbsvcs/Notify/Structured/StructuredEvent.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredEvent.h:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredEvent.inl:
        Notify's StructuredEvent's internal representation in the
        Notification.

        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.inl:
        Implementation of the Notification StructuredProxyPushConsumer.

        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.inl:
        Implementation of the Notification StructuredProxyPushSupplier.

        * orbsvcs/orbsvcs/Notify/Structured/StructuredPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredPushConsumer.inl:
        Wrapper to manage the StructuredConsumer that connects to the
        Structured Supplier Proxy.

        * orbsvcs/orbsvcs/Notify/Structured/StructuredPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredPushSupplier.inl:
          Wrapper to manage the StructuredSupplier that connects to the
          Structured Consumer Proxy.

        * orbsvcs/Notify_Service/Notify_Server.cpp:
        * orbsvcs/Notify_Service/Notify_Service.cpp:
        * orbsvcs/Notify_Service/Notify_Service.h:
        * orbsvcs/Notify_Service/svc.conf:

          Changes to obtain the Notification Factory via Service Object.

        * orbsvcs/orbsvcs/CosNotification.dsp:
        * orbsvcs/orbsvcs/Makefile.CosNotification:

          New source and idl files added.

Sat Oct 26 14:44:33 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/ORT/server.bor:
          Fixed this BCB makefile.

Sat Oct 26 14:03:59 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/AV/pluggable_av_log:
          Removed this file from the repo.

Sat Oct 26 13:59:33 UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/AV/media_timer.cpp:
          Fixed incorrect include because of file rename.

Sat Oct 26 12:28:12  UTC 2002  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/AV/media-timer.{h,cpp}:
        * orbsvcs/orbsvcs/AV/media_timer.{h,cpp}:
          Renamed media-timer to media_timer because the BCB5 Static linker
          has problems with the - in the filename.

        * orbsvcs/orbsvcs/AV/RTCP.cpp:
        * orbsvcs/orbsvcs/AV.bor:
        * orbsvcs/orbsvcs/AV.dsp:
        * orbsvcs/orbsvcs/AV_Static.dsp:
        * orbsvcs/orbsvcs/Makefile.av:
          Updated these files because of the file rename

        * tests/ORT/ServerRequestInterceptor.h:
          Fixed fuzz error

Fri Oct 25 21:48:30 2002  Ossama Othman  <ossama@uci.edu>

        * tao/PortableServer/POA.cpp (adapter_name_i):

          Fixed problem where the RootPOA's adapter name was not included
          in the returned adapter name sequence.  CORBA 3.0 requires it to
          be included.

          Fixed incorrect nil POA reference check.  Use
          "CORBA::is_nil(poa)" instead of
          "poa == PortableServer::POA::_nil()".

          Slightly optimized and cleaned up this method.

        * tests/ORT/ObjectReferenceFactory.idl:
        * tests/ORT/ObjectReferenceFactory.h:
        * tests/ORT/ObjectReferenceFactory.cpp:

          New PortableInterceptor::ObjectReferenceFactory implementation
          designed to excerise the
          PortableInterceptor::IORInfo::current_factory() attributed, the
          POA's ObjectReferenceFactory support.

        * tests/ORT/ServerORBInitializer.h:
        * tests/ORT/ServerORBInitializer.cpp:

          New server side ORBInitializer that registers the new server
          request interceptor and the existing IOR interceptor.

        * tests/ORT/ServerRequestInterceptor.h:
        * tests/ORT/ServerRequestInterceptor.cpp:

          New server request interceptor thats tests some of the
          ORT-specific methods in the ServerRequestInfo object passed to
          the server request interception points.

        * tests/ORT/ORT_test_IORInterceptor.cpp (components_established):

          Swap out the current ObjectReferenceFactory with the customized
          ObjectReferenceFactory implemented by this test.  The goal is
          test the PortableInterceptor::IORInfo::current_factory attribute
          internals, in addition to the POA's
          PortableInterceptor::ObjectReferenceFactory support.

        * tests/ORT/server.cpp (main):

          Use a child POA when activating the servant and obtaining an
          object reference for it.  This forces a POA hierarchy to be
          reflected in the AdapterName sequence returned from
          PortableInterceptor::ServerRequestInfo::adapter_name() instead
          of a single (root) POA.

          Removed TAO-specific calls on the TAO_ORB_Core.  The
          equivalent portable calls in the
          PortableInterceptor::ServerRequestInfo object will be invoked
          via the new ServerRequestInterceptor instead.

        * tests/ORT/ORT_test_IORInterceptor_ORBInitializer.h:
        * tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp:

          Removed this ORBInitializer in favor of the new one described
          above.

        * tests/ORT/ORT_test_IORInterceptor.h:
        * tests/ORT/ORT_test.idl:
        * tests/ORT/ORT_test_i.h:
        * tests/ORT/ORT_test_i.cpp:

          Cosmetic updates.

        * tests/ORT/Makefile:
        * tests/ORT/server.bor:
        * tests/ORT/server.dsp:

          Added new files and removed deprecated ones.

Fri Oct 25 09:56:51 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tao/ValueBase.h:
        * tao/ValueBase.i:
        * TAO_IDL/be/be_valuetype.cpp:

          Restored the const cast to pointer operator for valuetype _var
          classes.

Fri Oct 25 09:49:31 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * examples/OBV/Typed_Events/Event_Types_impl.cpp:

          Added missing .in() in an assignment of _var class contents to a
          pointer,  and 'this->' in several places where a member variable
          is referenced.

Thu Oct 24 19:48:21 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * Re-did this after the great reversion "Wed Oct 23 16:32:36 2002
          Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>"

Thu Oct 24 19:44:38 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/DsEventLogAdmin.dsp:
        * orbsvcs/orbsvcs/DsNotifyLogAdmin.dsp: Fixed Release
          configurations.  Include paths, library paths, and library lists
          have been added.

Thu Oct 24 19:32:08 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * Reverted the changes made in the following entries:
        Thu Oct 24 10:59:20 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>
        Thu Oct 24 10:39:10 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>
        Thu Oct 24 09:29:59 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>
        Thu Oct 24 000:33:17 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>
        Wed Oct 23 23:51:51 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>
        Wed Oct 23 23:37:32 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>
        Wed Oct 23 22:48:09 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>
        Wed Oct 23 16:32:36 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>
        Wed Oct 23 13:38:59 2002  Nanbor Wang  <nanbor@cs.wustl.edu>
        Wed Oct 23 10:26:59 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>.
          Basically the changes made were not right. Hence the need for
          reversion to yesterday mornings status.

Thu Oct 24 10:59:20 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * examples/Load_Balancing/Identity_Server.cpp:
        * examples/Load_Balancing_persistent/Identity_Server.cpp:
        * examples/POA/DSI/client.cpp:
          More replacement of char* with typedef name.

Thu Oct 24 10:39:10 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/LifeCycle_Service/Factory_Trader.cpp:
        * orbsvcs/examples/Log/Basic/TLS_Client.cpp:
        * orbsvcs/examples/Log/Event/Event_Supplier.cpp:
        * orbsvcs/examples/Log/Notify/Notify_Supplier.cpp:
        * orbsvcs/examples/Log/RTEvent/RTEvent_Supplier.cpp:
        * orbsvcs/orbsvcs/AV/Endpoint_Strategy_T.cpp:
        * orbsvcs/orbsvcs/AV/Flows_T.cpp:
        * orbsvcs/tests/AVStreams/Asynch_Three_Stage/Connection_Manager.cpp:
        * orbsvcs/tests/AVStreams/Component_Switching/Connection_Manager.cpp:
        * orbsvcs/tests/AVStreams/Simple_Three_Stage/sender.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/LB_server.cpp:
        * orbsvcs/tests/Log/Basic_Log_Test/Basic_Log_Test.cpp:
        * orbsvcs/tests/Property/client.cpp:
        * orbsvcs/tests/Property/server.cpp:

          More replacement of char* with typedef name.

Thu Oct 24 09:29:59 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/AV/AVStreams_i.cpp:

          String literal conversions to typedef name that were overlooked in

          Wed Oct 23 23:37:32 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>.

Thu Oct 24 000:33:17 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * examples/POA/DSI/Database_i.cpp:
        * examples/POA/DSI/Database_i.h:
        * examples/RTCORBA/Activity/Activity.cpp:
        * orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.cpp:
        * orbsvcs/Notify_Service/Notify_Service.cpp:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.cpp:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/LB_server.cpp:

          Replaced char * arguments with corresponding typedefs in cases where
          the IDL compiler now generates the typedef name.

Wed Oct 23 23:51:51 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tests/Makefile:
        * tests/Makefile.bor:
        * tests/TAO_Tests.dsw:

          Added the new abstract interface test to the suite.

Wed Oct 23 23:37:32 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/AV/AVStreams_i.cpp:

          Converted many occurrences of a string literal arg to the typedef name
          'const cosPropertyService::PropertyName' since this is now what the
          IDL compiler generates in the method signature.

        * orbsvcs/orbsvcs/Trader/Trading_Loader.cpp:

          Same as above for two overlooked occurrences of a string literal where
          'const CosTrading::LinkName' is generated.

Wed Oct 23 22:48:09 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/examples/Log/Basic/Client.dsp:
        * orbsvcs/examples/Log/Event/Log_CEC_Simple_Consumer.dsp:
        * orbsvcs/examples/Log/Event/Log_CEC_Simple_Supplier.dsp:
        * orbsvcs/examples/Log/Notify/Log_Notify_Simple_Consumer.dsp:
        * orbsvcs/examples/Log/Notify/Log_Notify_Simple_Supplier.dsp:
        * orbsvcs/examples/Log/RTEvent/Log_RTEvent_Simple_Consumer.dsp:
        * orbsvcs/examples/Log/RTEvent/Log_RTEvent_Simple_Supplier.dsp:

          Added all include and link paths - they somehow got wiped out.

Wed Oct 23 16:32:36 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/examples/CosEC/RtEC_Based/lib/Makefile: Added a check to
          ensure that the contents are not compiled if the dependant
          libraries are not available. Thanks to Sandeep Neema
          <neemask@corvette.vuse.vanderbilt.edu> for reporting this.

Wed Oct 23 13:38:59 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * orbsvcs/orbsvcs/DsEventLogAdmin.dsp:
        * orbsvcs/orbsvcs/DsNotifyLogAdmin.dsp: Fixed Release
          configurations.  Include paths, library paths, and library lists
          were missing somwhow.

Wed Oct 23 11:21:50 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/Abstract_Interface/Abstract_Interface_Client.dsp:
        * tests/Abstract_Interface/Abstract_Interface_Server.dsp: Renamed
          projects.

        * tests/Abstract_Interface/Abstract_Interface.dsw: Fixed project
          paths.

Wed Oct 23 10:26:59 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_argument/arglist.cpp
        * TAO_IDL/be/be_visitor_argument/argument.cpp
        * TAO_IDL/be/be_visitor_argument/request_info_arglist.cpp
        * TAO_IDL/be/be_visitor_argument/request_info_ch.cpp
        * TAO_IDL/be/be_visitor_argument/request_info_sh.cpp
        * TAO_IDL/be/be_visitor_argument/upcall_ss.cpp
        * TAO_IDL/be/be_visitor_argument/vardecl_ss.cpp
        * TAO_IDL/be/be_visitor_exception/exception_ctor.cpp
        * TAO_IDL/be/be_visitor_operation/interceptors_cs.cpp
        * TAO_IDL/be/be_visitor_operation/interceptors_info_rettype.cpp
        * TAO_IDL/be/be_visitor_operation/rettype.cpp
        * TAO_IDL/be/be_visitor_sequence/buffer_type.cpp
        * TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp
        * TAO_IDL/be/be_visitor_typedef/any_op_ch.cpp

          Modified code generation to generate the typedef name for
          typedef'd strings, along with the typedef name for the
          corresponding _var and _out classes, when used in operation
          parameters and inside generated function bodies. Generated
          constructors for exceptions with typedef'd string members
          were not changed - there seems to be no way to make happy
          all the compilers we support. Thanks to Goran Stojsic
          <goran.stojsic@etk.ericsson.se> for pointing out that
          generating char* for typedef'd strings in operations
          parameters will prevent the application from using the
          typedef name, since the compiler will report that a pure
          virtual skeleton method was not overridden in such a case.
          This fix will probably cause numerous headaches, but it is
          the Right Thing (TM) to do, so the problems will be dealt
          with as they appear.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp
        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.h
        * orbsvcs/orbsvcs/LoadBalancing/LB_ObjectReferenceFactory.cpp
        * orbsvcs/orbsvcs/LoadBalancing/LB_ObjectReferenceFactory.h
        * orbsvcs/orbsvcs/Log/Log_i.cpp
        * orbsvcs/orbsvcs/Log/Log_i.h
        * orbsvcs/orbsvcs/Naming/Naming_Context_Interface.cpp
        * orbsvcs/orbsvcs/Naming/Naming_Context_Interface.h
        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.cpp
        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.h
        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h
        * orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp
        * orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.h
        * orbsvcs/orbsvcs/Property/CosPropertyService_i.cpp
        * orbsvcs/orbsvcs/Property/CosPropertyService_i.h
        * orbsvcs/orbsvcs/Security/PrincipalAuthenticator.cpp
        * orbsvcs/orbsvcs/Security/PrincipalAuthenticator.h
        * orbsvcs/orbsvcs/Trader/Constraint_Interpreter.cpp
        * orbsvcs/orbsvcs/Trader/Constraint_Interpreter.h
        * orbsvcs/orbsvcs/Trader/Service_Type_Repository.cpp
        * orbsvcs/orbsvcs/Trader/Service_Type_Repository.h
        * orbsvcs/orbsvcs/Trader/Trader.cpp
        * orbsvcs/orbsvcs/Trader/Trader.h
        * orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp
        * orbsvcs/orbsvcs/Trader/Trader_Interfaces.h
        * orbsvcs/orbsvcs/Trader/Trader_Utils.cpp
        * orbsvcs/orbsvcs/Trader/Trader_Utils.h
        * orbsvcs/orbsvcs/Trader/Trading_Loader.cpp
        * Examples/Load_Balancing/Identity_Client.cpp
        * Examples/Load_Balancing/Load_Balancer_i.cpp
        * Examples/Load_Balancing/Load_Balancer_i.h
        * Examples/Load_Balancing_persistent/Identity_Client.cpp
        * Examples/Load_Balancing_persistent/Load_Balancer_i.cpp
        * Examples/Load_Balancing_persistent/Load_Balancer_i.h
        * Examples/OBV/Typed_Events/Event_Types_impl.cpp
        * tests/Param_Test/param_test_i.cpp
        * tests/Param_Test/param_test_i.h
        * orbsvcs/tests/Interoperable_Naming/ncontextext_client_i.cpp
        * orbsvcs/tests/Property/client.cpp
        * orbsvcs/tests/Trading/Offer_Exporter.cpp
        * orbsvcs/tests/Trading/Offer_Importer.cpp
        * orbsvcs/tests/Trading/Service_Type_Exporter.cpp
        * orbsvcs/tests/Trading/Simple_Dynamic.cpp
        * orbsvcs/tests/Trading/Simple_Dynamic.h

          Application files modified to use string typedef names
          instead of char*.

Tue Oct 22 23:31:45 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/DsLogAdmin.dsp: Added proper include paths for
          the release builds.

Tue Oct 22 18:22:24 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/Logging_Service/*/*.dsp: Fixed the project files. There
          are still some problems that needs ironing out.

Tue Oct 22 18:17:59 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/Notify_FilterFactory_i.cpp:
        * tests/Notify/MT_Dispatching/Structured_Consumer.cpp:
        * tests/Notify/MT_Dispatching/Structured_Supplier.cpp:
        * tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Consumer.cpp:
        * tests/Notify/Structured_Filter/Structured_Consumer.cpp:
        * tests/Notify/performance-tests/Filter/Sequence_Consumer.cpp:

          Changed the string selecting the Extended Trader Constraint Language
          grammar from "ETCL" to EXTENDED_TCL" as required by the spec. Thanks
          to Dmitry Khrapov <yavannadil@yahoo.com> for reporting the oversight.

Tue Oct 22 17:53:58 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_codegen.cpp:

          Added a generated newline after the (optional) precompiled header
          include. Thanks to Victor Kirk <vkirk@technology.serco.com> for
          reporting the bug and submitting a patch.

Tue Oct 22 17:18:34 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/util/utl_identifier.cpp:
        * TAO_IDL/util/utl_scope.cpp:

          Fixed a bug in handling the 'Object' keyword when it is
          escaped. Thanks to Ole Husgaard <osh@sparre.dk> for reporting
          the bug. This closes [BUGID:1324].

Tue Oct 22 15:11:09 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * orbsvcs/orbsvcs/AV.dsp:
        * orbsvcs/orbsvcs/CosConcurrency.dsp:
        * orbsvcs/orbsvcs/CosEvent.dsp:
        * orbsvcs/orbsvcs/CosLifeCycle.dsp:
        * orbsvcs/orbsvcs/CosLoadBalancing.dsp:
        * orbsvcs/orbsvcs/CosNaming.dsp:
        * orbsvcs/orbsvcs/CosNotification.dsp:
        * orbsvcs/orbsvcs/CosTime.dsp:
        * orbsvcs/orbsvcs/CosTrading.dsp:
        * orbsvcs/orbsvcs/DsLogAdmin.dsp:
        * orbsvcs/orbsvcs/FT_ORB.dsp:
        * orbsvcs/orbsvcs/Fault_Tolerance.dsp:
        * orbsvcs/orbsvcs/PortableGroup.dsp:
        * orbsvcs/orbsvcs/Svc_Utils.dsp: Went over all project files in
          TAOACE.dsw and fixed the Custom Build settings for all IDL
          files.  Some of the settings were missing for some reason.
          Thanks to John Morey <jmorey@mmintl.com> for reporting the
          problem.

Tue Oct 22 10:15:36 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/Connection_Handler.cpp: Fixed a unused variable warning.

Mon Oct 21 23:17:32 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/Log/Basic_Log_Test/Basic_Log_Test.dsp (RSC): Fixed
          the project file to prevent compile errors on Win32.

Mon Oct 21 22:45:02 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        Bug fix for [BUGID 1269,1270]. Thanks to Carlos O'Ryan for
        donating this patch.

        * tao/Connection_Handler.cpp:
        * tao/Connection_Handler.h:
        * tao/Connection_Handler.inl:
        * tao/Connector_Impl.cpp:
        * tao/IIOP_Connection_Handler.cpp:
        * tao/IIOP_Connection_Handler.h:
        * tao/Invocation.cpp:
        * tao/LF_Connect_Strategy.cpp:
        * tao/Muxed_TMS.cpp:
        * tao/Notify_Handler.cpp:
        * tao/Synch_Refcountable.cpp:
        * tao/TAO_Server_Request.cpp:
        * tao/IIOP_Connector.cpp:
        * tao/IIOP_Transport.cpp:
        * tao/IIOP_Transport.h:
        * tao/Transport.cpp:
        * tao/Transport.h: Changes to the ORB Core. The details are as
          follows

          - It eliminates the two refcounts in the connection handler and
            combines as one refcount.

          - The transport_ field in the Connection_Handler class is
            atomically modified.

          - Closing connections are also atomic.

          - When the connection is closed all the activations in the
            reactor are removed.

          For all the other gory details like the motivation for these
          changes, it is advised you refer to BUGID's 1202, 1269 and
          1270.

        * tao/Strategies/DIOP_Connection_Handler.cpp:
        * tao/Strategies/DIOP_Connection_Handler.h:
        * tao/Strategies/DIOP_Transport.cpp:
        * tao/Strategies/DIOP_Transport.h:
        * tao/Strategies/SHMIOP_Connection_Handler.cpp:
        * tao/Strategies/SHMIOP_Connection_Handler.h:
        * tao/Strategies/SHMIOP_Transport.cpp:
        * tao/Strategies/SHMIOP_Transport.h:
        * tao/Strategies/UIOP_Connection_Handler.cpp:
        * tao/Strategies/UIOP_Connection_Handler.h:
        * tao/Strategies/UIOP_Transport.cpp:
        * tao/Strategies/UIOP_Transport.h:
        * orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp:
        * orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.h:
        * orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
        * orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.h:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp:
        * orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.h:

          Changes to the pluggable protocols to reflect the changes in the
          ORB Core.


Mon Oct 21 21:51:07 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/DLL_ORB/Makefile.Tests_Client_Module: Added TAO_ROOT
          definition to fix the compileation problems.

Mon Oct 21 18:17:06 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * rules.tao.GNU: Used awk for library versioning instead of
          perl. Thanks to Craig Rodrigues for providing this patch.

Mon Oct 21 14:29:54 2002  Nanbor Wang  <nanbor@cs.wustl.edu>

        * examples/AMH/Sink_Server/run_test.pl:
        * examples/Simple/time-date/run_test.pl:
        * orbsvcs/examples/RtEC/Simple/run_test.pl:
        * orbsvcs/examples/Security/Send_File/run_test.pl:
        * orbsvcs/tests/AVStreams/Component_Switching/run_test.pl:
        * orbsvcs/tests/AVStreams/Multicast/run_test.pl:
        * orbsvcs/tests/CosEvent/Basic/run_test.pl:
        * orbsvcs/tests/EC_Mcast/run_test.pl:
        * orbsvcs/tests/EC_Throughput/run_test.pl:
        * orbsvcs/tests/Event/Basic/exhaustive_test.pl:
        * orbsvcs/tests/Event/Basic/run_test.pl:
        * orbsvcs/tests/Event/Performance/run_test.pl:
        * orbsvcs/tests/Miop/McastHello/run_test.pl:
        * orbsvcs/tests/Notify/Blocking/run_test.pl:
        * orbsvcs/tests/Notify/Discarding/run_test.pl:
        * orbsvcs/tests/Notify/MT_Dispatching/run_test.pl:
        * orbsvcs/tests/Notify/Ordering/run_test.pl:
        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/run_test.pl:
        * orbsvcs/tests/Notify/Sequence_Multi_Filter/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/Filter/run_test.pl:
        * orbsvcs/tests/Security/Big_Request/run_test.pl:
        * orbsvcs/tests/Security/Callback/run_test.pl:
        * orbsvcs/tests/Security/MT_SSLIOP/run_test.pl:
        * orbsvcs/tests/Security/Secure_Invocation/run_test.pl:
        * orbsvcs/tests/Security/SecurityLevel1/run_test.pl:
        * performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl:
        * performance-tests/Cubit/TAO/IDL_Cubit/run_test_lite.pl:
        * performance-tests/Latency/Single_Threaded/default_configuration.pl:
        * performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/run-test.pl:
        * performance-tests/RTCorba/Multiple_Endpoints/Single_Endpoint/run-test.pl:
        * performance-tests/RTCorba/Thread_Pool/native-svc.conf:
        * performance-tests/RTCorba/Thread_Pool/native-svc.conf.xml:
        * performance-tests/RTCorba/Thread_Pool/run_test.pl:
        * performance-tests/RTCorba/Thread_Pool/svc.conf-native:
        * performance-tests/Throughput/run_test.pl:
        * tests/AMI/run_test.pl:
        * tests/Connect_Strategy_Test/run_test.pl:
        * tests/Connection_Purging/run_test.pl:
        * tests/LongUpcalls/run_test.pl:
        * tests/MT_BiDir/run_test.pl:
        * tests/MT_Client/run_test.pl:
        * tests/MT_Server/run_test.pl:
        * tests/No_Server_MT_Connect_Test/run_test.pl:
        * tests/OctetSeq/run_test1.pl:
        * tests/OctetSeq/run_test2.pl:
        * tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl:
        * tests/RTCORBA/Server_Protocol/run_test.pl:
        * tests/Strategies/run_test.pl: Changed to use the svcconf file
          extension ($PerlACE::svcconf_ext) defined in PerlACE::Run_Test
          to switch between conventional svc.conf files and XML-based
          svc.conf files.  The default file extension is ".conf".  To use
          XML-based format, you need to define an environment variable
          ACE_RUNTEST_SVCCONF_EXT as ".conf.xml".

Mon Oct 21 14:27:44 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/DLL_ORB/Makefile.Test_Client_Module:
        * tests/DLL_ORB/Makefile.Test_Server_Module: Fix for the makefile
          problem that lead to a link being created for a library that
          didnt exist. Thaks to Craig Rodrigues <crodrigu@bbn.com> for
          providing the patch.

Mon Oct 21 06:38:41 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/DsLogAdmin.dsp: Fixed link errors in Win32
          builds.

Mon Oct 21 11:03:06 UTC 2002  Don Hinton  <dhinton@ieee.org>

        * docs/compiler.html: Updated tao_idl compiler option documentation
          for the "-t", temporary directory, options.

Sun Oct 20 08:18:28 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/ImplRepo_Service/Makefile: Fixed a typo that broke the minimum builds.

Sun Oct 20 00:23:03 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/server.cpp:
          Renamed the variables loc1 and loc2 as location1 and
          location2. The variables loc1 and loc2 is a legacy left over in
          UNIX, which denotes pointers to characters matched by regular
          expressions. This should fix compile errors in SunCC builds.

Sun Oct 20 00:10:14 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/ImplRepo_Service/Makefile: Fixed the problems with this
          change "Fri Oct 18 15:52:11 2002 Priyanka Gontla
          <pgontla@ociweb.com>".

Sat Oct 19 09:47:43 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Makefile: Prevent ImplRepo from being compiled
          in minimum_corba setting. The fix "Fri Oct 18 15:52:11 2002
          Priyanka Gontla  <pgontla@ociweb.com>" seems goofy. Need to get
          Craig and Priyanka to take a look.

Sat Oct 19 08:40:46 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Log/EventLog_i.cpp:
        * orbsvcs/orbsvcs/Log/EventLog_i.h:
        * orbsvcs/orbsvcs/Log/NotifyLog_i.cpp:
        * orbsvcs/orbsvcs/Log/NotifyLog_i.h:
        * orbsvcs/orbsvcs/Log/RTEventLog_i.cpp:
        * orbsvcs/orbsvcs/Log/RTEventLog_i.h: Renamed the class
          LogConsumer declared by the same name in all the translation
          units as TAO_Rtec_LogConsumer, TAO_Notify_LogConsumer and
          TAO_Event_LogConsumer. This should fix link time warnings in
          SUNCC builds.

Fri Oct 18 23:32:11 2002  Mayur Deshpande  <mayur@ics.uci.edu>

        * examples/AMH/Sink_Server/Timer_Handler.cpp (handle_timeout):

          Changed the ResponseHandler to a _var instead of a _ptr. This
          not only takes care of deleting the pointer in exceptional
          circumstances but the code is also much cleaner.  Thanks to
          Ossama Othman <ossama.ece.uci.edu> for the tip and code-review.

Fri Oct 18 22:23:53 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/fe/idl.ll:
        * TAO_IDL/fe/lex.yy.cpp:

          Fixed a problem with the SunCC preprocessor. When processing a
          non-quoted scoped name, as may occur in #pragma version, typeid,
          or typeprefix, this preprocessor regards the double colons as
          separate tokens and bookends them with spaces. Had to add code to
          check for this and strip out the spaces.

Fri Oct 18 16:49:04 2002  Jaiganesh Balasubramanian  <jai@doc.ece.uci.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/run_test.pl:
          Added the file to the new directory created for the test.

Fri Oct 18 16:11:23 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Log/Log_i.cpp (Log_i): Patch to prevent compile
          errors on OpenBSD. Thanks to Frank Hunleth <frank@hunleth.com>
          for the patch. The problem is because of a type conversion from
          unsigned long to time_t. Looks like time_t is an int on
          OpenBSD.

        * orbsvcs/orbsvcs/Log/Log_i.h: Some cosmetic fixes.

Fri Oct 18 16:09:37 2002  Priyanka Gontla  <pgontla@ociweb.com>

        * orbsvcs/ImplRepo_Service/README.txt:
        * orbsvcs/ImplRepo_Service/README:
          Removed README and added README.txt instead as doxygen
          is looking for only txt files besides the normal implementation,
          header and inline files.

          Thanks to Bala for pointing the reason why the index.html is not
          getting generated via doxygen.

Fri Oct 18 15:52:11 2002  Priyanka Gontla  <pgontla@ociweb.com>

        * orbsvcs/tests/ImplRepo/Makefile:
        * orbsvcs/tests/ImplRepo/NameService/Makefile:
        * orbsvcs/ImplRepo_Service/Makefile:
        * orbsvcs/orbsvcs/Makefile:
          Applied the patches provided by Craig Rodrigues so that
          Implementation Repostory and related tests will be compiled
          only when ImplRepo is added to the list of TAO_ORBSVCS
          in platform_macros.

          Thanks to Craig Rodrigues for pointing this out and for
          the patches.

Fri Oct 18 15:59:58 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/AMH/Sink_Server/mt_server.cpp:
        * examples/AMH/Sink_Server/st_server.cpp: Removed strange inl file
          inclusions in the above files.

Fri Oct 18 15:56:04 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/AMH/Sink_Server/Base_Server.h: Included the inline
          file in the header file.

Fri Oct 18 15:46:29 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/Makefile.CosLoadBalancing: Removed the check for
          'ami' and 'interceptors' from this file. Most of the Makefiles
          in the orbsvcs adds the check in the top level Makefile, with a
          reason.

        * orbsvcs/orbsvcs/Makefile: Moved the check here. The main reason
          for having the check here is that, once the list of Makefiles
          that needs to be run is built, it writes out the
          ORBSVCS_COMPONENTS.list file,  even if the actual Makefile for the
          said service is not executed. This creates problems for the
          tests and examples that depends on the contents within the
          ORBSVCS_COMPONENTS.list file.

Fri Oct 18 15:40:11 2002  Priyanka Gontla  <pgontla@ociweb.com>

        * orbsvcs/ImplRepo_Service/ImR_Activator.bor:
          Corrected the NAME of the executable.
          Thanks to Christian Barheine <cbarheine@sympatec.com>
          for finding the problem and also for the patch.

Fri Oct 18 10:30:20 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * examples/AMH/Sink_Server/Base_Server.cpp: Fixed a warning in
          g++ builds.

Thu Oct 17 18:35:29 2002  Mayur Deshpande  <mayur@ics.uci.edu>

        * examples/AMH/Sink_Server/Base_Server.inl:
        * examples/AMH/Sink_Server/Client_Task.cpp:
        * examples/AMH/Sink_Server/Client_Task.h:
        * examples/AMH/Sink_Server/MT_AMH_Server.cpp:
        * examples/AMH/Sink_Server/MT_AMH_Server.h:
        * examples/AMH/Sink_Server/Timer_Handler.h:
        * examples/AMH/Sink_Server/AMH_Servant.cpp:
        * examples/AMH/Sink_Server/AMH_Servant.h:
        * examples/AMH/Sink_Server/Base_Server.cpp:
        * examples/AMH/Sink_Server/Base_Server.h:
        * examples/AMH/Sink_Server/Makefile:
        * examples/AMH/Sink_Server/README:
        * examples/AMH/Sink_Server/Sink_Server.mpc:
        * examples/AMH/Sink_Server/Timer_Handler.cpp:
        * examples/AMH/Sink_Server/client.bor:
        * examples/AMH/Sink_Server/client.cpp:
        * examples/AMH/Sink_Server/mt_server.bor:
        * examples/AMH/Sink_Server/mt_server.cpp:

          Addressed number of @@ comments left by Ossama on previous
          code-review. Fleshed out classes into .h and .cpp and .inl
          files, added more error-handling, compliance to ACE/TAO
          coding-rules, passing by references instead of pointers/value,
          and tons of other fixes.  Thanks Ossama!

Thu Oct 17 14:45:08 2002  Mayur Deshpande  <mayur@ics.uci.edu>

        * tao/PortableServer/AMH_Response_Handler.cpp:

          Changed all the 'transport->send_message ()' from the default
          parameter for 'message_semantics' (TAO_Transport::Two_Way) to
          TAO_Transport::TAO_Reply.  Doing this blocks the sender until
          the reply is sent. This change suggested by Balachandran
          Natarajan <bala@isis-server.isis.vanderbilt.edu> fixes a bug
          reported by Martin Johnson <mjhn@bigpond.net.au> where an AMH
          server crashed when it was sending back huge payload (>16K) to a
          multithreaded (>50) client.

Thu Oct 17 14:47:50 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.cpp
          (populate_object_group, process_criteria):

          Explicitly cast an unsigned short value to unsigned long.
          Borland C++ apparently gets confused and assumes that the
          unsigned short value is signed.  Silences a warning.

Thu Oct 17 21:04:49 UTC 2002  Craig Rodrigues  <crodrigu@bbn.com>

        * orbsvcs/orbsvcs/Log/Log_i.cpp: Add missing template instantiation
          TAO_Unbounded_Sequence<DsLogAdmin::TimeInterval>.

Thu Oct 17 12:19:32 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Makefile:

          Added the Messaging and Naming library to the link line.

Thu Oct 17 11:58:49 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_valuetype.cpp:

          Fixed a bug in code generation of the inheritance list for
          valuetypes that support abstract interfaces.

        * TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
        * TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_cs.cpp:

          Fixed a mistake in the changes made in

          Wed Oct 16 17:16:38 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

          and made the same changes to code generation for abstract
          interfaces.

        * tao/ObjectReferenceTemplateC.cpp:
        * tao/ObjectReferenceTemplateC.h:
        * tao/Messaging/MessagingC.cpp:
        * tao/Messaging/MessagingC.h:
        * tao/PortableServer/Default_ORTC.cpp:
        * tao/PortableServer/Default_ORTC.h:

          Modified hand-crafted code to correspond to the changes above.

Thu Oct 17 10:47:32 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/Makefile:

          Check whether the CosLoadBalancing library was built. This
          check was there already but at the wrong place.

Wed Oct 16 17:16:38 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_cs.cpp:

          Fixed a problem with MSVC not being able to invoke fully
          qualified member methods (except in the initializer), which
          appeared when the _tao_obv_narrow() method calls the
          corresponding method of a base class. If the base class has
          the same local name, the ACE_NESTED_CLASS macro breaks and
          the call goes into an endless loop. For MSVC, identical
          methods using the flat name are generated for each class,
          and called by derived classes. Thanks to Don Hinton
          <dhinton@ieee.org> for reporting the bug and Jon Franklin
          <jfranklin@dctd.saic.com> for providing a patch.

Wed Oct 16 12:37:07 2002  Jaiganesh Balasubramanian  <jai@doc.ece.uci.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/Makefile:
          Added the new Makefile to compile "directories" under this
          directory.

Wed Oct 16 12:23:29 2002  Jaiganesh Balasubramanian  <jai@doc.ece.uci.edu

        * orbsvcs/tests/LoadBalancing/GenericFactory:
          Added a new directory "Application_Controlled".
          This directory contains all the files required for testing
          the object group creation and deletion with
          application-controlled membership.

Wed Oct 16 11:49:21 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/fe/idl.ll:
        * TAO_IDL/fe/lex.yy.cpp:
        * TAO_IDL/ast/ast_decl.cpp:
        * TAO_IDL/util/utl_scope.cpp:
        * TAO_IDL/include/ast_decl.h:
        * TAO_IDL/include/utl_scope.h:

          Fixed a bug in typeprefix propagation by moving a class member
          and accessors from UTL_Scope to AST_Decl, and changing code
          where the accessors are called.

Tue Oct 15 20:05:48 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/run_test.pl:

          Use TerminateWaitKill() instead of WaitKill() when terminating
          the LoadManager binary.  The LoadManager handles the SIGTERM and
          SIGINT signals to allow for graceful shutdown in order to clean
          up remote resources.  TerminateWaitKill() sends a SIGTERM signal
          (as opposed to SIGKILL) to the process in question, thus
          giving the LoadManager the chance to shutdown gracefully.  This
          addresses a bogus exit status from the LoadManager binary.

Tue Oct 15 19:49:53 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/PortableGroup/PG_Group_Guard.h:
        * orbsvcs/orbsvcs/PortableGroup/PG_Group_Guard.cpp:

          New guard implementation designed to improve exception safety
          when creating object groups.  It is used internally by the
          TAO_PG_GenericFactory class.

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.h
          (delete_object_i):

          Made this method public so that the new TAO_PG_Group_Guard class
          may invoke it.

          (populate_object_group):

          Made factory creation ID argument "const" to prevent subtle bugs
          from being potentially introduced in the future.

          This method now accepts a reference to the factory set
          associated with a given factory creation ID.

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.cpp
          (create_object):

          The factory set is now instantiated in this method and passed to
          the populate_object_group() method.  This change was necessary
          to improve exception safety when cleaning up resources created
          during a failed attempt at creating an object group.

          Use a TAO_PG_Group_Guard to improve exception safety in the
          presence of a failed object group creation attempt.

          (delete_object):

          Upon successful destruction of remote object group members
          through their corresponding factories, unbind the factory set
          that contained those factories from the internal factory map.
          Closes a resource leak.

          (process_criteria):

          If the desired minimum number of members is less than the number
          of supplied GenericFactorys, add a new element containing the
          name and value of the MinimumNumberMembers property to the unmet
          criteria sequence that is the attribute of the
          PortableGroup::CannotMeetCriteria exception to be thrown.

Tue Oct 15 17:34:07 2002  Jaiganesh Balasubramanian  <jai@doc.ece.uci.edu>

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.cpp:
          Made a change in the delete_object () function.
          There is a check to see if the factory set is bound
          to the factory map or not. If we do not find an entry
          in the map, a exception was thrown.
          In the case of application-controlled membership, we do
          not have a factory set bound to the factory map at all.
          So the else case can be removed.
          Thanks to Ossama Othman <ossama@uci.edu> for helping
          me track down this problem.

Tue Oct 15 17:25:04 2002  Krishnakumar B  <kitty@cse.wustl.edu>

        * orbsvcs/ImplRepo_Service/Makefile: Updated dependencies.

Tue Oct 15 17:03:01 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tests/Abstract_Interface/server.cpp:
        * tests/Abstract_Interface/client.cpp: TAO_ENV* macros were
          used. Changed those to use ACE_ENV* macros. This shodl also fix
          a fuzz error with this test.

Tue Oct 15 12:55:00 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/Makefile.SSLIOP (CPPFLAGS, LDFLAGS, LIBS):

          Append PLATFORM_SSL_{CPPFLAGS,LDFLAGS,LIBS} to each of these
          variables, respectively.  Addresses build issues on platforms
          where OpenSSL is not installed in a location known to the
          compiler and linker.  Thanks to Werner Buchert <medat.de> for
          pointing out the problem.

Tue Oct 15 14:31:49 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * orbsvcs/orbsvcs/IFRService/ConstantDef_i.cpp:

          Changed the type of a local variable to match the signature of the
          method call it is passed to. Thanks to Werner Buchert
          <w.buchert@medat.de> for reporting the bug.

Tue Oct 15 14:10:29 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tests/IDL_Test/Makefile:

          Updated dependencies.

Tue Oct 15 13:34:15 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/ast/ast_decl.cpp:
        * TAO_IDL/fe/lex.yy.cpp:
        * TAO_IDL/fe/idl.ll:
        * TAO_IDL/include/ast_decl.h:
        * TAO_IDL/include/utl_scope.h:
        * TAO_IDL/util/utl_idlist.cpp:
        * TAO_IDL/util/utl_scope.cpp:

          Changes to make a typeprefix directive in an inner scope override
          one in an outer scope, even if the outer scope directive comes later
          in the IDL file. These changes were documented in, but mistakenly
          left out of

          Mon Oct 14 15:44:05 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

Tue Oct 15 11:43:40 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tests/Abstract_Interface/test_i.cpp:

          Fixed an incorrect environment macro.

        * tests/Abstract_Interface/Makefile:

          Updated dependencies.

Tue Oct 15 11:16:37 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_operation/interceptors_cs.cpp:

          Refinement of earlier fix to avoid incorrect generated code in the
          interceptor class of an operation that returns a string.

        * TAO_IDL/be/be_visitor_interface/interface_cs.cpp:

          Fixec a bug in code generation for abstract interfaces.

Tue Oct 15 10:48:46 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * tao/CDR_Encaps_Codec.cpp: Cosmetic fix.

Tue Oct 15 10:05:01 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tao/Messaging/MessagingC.cpp:
        * tao/Messaging/MessagingC.h:
        * tao/PortableServer/Default_ORTC.cpp:
        * tao/PortableServer/Default_ORTC.h:

          Fixed some things I overlooked before get these files to match up
          with generated code.

Mon Oct 14 18:52:06 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/PortableGroup/PG_Default_Property_Validator.cpp
          (validate_criteria):

          Reduce the length of the invalid criteria sequence in an effort
          to optimize the copying that will occur when the
          PortableGroup::InvalidCriteria exception is thrown.  Reducing
          the length is fast since no deallocations should occur.

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.h
          (populate_object_group):

          Accept an "initial number of members" value.  It will be used
          when creating the initial object group members via the
          infrastructure.

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.cpp
          (create_object, process_criteria):

          Moved criteria validation code to the process_criteria() method.

          Verify that the InitialNumberMembers property is larger than the
          MinimumNumberMembers property.  It doesn't make sense to create
          members numbering less than the minimum.  Throw a
          PortableGroup::CannotMeetCriteria exception in that case.

          Populate the "unmet_criteria" attribute of the
          PortableGroup::CannotMeetCriteria exception before throwing that
          exception.  Previously, a default constructed exception was
          thrown.

          (populate_object_group):

          In the infrastructure controlled membership case, initially
          create the number of members specified in the
          InitialNumberMember property.  Previously, the number of initial
          members was the same as the number of FactoryInfos, which is
          undesirable since members were always automatically created.

        * orbsvcs/orbsvcs/PortableGroup/PG_conf.h
          (TAO_PG_MINIMUM_NUMBER_MEMBERS):

          The default minimum number of members value should always be
          equal to (or greater) the default initial number of members
          value (TAO_PG_INITIAL_NUMBER_MEMBERS).  This is a precautionary
          measure to meant avoid errors introduced by only changing one of
          the default values.

Mon Oct 14 19:21:19 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/examples/Log/RTEvent/Makefile: Added a missing library.

Mon Oct 14 17:50:12 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tests/Abstract_Interface/Abstract Interface Client.dsp:
        * tests/Abstract_Interface/Abstract Interface Server.dsp:
        * tests/Abstract_Interface/Abstract_Interface.dsw:
        * tests/Abstract_Interface/Makefile:
        * tests/Abstract_Interface/Makefile.bor:
        * tests/Abstract_Interface/README:
        * tests/Abstract_Interface/client.bor:
        * tests/Abstract_Interface/client.cpp:
        * tests/Abstract_Interface/run_test.pl:
        * tests/Abstract_Interface/server.bor:
        * tests/Abstract_Interface/server.cpp:
        * tests/Abstract_Interface/test.idl:
        * tests/Abstract_Interface/test_i.cpp:
        * tests/Abstract_Interface/test_i.h:

          New test for abstract interfaces.

Mon Oct 14 17:35:56 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tao/PortableServer/Default_ORTC.cpp:
        * tao/PortableServer/Default_ORTC.h:

          Modified these files to correspond with changes to generated code in

          Mon Oct 14 15:44:05 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

Mon Oct 14 17:15:23 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * tests/IDL_Test/repo_id_mod.idl:

          New file added to test 'typeprefix', 'typeid' and #pragma version.

        * tests/IDL_Test/Makefile:
        * tests/IDL_Test/Makefile.bor:
        * tests/IDL_Test/idl_test.dsp:
        * tests/IDL_Test/main.cpp:

          Files modified with addition of new test to the suite.

Mon Oct 14 15:44:05 2002  Jeff Parsons <parsons@isis-server.isis.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_ci.cpp:
        * TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_cs.cpp:
        * TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_ci.cpp:
        * TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_cs.cpp:

          Fixed mistakes in code generation for sequences of valuetypes.
          Thanks to Sean M. Paus <spaus@cdtd.saic.com> for pointing out
          the problem.

        * TAO_IDL/be/be_visitor_root/root.cpp:

          Fixed cut and paste error in visitor instantiation for generation
          of Any operators for forward declared interfaces. Thanks to
          Antonio Saraiva <Antonio_Saraiva@csgsystems.com> for reporting the
          bug.

        * TAO_IDL/ast/ast_decl.cpp:
        * TAO_IDL/ast/ast_module.cpp:
        * TAO_IDL/util/utl_idlist.cpp:

          Changed behavior of typeprefix so that an inner scope directive
          overrides an outer one. This behavior is not explicitly required
          by the CORBA specification, but it is assumed that this is the
          intention. This point will be submitted as an OMG issue shortly.
          Thanks to Jonathan Biggar <jon@floorboard.com> for his advice on
          this matter

        * TAO_IDL/be/be_visitor_operation/interceptors_cs.cpp:

          Fixed a problem with interceptors where there is a name clash
          if an operation has a return type called 'result'. Thanks to
          Ossama <ossama@doc.ece.uci.edu> for suggesting the fix.

        * TAO_IDL/be/be_visitor_array/any_op_cs.cpp:
        * TAO_IDL/be/be_visitor_enum/any_op_cs.cpp:
        * TAO_IDL/be/be_visitor_exception/any_op_cs.cpp:
        * TAO_IDL/be/be_visitor_interface/any_op_cs.cpp:
        * TAO_IDL/be/be_visitor_sequence/any_op_cs.cpp:
        * TAO_IDL/be/be_visitor_structure/any_op_cs.cpp:
        * TAO_IDL/be/be_visitor_union/any_op_cs.cpp:
        * TAO_IDL/be/be_visitor_valuetype/any_op_cs.cpp:

          Fixed another name clash with the 'result' identifier, this
          time in the body of the Any extraction operator.

        * tao/ValueBase.h:
        * tao/ValueBase.i:
        * tao/ValueFactory.h:
        * tao/ValueFactory.i:
        * TAO_IDL/be/be_valuetype.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_cs.cpp:

          Removed both cast operators from class ValueFactoryBase_var,
          since they do not appear in the C++ mapping, and removed the
          const cast operator from ValueBase_var, since it was causing a
          problem with the HP-UX 11.11 compiler, and valuetypes do not
          support const operations anyway. Thanks to Torsten Kuepper
          <Torsten.Kuepper@nokia.com> for the bug report and the valuetype
          expertise.

        * tao/corbafwd.h:

          Added dk_Event to enum DefinitionKind.

Mon Oct 14 11:32:16 2002  D A Hanvey  <d.hanvey@qub.ac.uk>

        * docs/releasenotes/index.html:

          Amended entry to show new status of Telecom Log Service.
          Changed point of contact to D A Hanvey.

Sun Oct 13 22:14:23 2002  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * orbsvcs/Logging_Service/RTEvent_Logging_Service/Makefile: Added
          a missing library  to the Makefile.

Sun Oct 13 13:47:21 2002  Jaiganesh Balasubramanian  <jai@doc.ece.uci.edu>

        * orbsvcs/tests/LoadBalancing/GenericFactory/LB_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/LB_server.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/server.cpp:
          Changed the name of the Class LB_Basic_Test to LB_server to
          be in sync with the name of the file.
          Also changed the semantics of the destroy () method to
          resolve the compiler errors.

Sat Oct 12 22:59:15 2002  Krishnakumar B  <kitty@cse.wustl.edu>

        * orbsvcs/ImplRepo_Service/XML_ContentHandler.h:
        * orbsvcs/ImplRepo_Service/XML_ContentHandler.cpp:
        * orbsvcs/ImplRepo_Service/Server_Repository.cpp:

          Changed to support the native exception in ACEXML.

Fri Oct 11 12:18:11 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/tests/Makefile:

          Added `LoadBalancing' test directory to the directory list.

        * orbsvcs/tests/LoadBalancing/Makefile:

          New top-level Load Balancing test Makefile.

        * orbsvcs/tests/LoadBalancing/GenericFactory/LB_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/LB_server.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/server.cpp:

          More code review comments.

        * orbsvcs/tests/LoadBalancing/GenericFactory/Makefile:

          Only build this test if the "CosLoadBalancing" ORBSVCS component
          was built.

Fri Oct 11 10:38:26 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
          (locations_of_members):

          Made reference to TAO_PG_MemberInfoSet non-const once again
          since const iterators for the ACE_Unbounded_Set container are
          currently unimplemented.  Fixes a compile-time problem.

Fri Oct 11 09:59:59 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp
          (remove_member):

          Added implementations for this method.

Fri Oct 11 09:41:43 2002  Ossama Othman  <ossama@uci.edu>

        * orbsvcs/orbsvcs/Makefile:

          Re-enabled the Telecom Logging Service by default.

          Fixed some Telecom Logging Service dependencies.