Removed special handling for subversion files
[ACE_TAO.git] / TAO / NEWS
blob48d15915bc3aef9c85183ec9474dbb4dfabba2df
1 USER VISIBLE CHANGES BETWEEN TAO-2.5.11 and TAO-2.5.12
2 ======================================================
4 . Removed usage of narrow_from_decl and narrow_from_scope
5   from TAO_IDL, use dynamic_cast now that we have RTTI. Any
6   user that has a custom backend should make the similar
7   changes to their own TAO_IDL backend
9 USER VISIBLE CHANGES BETWEEN TAO-2.5.10 and TAO-2.5.11
10 ======================================================
12 . Simplified some code generated by tao_idl
14 USER VISIBLE CHANGES BETWEEN TAO-2.5.9 and TAO-2.5.10
15 =====================================================
17 . TAO IDL Frontend annotation support extended: (#1125)
18   . All the direct contents of interfaces
19   . Porttypes, eventtypes, components, and all their direct contents
20   . Valuetypes and most of their direct contents
22 . TAO IDL now supports anonymous types when using IDL4. (#1135)
24 USER VISIBLE CHANGES BETWEEN TAO-2.5.8 and TAO-2.5.9
25 ====================================================
27 . With C++11 we are now using (u)int8/16/32/64 to map all
28   CORBA types
30 USER VISIBLE CHANGES BETWEEN TAO-2.5.7 and TAO-2.5.8
31 ====================================================
33 . Fixed handling of transient errors with DII requests
35 . Renamed `VERSION` file to `VERSION.txt` to avoid conflicting with the
36   `version` standard header.
38 USER VISIBLE CHANGES BETWEEN TAO-2.5.6 and TAO-2.5.7
39 ====================================================
41 . Fixed deprecated-copy warnings in TAO_IDL generated code
43 . The TAO IDL Frontend now supports annotations on interfaces, operations, and
44   attributes. (#967)
46 . `idl_global->eval` in the TAO IDL Frontend will now produce error and warning
47   messages. This can be silenced by passing `true` as a second argument. (#967)
49 . Expanded documentation on what can be annotated and roughly how to extend
50   annotation support in `TAO_IDL/docs/annotations.md`. Also made various
51   corrections. (#967)
53 . Fixed invalid free in the TAO IDL Frontend while parsing an IDL wstring
54   literal. (#984)
56 USER VISIBLE CHANGES BETWEEN TAO-2.5.5 and TAO-2.5.6
57 ====================================================
59 . Fixed race condition in ImplRepo on server shutdown/restart (#889)
61 USER VISIBLE CHANGES BETWEEN TAO-2.5.4 and TAO-2.5.5
62 ====================================================
64 . Fixed Memory Leaks in TAO_IDL caused by the addition of Annotations (#811)
66 . Changes in the Annotations API in TAO_IDL, see
67   TAO/TAO_IDL/docs/annotations.md section titled "TAO 2.5.5" for details.
69 USER VISIBLE CHANGES BETWEEN TAO-2.5.3 and TAO-2.5.4
70 ====================================================
72 . Enhanced the ImR to better handle a huge number
73   of servers which use the ImR heavily and each of
74   them does a frequent shutdown/start cycle
76 . The TAO_IDL frontend library now parses all IDL4
77   annotation-related syntax: using and defining annotations.
78   Use the tao_idl command-line options --idl-version and
79   --unknown-annotations to control annotation parsing.
80   Documentation on this feature is located in
81   TAO/TAO_IDL/docs/annotations.md.
83 . TAO_IDL now will return an error status code when
84   passing an invalid command line argument.
85   Backends will have to support this behavior
86   explicitly, see TAO/TAO_IDL/include/idl_defines.h
87   for details.
88   TAO_IDL also accepts new options such as -h,
89   --help, --version, and --syntax-only, the latter
90   of which won't generate any files, just check
91   syntax of the IDL file(s).
92   See tao_idl -h for details.
94 . When using IDL_Files in MPC, generated files will
95   now be placed in the current directory by default,
96   instead of the directory of the IDL file.
97   Use
98     idlflags += -o <IDL_FILE_DIR>
99     gendir = <IDL_FILE_DIR>
100   to output generated files to where the IDL file
101   is.
103 USER VISIBLE CHANGES BETWEEN TAO-2.5.2 and TAO-2.5.3
104 ====================================================
106 . Enhance ssliop and uiop corbaloc parsers
108 USER VISIBLE CHANGES BETWEEN TAO-2.5.1 and TAO-2.5.2
109 ====================================================
111 . Enhance logging within the ImR
113 . Enhance the behavior of the ImR with a per-client
114   activation mode and multiple clients starting in
115   parallel
117 . Modified the SSLIOP::Protocol_Factory::init to
118   process an "-SSLEcName" argument to set the ECDH
119   curve name.
121 USER VISIBLE CHANGES BETWEEN TAO-2.5.0 and TAO-2.5.1
122 ====================================================
124 . Make use of std::atomic when C++11 or newer is enabled
125   for the CORBA reference counting
127 USER VISIBLE CHANGES BETWEEN TAO-2.4.8 and TAO-2.5.0
128 ====================================================
130 . The TAO core libraries now use std::unique_ptr instead
131   of std::auto_ptr when C++11 or newer is enabled
133 USER VISIBLE CHANGES BETWEEN TAO-2.4.7 and TAO-2.4.8
134 ====================================================
136 . Logging enhancements to the TAO core for some possible
137   error situations
139 USER VISIBLE CHANGES BETWEEN TAO-2.4.6 and TAO-2.4.7
140 ====================================================
142 . TAO_IDL parses and discards IDLv4 annotations (applying, not defining)
144 . Fixed Bug 1220 as it applies to the SHMIOP transport.
146 USER VISIBLE CHANGES BETWEEN TAO-2.4.5 and TAO-2.4.6
147 ====================================================
149 . Added support for IPv4-mapped IPv6 addresses in BiDirGIOP+SSLIOP.
151 . Fixed Bug 1220 as it applies to the SSLIOP transport.
153 USER VISIBLE CHANGES BETWEEN TAO-2.4.4 and TAO-2.4.5
154 ====================================================
156 . Extended TAO_IDL with a new -Gsd which enabled the generation of two
157   additional static operations for each interface. _desc_repository_id to
158   retrieve the repository id as string, second _desc_interface_name to
159   return the interface name. Both can be useful in template meta programming
160   use cases where we want to use the repository id or interface name
161   of a specific type.
163 USER VISIBLE CHANGES BETWEEN TAO-2.4.3 and TAO-2.4.4
164 ====================================================
166 . Minor cleanup and fixes to the code generated by TAO_IDL
168 USER VISIBLE CHANGES BETWEEN TAO-2.4.2 and TAO-2.4.3
169 ====================================================
171 . Added enhanced hot-standby feature to FT_Naming_Service. Use
172   tao_ft_naming -h to get a list of new configuration options.
173   This feature addresses performance problems on heavily loaded systems.
175 USER VISIBLE CHANGES BETWEEN TAO-2.4.1 and TAO-2.4.2
176 ====================================================
178 . Fixed some problems with versioned namespaces in the
179   tao_idl generated code
181 . Removed the non-const Any extraction operators which
182   are deprecated within the IDL to C++ specification
183   for a long time. Reduces footprint and simplifies the
184   code. Make sure you are using 'const Foo*' as extraction
185   type for Foo instead of 'Foo*'.
187 USER VISIBLE CHANGES BETWEEN TAO-2.4.0 and TAO-2.4.1
188 ====================================================
190 . Reduced amount of warnings given by newer gcc/clang
191   versions on the generated tao_idl code
193 USER VISIBLE CHANGES BETWEEN TAO-2.3.4 and TAO-2.4.0
194 ====================================================
196 . None
198 USER VISIBLE CHANGES BETWEEN TAO-2.3.3 and TAO-2.3.4
199 ====================================================
201 . ImR enhancement - Added a "force remove" option to the Implementation repository
202   that will remove a server entry from the ImR Locator repository and kill any
203   running instance with a single command.
205 . ImR enhancement - Fix to allow very large ( > 4K ) command line.
207 . ImR enhancement - Enhance the coordination between the Locator and the Activator
208   to tolerate running on heavily loaded systems, in particular when a server process
209   is slow to shut down, and a new server is started before the shutdown is complete
211 . LogWalker utility improvements for handling truncated GIOP buffer dumps, added
212   tracking thread first/last contact times.
214 . Fault-Tolerance improvement - Optimize performance on NFS mounted filesystems. First
215   a deadlock is resolved. Second, use of writer locks is minimized to only when writing
216   is necessary. Third, NFS occasionally causes transient EBADF errors on access, so
217   file access that results in a bad file error is retried before the error is reported
218   to the application.
220 USER VISIBLE CHANGES BETWEEN TAO-2.3.2 and TAO-2.3.3
221 ====================================================
223 . Extended SL2 Security Manager to easily allow non-secure collocated
224   invocations but still disallow non-secure remote invocations
226 . Relaxed upper limit on POA Thread pool size.
228 . Fixed PICurrent improper reset issue. Now slot data is retained through an
229   ImR forced retry.
231 . Bugzilla #4205 fixed.
233 . Defaulted IIOP endpoints on IPv6 enabled systems will no longer append localhost
234   to the IOR if there are no routable IPv6 addresses but there are routable IPv4
235   addresses available.
237 . Improved the performance of the FT-ImR while under very heavy loads.
239 . ImR now may be built on "uses_wchar" platforms.
241 . The temporary directory used by the tao_idl preprocessor may now
242   contain spaces.
244 USER VISIBLE CHANGES BETWEEN TAO-2.3.1 and TAO-2.3.2
245 ====================================================
247 . New SSLIOP Factory option -SSLPassword <password descriptor> facilitates
248   distributing password protected private keys.
250 . New SSLIOP Factory option -SSLVersionList <list> constrains the list of
251   cypher versions allowed.
253 . New SSLIOP Factory option -SSLCheckHost enables a second layer of
254   authentication by comparing the sending hostname to the name or names in
255   the supplied certificate
257 USER VISIBLE CHANGES BETWEEN TAO-2.3.0 and TAO-2.3.1
258 ====================================================
260 . TAO is now hosted on github (https://github.com/DOCGroup/ATCD).
261   As part of the release process we now generate a ChangeLog
262   for each release which is stored in the ChangeLogs directory
264 . Fixed incorrect server status shown by tao_imr after a
265   crashed server has been given a shutdown command
267 USER VISIBLE CHANGES BETWEEN TAO-2.2.8 and TAO-2.3.0
268 ====================================================
270 . New feature added to constrain client ORBs using IIOP to only use local TCP
271   ports spanning a supplied range. Use new ORB_init parameters
272   -ORBIIOPClientPortBase <base> and -ORBIIOPClientPortSpan <count> to specify
273   a range from base to base + count. A base supplied without a span indicates
274   the client may use only a single port. A span supplied without a base is
275   silently ignored.
277 . Fixed the manual activation mode of the Implementation Repository
279 . Reintroduced the restart attempt limiting of the Implementation Repository
281 . Fix a connection leak that occurred when the server side cache purged a
282   Thread-Per-Connection managed entry.
284 USER VISIBLE CHANGES BETWEEN TAO-2.2.7 and TAO-2.2.8
285 ====================================================
287 . Address a problem with Failover between primary and backup ImplRepo locators.
288   Access state information is now shared during a server restart allowing a client
289   to request a new server from either the ImR instance.
291 USER VISIBLE CHANGES BETWEEN TAO-2.2.6 and TAO-2.2.7
292 ====================================================
294 . Improved the performance of the load balancing feature of the tao_ft_naming
295   service. Now a global load balancing strategy may be set via the command line
296   using the new -l ["random"|"round_robin"] argument. The newly implemented
297   random strategy is lockless.
299 . Fixed active server detection when switching from the primary ImR locator to
300   the backup.
302 . Added a new command for the windows NT Naming service CLI to set the service's
303   start up argv list without invoking regedit.
305 . Added a new command for the windows NT Notify service CLI to set the service's
306   start up argv list without invoking regedit.
308 USER VISIBLE CHANGES BETWEEN TAO-2.2.5 and TAO-2.2.6
309 ====================================================
311 . Fix bug with mt_noupcall that allowed upcalls while waiting for a new connection
313 . Improved the performance of dynamic thread pool when activating new threads
315 . Improved the performance of the SYNC_WITH_SERVER oneway synchronization when
316   used in conjunction with the CSD framework and POA thread pools
318 . Fix support for long double types when used with dynamic Anys
320 . Improve functionality and stability of running tests on
321   Android Virtual Device (AVD).
323 USER VISIBLE CHANGES BETWEEN TAO-2.2.4 and TAO-2.2.5
324 ====================================================
326 . Implementation Repository new features added.
327   - New tao_imr kill command to signal an otherwise unresponsive server.
328   - New tao_imr link command to identify groups of POAs that share a server.
329   - ImR is better able to avoid errantly starting multiple server instances.
331 . Added support for Embarcadero C++Builder XE5 using
332   bcc32 in debug and release mode
334 . Added support for Embarcadero C++Builder XE6 using
335   bcc32 in debug and release mode
337 USER VISIBLE CHANGES BETWEEN TAO-2.2.3 and TAO-2.2.4
338 ====================================================
340 . Added a new Client Strategy Factory option, -ORBDefaultSyncScope which
341   takes the label "None", "Transport", "Server", or "Target" to define the
342   sync scope to be used when a Messaging SyncScopePolicy is not in use.
344 . Improved recursive typecode handling
346 . Ended maintenance for Solaris 10 with Sun Studio
348 USER VISIBLE CHANGES BETWEEN TAO-2.2.2 and TAO-2.2.3
349 ====================================================
351 . Fix for extra CDR padding bytes following a request header when there are no
352   IN or INOUT arguments in the request. This happened when a request had at least
353   one OUT argument, and also had a service context that ended off a CDR alignment
354   boundary. While this is not a problem for TAO-TAO messaging, some non-TAO
355   servers will reject such requests with a MARSHAL exception. See bug 4141 for more
356   information.
358 USER VISIBLE CHANGES BETWEEN TAO-2.2.1 and TAO-2.2.2
359 ====================================================
361 . None
363 USER VISIBLE CHANGES BETWEEN TAO-2.2.0 and TAO-2.2.1
364 ====================================================
366 . Implementation Repository is better able to handle high request volume
367   particularly when registered servers are going up and down.
369 . Fixed several memory leaks in the Trading Service
371 . Added support for Embarcadero C++BuilderXE4 using
372   bcc32 in release mode
374 USER VISIBLE CHANGES BETWEEN TAO-2.1.9 and TAO-2.2.0
375 ====================================================
377 . Feature enhancement for the Implementation Repository, the command to
378   list currently active servers, confirmed with a ping, is now asynchronous
379   along with the rest of the implementation.
381 . Added the new -ORBListenerInterface UIPMC option to provide detailed control
382   over which IP interfaces are to be listened on for which mutlicast addresses.
383   This works in a similar way to the existing -ORBPreferredInterfaces
384   ORB_init command line option but for UDP server listeners instead of client
385   senders. See the TAO_UIPMC_Protocol_Factory section in the
386   docs/release/TAO/Options.html document for details. This option allows
387   UIPMC/MIOP to control which interfaces are used by the server to listen
388   for broadcast messages instead of only using the "default" interface.
390   If TAO is built with the #define TAO_ALLOW_UNICAST_MIOP in effect, the
391   normal error checking on joins is short circuited, such that MIOP can
392   be used to send to a unicast address instead of a broadcast group. In general
393   I would not recommend building TAO with this option set, end users should
394   concider using the DIOP protocol instead.
396 . Fix for long standing Valuetype non-conformance (Bugzilla_1391):
398   tao_idl generated ValueType OBV_* classes now also provide a
399   _copy_value() method where this class is supposed to be the final
400   "most derived" class. It is still left to the end user to provide
401   such a method in their own most derived class when this is not
402   the case (as only the final implimentation of the Valuetype will
403   know how this duplication is performed).
405   TAO can be built specifically to treat _copy_value() as a pure virtual
406   function (as per the standard, and now the default behaviour) or,
407   if #define TAO_VALUETYPE_COPY_VALUE_IS_NOT_PURE is defined during the
408   building of TAO, a non-pure virtual function (in which TAO does not
409   require an implimentation to provide the _copy_value() function as per
410   the previous TAO implimentations).
412   TAO doesn't normally use the _copy_value() fuction itself, but if
413   #define TAO_VALUETYPE_COPYING_ANY_INSERTION_USES_COPY_VALUE
414   is in effect during the build, valuetypes "copy" inserted into an any
415   will call _copy_value() instead of increasing the reference count of the
416   actual valuetype being "copied". In such cases obviosuly the _copy_value()
417   method is required to be implemented. There are problems taking this
418   general approach however, as the automatically generated _copy_value() is
419   not capable of duplicating cyclic graphs held in valuetypes, which
420   realistially require the reference counting insertions to be utalised
421   and/or knowledge of the actual use of the valuetype itself. This setting
422   is not recommended.
424 USER VISIBLE CHANGES BETWEEN TAO-2.1.8 and TAO-2.1.9
425 ====================================================
427 . High performance implementation Repository [#4104] - The Implementation
428   Repository Locator has been reimplemented using AMI/AMH to avoid the
429   problem of nested upcalls under heavy load.
431 USER VISIBLE CHANGES BETWEEN TAO-2.1.7 and TAO-2.1.8
432 ====================================================
434 . Fault Tolerant Implementation Repository [#4091] - The Implementation
435   Repository Locator now supports a dual-redundant fault tolerant
436   configuration which provides replication and seamless failover between
437   the primary and backup locator servers.
439 . Implementation Repository interoperable with JacORB servers [#4101] -
440   The Implementation Repository can now be used to manage JacORB
441   3.3 or later application servers.
443 . Fault Tolerant Naming Service [#4092 & #4095] - A new Fault Tolerant
444   Naming Service (tao_ft_naming), provides dual-redundant fault tolerant
445   servers which utilize replication and seamless failover between the
446   primary and backup server. The Fault Tolerant Naming Service can be
447   used to provide load balancing capabilities (only the round-robin load
448   balancing strategy is currently supported) through the use object groups.
449   This feature is supported by a separate utility for managing the object
450   groups (tao_nsgroup) as well as a programatic interface via IDL.
452 . Configurable Persistence Mechanism [#4092] - Extracted persistence
453   mechanism used for storable naming context into Storable_* classes so
454   that it can be reused. Simplified use of storable read/write so that
455   it behaves more like C++ streams to read/write binary and CDR data.
456   Added support for creating a backup mechanism to accomodate
457   potentially corrupted files.  Providing configurable hooks so
458   applications can decide if files are obsolete and need to be written
459   to the persistence store.
461 . ORB Dynamic Thread Pool [#4093] - Added a new ORB thread pool strategy
462   to dynamically adjust the number of threads which the ORB uses to
463   service received calls based on several configuration parameters.
464   These parameters include initial threads, minimum pool threads,
465   maximum pool threads, request queue depth, thread stack size, and
466   thread idle time.
468 . POA Dynamic Thread Pool [#4094] - A new Dynamic Thread Pool and
469   Queuing strategy was created for POA usage. It leverages the
470   existing Custom Servant Dispatching framework for invocation and
471   activation. The strategy also dynamically adjusts the number of
472   threads using configuration parameters similar to the ORB Dynamic
473   Thread Pool. The Dynamic Thread Pool POA Strategy supports
474   applications in associating a single thread pool with either
475   1) a single POA in a dedicated configuration, or 2) multiple
476   POAs in a shared configuration.  The strategy controls a request
477   queue used to accept calls directed to an associated servant and
478   a pool of threads that wait to service calls coming in on a
479   particular queue.
481 . Multiple Invocation Retry [#4096] - Extended TAO to support multiple
482   retry in the presence of COMM_FAILURE, TRANSIENT, OBJECT_NOT_EXIST,
483   and INV_OBJREF exceptions. In addition, retries can occur if it has
484   been detected that a connection has closed while waiting for a reply
485   (currently not available under FreeBSD, OpenVMS, AIX, and Solaris). This
486   feature can be used to support fault tolerant services (specifically
487   the Fault Tolerant Naming and Implementation Repository services
488   described earlier).  The invocation retry support allows
489   configuration on how many times to try to connect to each server and
490   the delay between tries.
492 . Added MIOP configuration options -ORBSendThrottling and -ORBEagerDequeueing,
493   along with #define overrides for their default settings. See the descriptions
494   in the MIOP section of doc/Options.html for their use.
496 USER VISIBLE CHANGES BETWEEN TAO-2.1.6 and TAO-2.1.7
497 ====================================================
499 . Integrated several patches to simplify Debian/Ubuntu
500   packaging
502 . Fixed IDL compiler bug related to internal reinitialization
503   when processing multiple IDL files in a single execution.
505 USER VISIBLE CHANGES BETWEEN TAO-2.1.5 and TAO-2.1.6
506 ====================================================
508 . We only try to load the ObjRefTemplate library at POA
509   creation instead of trying to load it at each servant
510   activation
512 USER VISIBLE CHANGES BETWEEN TAO-2.1.4 and TAO-2.1.5
513 ====================================================
515 . None
517 USER VISIBLE CHANGES BETWEEN TAO-2.1.3 and TAO-2.1.4
518 ====================================================
520 . CORBA::string_dup() and CORBA::string_free() have been enhanced to use
521   non-allocated and shared static null strings. This allows for optimized
522   default null string initialization in CORBA string members and a
523   reduction in redundant dynamic memory management required for such.
524   This enhancement can be removed via the config.h by including
525     #define TAO_NO_SHARED_NULL_CORBA_STRING
527   NOTE that it is a (CORBA spec) requirement that all CORBA::strings are
528   deleted via the CORBA::string_free() and allocated via the
529   CORBA::string_dup() or CORBA::string_alloc() calls; you must not use
530   the c++ keywords new and delete[] directly. Previously it was possiable
531   to ignore this requirement, however if you do so now, this enhancement
532   for null strings will catch you out, as deleting these null
533   CORBA::strings will cause corrupt heap and/or segfaults.
535 . Add support for -ORBPreferredInterfaces option to UIPMC. The form follows
536   the same pattern as IIOP for IPv4 i.e. a local interface IP address should
537   be specified as the mapping. e.g. -ORBPreferredInterfaces 225.*=192.168.0.2.
538   For IPv6 the preferred interface should (neccessarily) be set as an interface
539   name (e.g. 'eth0' for linux, or 'Loopback Pseudo-Interface' on windows) or an
540   interface index number on windows. e.g. -ORBPreferredInterfaces FF01:*=eth0.
541   Also add support an -ORBListenOnAll 0|1 UIPMCFactory option that can
542   be specified in the svc.conf to make the acceptor listen on all multicast
543   enabled interfaces on platforms that this is not the default. This has been
544   observed to be required for the UIPMCAcceptor to open on the most recent
545   Linux distribs.
547   NOTE that there is an obvious elephant in the room in testing this option,
548   we can't rely on any build/test machine having more than one (or any?)
549   interfaces so the test (TAO/orbsvcs/tests/Miop/McastPreferredInterfaces),
550   such as it is, is relying on side effects which may not hold for all platforms.
551   Additionally the IPv6 behaviour isn't even consistent across platforms and
552   the build machines can't be relied upon to have a 'proper' (non-zero conf
553   link local) IPv6 configuration. Basically, if you want some confidence this is
554   actually working I'd advise testing this option before you use it, running it
555   on a machine with multiple interfaces with the debug level turned up.
557 . Enhanced the MIOP implementation; this protocol now supports MIOP message
558   fragmentation which is controlled via the new MIOP_Strategy_Factory.
559   For details see the MIOP_Strategy_Factory section in the docs/Options.html
560   document included with this distribution.
562 USER VISIBLE CHANGES BETWEEN TAO-2.1.2 and TAO-2.1.3
563 ====================================================
565 . Added OpenSSL configuration options SSLCipherList and
566   SSLServerCipherOrder to SSLIOP_Factory.  Allows SSL/TLS BEAST
567   exploit to be mitigated.
569 USER VISIBLE CHANGES BETWEEN TAO-2.1.1 and TAO-2.1.2
570 ====================================================
572 . Changed behavior of Receive-Wait client wait strategy with
573   ORBConnectionHandlerCleanup after oneway calls to register with
574   the reactor after the call to clean up after connection closure.
576 . Added an extension of the CosNotifyFilter::FilterFactory to
577   allow removal of filters created by the factory.  The extension
578   also has accessors for existing filters and ids.
580 USER VISIBLE CHANGES BETWEEN TAO-2.1.0 and TAO-2.1.1
581 ====================================================
583 . Correct ZIOP compression arbitration on the server reply
584   path. The server now responds with one of the clients
585   exposed compressors that the server also supports
586   according to the ZIOP specification.
588 . Enhanced the plugable transports such that the
589   send_message() api now provides an optional TAO_ServerRequest
590   object pointer to provide access to any client side
591   policies that are broadcast with each request. This enabled
592   the ZIOP compression correction to be coded.
594 USER VISIBLE CHANGES BETWEEN TAO-2.0.8 and TAO-2.1.0
595 ====================================================
597 . Added new rle compressor and enabled ZIOP by default
599 . Implimented DynValue, DynValueBox and DynValueCommon and their
600   creation/use by TAO_DynAnyFactory::
601     create_dyn_any (), create_dyn_any_from_type_code (),
602     create_dyn_any_without_truncation (), create_multiple_dyn_anys ()
603     and create_multiple_anys ().
605 . Correct the interaction of CORBA::ValueTypes and CORBA::Anys.
606     The insertion into an Any of a ValueType base pointer
607     used to set the Anys typecode to the fully derived valuetype.
608     This allowed the any to be marshaled correctly sending the
609     derived typecode and value over the wire. However it also
610     stopped the user from extracting the valuetype from the any
611     as the typecode for, or the actual pointer type being used for,
612     the extraction couldn't match the any's internal two different
613     types. The any's typecode is now simply set to match the base
614     pointer which allows for the correct insertion/extraction from
615     the any, whilst the marshalling code for anys containing
616     valuetypes now sends the fully derived typecode of the fully
617     derived data it is marshalling instead of the anys embedded
618     (possiably base valuetype) typecode.
620 USER VISIBLE CHANGES BETWEEN TAO-2.0.7 and TAO-2.0.8
621 ====================================================
623 . Added support for MPC's new feature that creates dependency files for IDL
624   files when generating '-type gnuace' projects. Turned off by default, it
625   can be enabled in a features file or on the command line with
626   '-features ace_idl_dependencies=1'.
628 . Fixed IDL compiler bug where a generated component servant method that
629   is called by the middleware to initialize a component's attributes
630   was not including attributes of supported interfaces.
632 USER VISIBLE CHANGES BETWEEN TAO-2.0.6 and TAO-2.0.7
633 ====================================================
635 . Added Time_Policy_Manager, a TIME_POLICY strategy manager configurable
636   through the service configurator framework.
637   This allows the dynamic configuration of the TIME_POLICY strategy used for
638   ORB timers and countdowns. TAO includes two default TIME_POLICY strategies as
639   statically linked service objects; TAO_System_Time_Policy_Strategy and
640   TAO_HR_Time_Policy_Strategy (the first being used as default strategy).
641   The docs/Options.html file describes the configuration options in detail.
642   Two new tests have been added exemplifying these new options; tests/Time_Policy
643   and tests/Time_Policy_Custom.
644   Furthermore two new compile time option macros have been added related to
645   TIME_POLICY strategies:
646   - TAO_USE_HR_TIME_POLICY_STRATEGY if defined will force the use of the new
647     TAO_HR_Time_Policy_Strategy as default time strategy instead of
648     TAO_System_Time_Policy_Strategy;
649   - TAO_HAS_TIME_POLICY if explicitly defined as 0 ('#define TAO_HAS_TIME_POLICY 0')
650     will build TAO without the new TIME_POLICY strategy support.
652 USER VISIBLE CHANGES BETWEEN TAO-2.0.5 and TAO-2.0.6
653 ====================================================
655 . Added new define TAO_DEFAULT_COLLOCATION_STRATEGY (default = thru_poa)
656   which is used as -ORBCollocationStrategy isn't specified.
658 . Added new -ORBCollocationStrategy best. TAO tries to perform the best
659   possible collocation, first direct if possible, then through_poa if possible
660   else no collocation.
662 . Enhanced the RW -ORBWaitStrategy and the EXCLUSIVE -ORBTransportMuxStrategy
663   to also work with AMI requests.
665 . mt_noupcall has been improved and generically speaking the handling of client
666   leader threads in LF has been improved and fixed of potential deadlock
667   situations
669 . The TAO skeletons got refactored to reduced footprint, a footprint saving
670   for the skeletons between 10 and 60% has been achieved. For the full
671   distribution including CIAO, DAnCE, OpenDDS, and DDS4CCM using RTI DDS this
672   resulted in a reduction of 650,000 lines of code. Also the S.inl files are
673   not generated anymore
675 USER VISIBLE CHANGES BETWEEN TAO-2.0.4 and TAO-2.0.5
676 ====================================================
678 . Updated several TAO tests for automatic testing on Android
680 USER VISIBLE CHANGES BETWEEN TAO-2.0.3 and TAO-2.0.4
681 ====================================================
683 . Added new IFR_Client_skel library that is now used by the IFR_Service
685 . Moved TAO_IDL generation of argument traits from the stub and
686   skeleton .cpp files to the corresponding .h files.
688 USER VISIBLE CHANGES BETWEEN TAO-2.0.2 and TAO-2.0.3
689 ====================================================
691 . Improved support for mt_noupcall but this is still not optimal due to a 2ms
692   wait delay
694 . Addressed several Coverity reported issues
696 USER VISIBLE CHANGES BETWEEN TAO-2.0.1 and TAO-2.0.2
697 ====================================================
699 . Remove support for already deprecated -ORBConnectionCachingStrategy
701 . Removed -ORBObjectKeyTableLock and -ORBPOALock, very risk options and this
702   way the regular invocation path can be optimized much more
704 . Improved support for mt_noupcall wait strategy. Upcall detection has been
705   improved and the transport is polled each 2ms to see if we can do the
706   upcall.
708 . Improved performance of the Parallel Connect Strategy in TAO.
710 . tao_catior does a better job with JacORB generated IORs.
712 . tao_cosnaming can now be multithreaded.
714 USER VISIBLE CHANGES BETWEEN TAO-2.0.0 and TAO-2.0.1
715 ====================================================
717 . Fixed IDL compiler bug that caused illegal references to items
718   in the scope of a template module to be overlooked.
720 USER VISIBLE CHANGES BETWEEN TAO-1.8.3 and TAO-2.0.0
721 ====================================================
723 . Improved support for abstract
725 USER VISIBLE CHANGES BETWEEN TAO-1.8.2 and TAO-1.8.3
726 ====================================================
728 . TAO IDL compiler now generates attribute members for generated CCM
729   executor implementation classes, as well as full implementations for
730   the associated set/get operations.
732 . Add TAO IDL compiler command line option -iC, which overrides the
733   default include path (current directory or $TAO_ROOT/tao) for
734   *C.h files included in generated *A.h files.
736 . Removed autoconf support for TAO, it is really not tested, unstable, and
737   unmaintainable at this moment
739 . The TAO IDL compiler now gives the following error when anonymous
740   types are used: 'anonymous types are deprecated by OMG spec'.
741   One can changes this error into a warning. There's also a possibility
742   to silence the TAO IDL compiler about this message. One of the following
743   defines can be added to your config.h file in order to change the behavior
744   of the TAO IDL compiler:
745   * IDL_ANON_ERROR:   The TAO IDL generates an error when it encounters
746                       an anonymous type (default behavior).
747   * IDL_ANON_WARNING: The TAO IDL generates a warning when it encounters
748                       an anonymous type.
749   * ANON_TYPE_SILENT: The TAO IDL doesn't generate a warning nor an error
750                       when it encounters an anonymous type.
752 . Renamed ALL ORB services executables. This because of
753   the fact that the TAO ORB services should be recognizable
754   between the ORB services of other CORBA vendors. There are
755   systems where ORB services of several CORBA vendors are
756   installed (mainly via the installed packages). The following
757   rename actions have been taken place:
758   * 'LifeCycle_Service'       to 'tao_coslifecycle'
759   * 'Dump_Schedule'           to 'tao_dump_schedule'
760   * 'NT_Notify_Service'       to 'tao_nt_cosnotification'
761   * 'Notify_Service'          to 'tao_cosnotification'
762   * 'FT_ReplicationManager'   to 'tao_ft_replicationmanager'
763   * 'IFR_Service'             to 'tao_ifr_service'
764   * 'TAO_Service'             to 'tao_service'
765   * 'Fault_Detector'          to 'tao_fault_detector'
766   * 'Scheduling_Service'      to 'tao_cosscheduling'
767   * 'Basic_Logging_Service'   to 'tao_tls_basic'
768   * 'Notify_Logging_Service'  to 'tao_tls_notify'
769   * 'Event_Logging_Service'   to 'tao_tls_event'
770   * 'RTEvent_Logging_Service' to 'tao_tls_rtevent'
771   * 'Naming_Service'          to 'tao_cosnaming'
772   * 'NT_Naming_Service'       to 'tao_nt_cosnaming'
773   * 'CosEvent_Service'        to 'tao_cosevent'
774   * 'Event_Service'           to 'tao_rtevent'
775   * 'LoadManager'             to 'tao_loadmanager'
776   * 'LoadMonitor'             to 'tao_loadmonitor'
777   * 'Trading_Service'         to 'tao_costrading'
778   * 'Time_Service_Server'     to 'tao_costime_server'
779   * 'Time_Service_Clerk'      to 'tao_costime_clerk'
780   * 'ImplRepo_Service'        to 'tao_imr_locator'
781   * 'ImR_Activator'           to 'tao_imr_activator'
782   * 'Fault_Notifier'          to 'tao_fault_notifier'
783   * 'Concurrency_Service'     to 'tao_cosconcurrency'
785 . Fixed several bugs related to recursive typecodes
787 USER VISIBLE CHANGES BETWEEN TAO-1.8.1 and TAO-1.8.2
788 ====================================================
790 . Extended logging related to the POA active object map
792 USER VISIBLE CHANGES BETWEEN TAO-1.8.0 and TAO-1.8.1
793 ====================================================
795 . IDL compiler
797   - Added code generation for an empty implementation of
798     the reply handler interface generated as part of an
799     AMI4CCM connector, triggered by the same option, -Gex,
800     that generates a similar implementation for a
801     component executor.
803   - Added flags that can be defined in config.h to output
804     an error or warning if an anonymous IDL construct is
805     seen by the IDL compiler. Also added IDL compiler
806     options to do the same (or override a global flag)
807     for individual IDL files.
809 USER VISIBLE CHANGES BETWEEN TAO-1.7.9 and TAO-1.8.0
810 ====================================================
812 . Added minimal exploratory support for alternate IDL->C++
813   mapping: IDL string->std::string and IDL sequence->std:vectors.
814   We are talking with sponsors to see if we can raise funds
815   to make a full new IDL to C++ mapping proposal that uses
816   all new C++0x features
818 . Fixed bugzilla #3853.
820 . Improved the speed of tao_idl when processing
821   large input files with many module re-openings.
823 . Removed MCPP support from TAO_IDL.
825 . Extended support for CIAO DDS4CCM and AMI4CCM in TAO_IDL
827 USER VISIBLE CHANGES BETWEEN TAO-1.7.8 and TAO-1.7.9
828 ====================================================
830 . TAO's default makefiles (traditional ACE/GNU, not autoconf/automake)
831   now support installation with "make install".
832   Please see the ACE-INSTALL.html file for instructions.
834 . Refactored several parts of TAO_IDL
836 USER VISIBLE CHANGES BETWEEN TAO-1.7.7 and TAO-1.7.8
837 ====================================================
839 . Added -ORBHandleLoggingStrategyEvents option. Given
840   that ORB is run in user application this option allows
841   to easily add log file rotation.
843 . Added a new option -ORBIgnoreDefaultSvcConfFile.
844   This allows TAO to ignore only svc.conf file while
845   processing normally other user provided configuration
846   files or directives.
848 USER VISIBLE CHANGES BETWEEN TAO-1.7.6 and TAO-1.7.7
849 ====================================================
851 . Add IDL3+ support to TAO_IDL
853 . Cleanup in TAO_IDL. Part of this cleanup closes
854   (Bugzilla 2200).
856 USER VISIBLE CHANGES BETWEEN TAO-1.7.5 and TAO-1.7.6
857 ====================================================
859 . Added support for iPhone/iPod Touch/iPad. The following
860   environment variables are needed:
862   IPHONE_TARGET, should be set to either SIMULATOR or
863   HARDWARE. Set to HARDWARE if you want to deploy
864   on the iPhone/iPod Touch/iPad device.
866   IPHONE_VERSION, should be set to 3.1.2 or 3.2. One can
867   set the version to any future or past versions, but
868   only 3.1.2 and 3.2 have been tried.
870   Note that one has to compile ACE/TAO statically as
871   it is believed that the iPhone OS does not support
872   dynamic loading of external libraries. The usual
873   procedure of cross compiling ACE/TAO applies
874   (such as setting HOST_ROOT environment variable).
876 . Added support for IDL template modules in the IDL
877   compiler front end. This is partly tested, some
878   parts do work, some not yet
880 . Fixed bug in optional ostream operator generation
881   for IDL arrays.
883 . Added member validation feature to LoadBalancer.
885 . Add support for valuetype repository id and value
886   on both input and output streams.
888 . Added support for Embarcadero C++ Builder 2010
890 . Added method TAO_Leader_Follower::set_new_leader_generator().
892 . Fixed missing request id in logging of LocateRequest/LocateReply &
893   CancelRequest.
895 . Fixed problems with ORB shutdown in combination with active
896   requests.
898 USER VISIBLE CHANGES BETWEEN TAO-1.7.4 and TAO-1.7.5
899 ====================================================
901 . Converted a lot of TAO tests to use the new test framework
903 . Fix problem in the IDL compiler where set/get methods for
904   attributes in a local interface derived from a non local interface
905   where not regenerated as pure virtual
907 . Fixed some bugs concerning spaces within roots, to allow TAO_IDL
908   to be used by user projects that are installed on windows paths
909   such as "c:\Project Files\..." or "c:\Documents and Settings\.."
910   etc.
912 . The IDL3+ keywords porttype/port/mirrorport are now fully
913   implemented and tested
915 . Fixed bug in code generation for components, where a derived
916   component or home with more than one generation of ancestors
917   was missing inherited operations in its operation table
919 . Merged in changes from OCI's distribution which originate from
920   OCI request ticket [RT 13596, RT 13704].
922   - Added queue-overflow statistics to the Notification Service MC.
923   - Modified Notification Service MC to work in static builds.
924   - Corrected an error that caused Notification Service MC statistics
925     to fail when -AllocateTaskPerProxy is used.
926   - QueueDepth have been changed to measure the number of entries
927     rather than attempting unsuccessfully to estimate the amount of
928     memory used by the queue.
929   - Added TAO_EXPLICIT_NEGOTIATE_CODESETS macro to improve the ease
930     of including optional codeset support to Notify_Service in static
931     builds.
932   - Added new MPC features (notify_monitor_control and
933     negotiate_codesets).
934   - fixed ACE_Logging_Stragey service loading issue in static builds.
936 USER VISIBLE CHANGES BETWEEN TAO-1.7.3 and TAO-1.7.4
937 ====================================================
939 . Initial support for IDL3+ in the TAO_IDL compiler front end.
940   IDL3+ is an extension to IDL3 driven by the DDS4CCM draft
941   standard. IDL3+ adds a porttype which is a logical grouping
942   of CCM ports and a concept of templates (like C++)
944 . Changed behaviour of -Glem and -Glfa
946 . Ported a large set of TAO tests to the new test framework
948 . Added a capability to throw BAD_PARAM exception in case
949   there is an attempt to access sequence elements above
950   sequence length. By default this capability is turned on
951   in debug builds with defining TAO_CHECKED_SEQUENCE_INDEXING.
952   BAD_PARAM exception is also thrown in case a new sequence
953   length for bounded sequence is greater than the bound
954   defined in IDL.
956 USER VISIBLE CHANGES BETWEEN TAO-1.7.2 and TAO-1.7.3
957 ====================================================
959 . Merged in changes from OCI's distribution which
960   originate from OCI request ticket [RT 12994]. Added
961   following ORB options.
963     -ORBForwardOnceOnObjectNotExist [0|1]
964     -ORBForwardOnceOnCommFailure [0|1]
965     -ORBForwardOnceOnTransient [0|1]
966     -ORBForwardOnceOnInvObjref [0|1]
968   The -ORBForwardOnceOnObjectNotExist ORB option is added
969   to avoid side effect from
970   -ORBForwardInvocationOnObjectNotExist that could cause
971   the request fall into forward loop in some use cases
972   (e.g. client sends request while servant is deactivated).
973   The other options are added for the same purpose to avoid
974   possible forward loop upon specified exceptions.
976 . Corrected TAO_IDL dds code generation to count WChar size for wstring
977   marshal size.
979 USER VISIBLE CHANGES BETWEEN TAO-1.7.1 and TAO-1.7.2
980 ====================================================
982 . Extended IDL compiler to take over all code generation from
983   the CIAO CIDL compiler, which has been eliminated.
984   See $TAO_ROOT/docs/compiler.html for details.
986 . Added code generation for export header files. See
987   $TAO_ROOT/docs/compiler.html for details.
989 USER VISIBLE CHANGES BETWEEN TAO-1.7.0 and TAO-1.7.1
990 ====================================================
992 . Improved Unicode compatibility.
994 . Improved service configuration processing.
996 USER VISIBLE CHANGES BETWEEN TAO-1.6.9 and TAO-1.7.0
997 ====================================================
999 . Merged in changes from OCI's distribution which originate from
1000   OCI request ticket [RT 12912]. In their totality, the changes
1001   added new features for IMR to support the capability of client
1002   automatically reconnects servers within same port range upon
1003   server restart. The ServerId is added to ServerInfo in IMR to
1004   help identify server process. The -UnregisterIfAddressReused
1005   option is added to IMR to enable the address reuse checking
1006   upon server registering. The servers that address is reused
1007   are unregistered from IMR. The -ORBForwardInvocationOnObjectNotExist
1008   option is added to forward request to next available profile
1009   upon receiving OBJECT_NOT_EXIST exception reply.
1011 . The -ORBRunThreads of the notification service has been renamed
1012   to -RunThreads and the notification service can now be loaded
1013   as dll.
1015 . Updated ZIOP to match the OMG Beta 2 specification
1017 . Added a new utility, tao_logWalker, see utils/logWalker for details.
1018   This tool analises a collection of log files containing output of
1019   TAO running with -ORBDebuglevel 10, and generates a report showing
1020   process, thread and invocation summaries.
1022 . Fixed bug in Notification Service that the filter constraint expressions
1023   are ignored when event type domain_name or type_name is specified
1024   (see bug 3688).
1026 . The MCPP version optionally used by TAO_IDL has been updated to 2.7.2.
1027   Efforts have been taken to port this to as many platforms as possible,
1028   however, since it is not currently the default configuration it may
1029   not work across all platforms.
1031 USER VISIBLE CHANGES BETWEEN TAO-1.6.8 and TAO-1.6.9
1032 ====================================================
1034 . Reply Dispatchers are refactored. No deadlock occurs when an
1035   (a)synchronous CORBA call is made during dispatching a reply.
1037 . Fixed IDL compiler bug that in some cases caused code generation for
1038   inherited operations to be skipped.
1040 . The Transport Cache Size maximum is now a hard maximum.
1042 . Fixed several bugs related to the purging of transports when the cache
1043   is almost full.
1045 . New TAO-specific feature of Notification service improves management
1046   of proxies when peer goes away without disconnecting from proxy.  See
1047   orbsvcs/Notify_Service/README for details in the svc.conf section.
1049 . Improved Notification topology persistence, now persists filters.
1051 . Updated ZIOP to match the beta 1 OMG specification.
1053 USER VISIBLE CHANGES BETWEEN TAO-1.6.7 and TAO-1.6.8
1054 ====================================================
1056 . Fixed race condition when multiple threads make a connection to the
1057   same server (bugzilla 3543)
1059 . Updated several tests to the new test framework
1061 . Fixed several memory leaks and make sure the TAO singletons are
1062   destructed when the TAO DLL gets unloaded
1064 . Improved WinCE unicode support and extended the number of tests that
1065   can be run with WinCE
1067 . Fixed some race conditions in the transport cache. There are several
1068   known issues resolved in the transport cache when it starts purging.
1070 . Fixed memory leak in string and object reference sequences.
1072 . Bugs fixed: 3078, 3499, 3524, 3543, 3549, 3557, 3559.
1075 USER VISIBLE CHANGES BETWEEN TAO-1.6.6 and TAO-1.6.7
1076 ====================================================
1078 . Added a fix for bug 2415.  Added -DefaultConsumerAdminFilterOp and
1079   -DefaultSupplierAdminFilterOp TAO_CosNotify_Service options for setting
1080   the default filter operators.
1082 . The full TAO distribution compiles with unicode enabled. Work is ongoing
1083   to make the TAO runtime results comparable with the ascii builds.
1085 . Added two new ORB parameters, -ORBIPHopLimit and -ORBIPMulticastLoop. The
1086   first one controls number of hops an IPv4/IPv6 packet can outlive. The
1087   second one is related to MIOP only and it takes boolean value which
1088   directs whether to loop multicast packets to the originating host or not.
1090 . Added the "TAO" and "TAO/orbsvcs" OCI Development Guide Examples under the
1091   directories /DevGuideExamples and /orbsvcs/DevGuideExamples.  NOTE this is
1092   an ongoing port of the original version x.5.x examples and some are not yet
1093   100% compatiable with the current version of TAO.
1095 . Split CosLifeCycle library into separate client stub and server
1096   skeleton libraries.  Fixes bugzilla issue #2409.
1098 . Split CosTime library into separate client stub, server skeleton,
1099   and server implementation libraries.  Fixes bugzilla issue #3433.
1101 . Avoid core dumps when evaluating TCL and ETCL expressions containing
1102   divisions by zero.  Partial fix for bugzilla issue #3429.
1104 USER VISIBLE CHANGES BETWEEN TAO-1.6.5 and TAO-1.6.6
1105 ====================================================
1107 . Added a new text based monitor to the Notify_Service to keep track of
1108   consumers that were removed due to a timeout.
1110 . Repaired the -ORBMuxedConnectionMax <limit> option on the resource factory.
1111   This service configurator option defines an upper limit to the number of
1112   connections an orb will open to the same endpoint.
1114 . Repaired a problem that caused the ORB to open too many connections to
1115   an endpoint.
1117 . Added a -Timeout option to the Notify_Service to allow the user to apply a
1118   relative round-trip timeout to the ORB.  This option requires that the
1119   'corba_messaging' MPC feature be enabled during building of the
1120   Notify_Service, which it is by default.
1122 . Added ZIOP support to TAO. ZIOP adds the ability to compress the
1123   application data on the wire. This is a join effort of Remedy IT, Telefonica,
1124   and IONA. We are working on getting this standardized through the OMG.
1125   Until this has been formally standardized we don't guarantee
1126   interoperability with other ORBs and between different versions of
1127   TAO that support ZIOP, this is done after this has been accepted
1128   by the OMG. If you want to experiment with ZIOP you need to add
1129   TAO_HAS_ZIOP 1 as define to your config.h file. See TAO/tests/ZIOP
1130   for an example how to use it. All policies are not checked on all
1131   places so it can happen that the ORB sends uncompressed data when
1132   it could have compressed it. This is because of limitations in the
1133   policy mechanism in the ORB which will take a few weeks to rework.
1134   Also note that ZIOP doesn't work together with RTCORBA
1136 . Added a -m option to the ImplRepo (ImR, Implementation Repository) Activator,
1137   which specifies the maximum number of environment variables which will be
1138   passed to the child process.  The default (and previous behavior) is 512.
1140 USER VISIBLE CHANGES BETWEEN TAO-1.6.4 and TAO-1.6.5
1141 ====================================================
1143 . Updated TAO to comply with the IDL to C++ mapping v1.2. As a result
1144   CORBA::LocalObject is now refcounted by default
1146 . Added a new ORB parameter, -ORBAcceptErrorDelay, that controls the amount
1147   of time to wait before attempting to accept new connections when a
1148   possibly transient error occurs during accepting a new connection.
1150 . Fixed a bug which could lead to an ACE_ASSERT at runtime when a TAO
1151   is used from a thread that is not spawned using ACE
1153 . Added new Monitoring lib that can be used to retrieve values from
1154   the new Monitoring framework in ACE. This is disabled by default
1155   because it is not 100% finished yet, with the next release it
1156   will be enabled by default
1158 . Extended the -ORBLaneListenEndpoints commandline option to support
1159   *, for details see docs/Options.html
1161 . VxWorks 6.x kernel mode with shared library support
1163 USER VISIBLE CHANGES BETWEEN TAO-1.6.3 and TAO-1.6.4
1164 ====================================================
1166 . Service Context Handling has been made pluggable
1168 . Improved CORBA/e support and as result the footprint decreased when
1169   CORBA/e has been enabled
1171 . Added the ability to remove consumer and supplier proxies and consumer and
1172   supplier admins through the Notify Monitor and Control interface.
1174 . Changed Interface Repository's IOR output file from being
1175   world writable to using ACE_DEFAULT_FILE_PERMS.
1177 . Add support for a location forward with a nil object reference.
1179 USER VISIBLE CHANGES BETWEEN TAO-1.6.2 and TAO-1.6.3
1180 ====================================================
1182 . Fixed send side logic (both synchronous and asynchronous) to honor
1183   timeouts. An RTT enabled two-way invocation could earlier hang
1184   indefinately if tcp buffers were flooded.
1186 . Bug fix for cases where the IDL compiler would abort but with an
1187   exit value of 0.
1189 . Bug fix in IDL compiler's handling of typedef'd constants having
1190   a bitwise integer expression as the value.
1192 . Bug fix that ensures valuetypes and their corresponding supported
1193   interfaces have parallel inheritance hierarchies.
1195 . Fix for possible out-of-order destruction of Unknown_IDL_Type's
1196   static local lock object (bugzilla 3214).
1198 . Added list() iterator functionality for the Naming Service when
1199   using the -u persistence option.
1201 . Various bug fixes to the IFR service and compiler.
1203 . New option (-T) to IFR compiler that permits duplicate typedefs with
1204   warning.  Although not encouraged, this allows IDL that used to pass
1205   through the IFR compiler to still pass through rather than having to
1206   be changed.
1208 . Fix crashing of _validate_connection on an invalid object reference
1210 . Add support for TAO on VxWorks 5.5.1
1212 . _get_implementation has been removed from CORBA::Object, it was
1213   deprecated in CORBA 2.2
1215 . Improved CORBA/e support
1217 . Fixed SSLIOP memory leaks
1219 USER VISIBLE CHANGES BETWEEN TAO-1.6.1 and TAO-1.6.2
1220 ====================================================
1222 . Added support for handling Location Forward exceptions caught when using
1223   AMI with DSI. These exceptions may also be raised from within DSI servants
1224   using AMH.
1226 . Added -RTORBDynamicThreadRunTime which controls the lifetime of dynamic
1227   RTCORBA threads
1229 . Changed the PI code so that send_request is also called at the moment
1230   we don't have a transport (bugzilla 2133)
1232 . Fixed memory leak that occured for each thread that was making CORBA
1233   invocations
1235 . Updated several tests to work correctly on VxWorks
1237 . Removed support for pluggable messaging. As a result the code in the
1238   core of TAO is much cleaner and we are about 5 to 10% faster
1240 . Improved CORBA/e support
1242 . Added gperf's exit code to the error message output if it exits
1243   unsuccessfully when spawned by the IDL compiler to generate an
1244   interface's operation table
1246 . Fixed bug in Interface Repository's handling of base valuetypes
1247   and base components (Bugzilla 3155)
1249 . Fixed code generation bug that occurs when there is both a C++
1250   keyword clash in the IDL and AMI 'implied IDL' code generation
1252 . Fixed IDL compiler bug wherein some cases of illegal use of a
1253   forward declared struct or union wasn't caught
1255 . Improved support for VxWorks 6.4 kernel and rtp mode
1257 USER VISIBLE CHANGES BETWEEN TAO-1.6 and TAO-1.6.1
1258 ====================================================
1260 . Made TAO more compliant to CORBA/e micro
1262 . Fixed invalid code generation by the IDL compiler when the options -Sa -St
1263   and -GA are combined
1265 USER VISIBLE CHANGES BETWEEN TAO-1.5.10 and TAO-1.6
1266 =====================================================
1268 . Added a new interface that allows monitoring of activities within the
1269   Notification Service.  Completely configurable through the Service
1270   Configurator, the monitoring capabilities are only in effect when chosen
1271   by the user.  When the monitoring capabilities are enabled, an outside
1272   user can connect to a service that allows querying statistics gathered by
1273   the Notification Service.
1275 . Moved the BufferingConstraintPolicy to the Messaging lib
1277 . Made it possible to disable not needed IOR parsers to reduce footprint
1279 . Reworked several files to get a smaller footprint with CORBA/e and
1280   Minimum CORBA. This could lead to a reduction of more then 20% then
1281   with previous releases
1283 . Removed the Domain library, it was not used at all and only
1284   contained generated files without implementation
1286 USER VISIBLE CHANGES BETWEEN TAO-1.5.9 and TAO-1.5.10
1287 =====================================================
1289 . Added support for forward declared IDL structs and unions to the
1290   Interface Repository loader
1292 . A new securty option is available using the Access_Decision interface
1293   defined by the CORBA Security Level 2 specification. This enables the
1294   implementation of servers using mixed security levels, allowing some
1295   objects to grant unrestricted access while others require secure
1296   connections. See orbsvcs/tests/Security/mixed_security_test for
1297   details on using this feature.
1299 . Removed GIOP_Messaging_Lite support for all protocols
1301 . Fixed a hanging issue in persistent Notify Service during disconnection.
1303 . Added IPv6 support to DIOP
1305 . Added -Gos option to the IDL compiler to generate ostream
1306   operators for IDL declarations
1308 USER VISIBLE CHANGES BETWEEN TAO-1.5.8 and TAO-1.5.9
1309 ====================================================
1311 . When using AMI collocated in case of exceptions they are deliverd
1312   to the reply handler instead of passed back to the caller
1314 . Added support for IPv6 multicast addresses when federating RTEvent
1315   channels.
1317 . Fixed a bug in the IDL compiler's handling of octet constants where
1318   the rhs consists of integer literals and infix operators (Bugzilla 2944).
1320 . TAO_IDL enhancements for built in sequence support in TAO DDS.
1322 . Provide support for TAO DDS zero-copy read native types.
1324 . TAO_IDL fix for lock-up and incorrect error message generation for
1325   missing definitions within local modules. This fix also stops the
1326   erronious look-up in a parent scoped module (with the same name as
1327   a locally scoped module) that should have been hidden by the local
1328   scope definition.
1330 . The TAO_IORManip library now has a filter class that allows users to
1331   create new object references based on existing multi-profile object
1332   references by filtering out profiles using user defined criteria.  The
1333   use of -ORBUseSharedProfile 0 is required for this to function.
1335 . A problem in TAO_Profile::create_tagged_profile was fixed. This problem
1336   triggered only when MIOP in multi-threaded application was used.
1338 . Added IPv6 support in MIOP so that IPv6 multicast addresses can be used in
1339   addition to those IPv4 class D addresses. DSCP support is implemented in
1340   MIOP as well. However, since MIOP only allows one way communication then it
1341   makes sense to use DSCP on the client side only.
1343 USER VISIBLE CHANGES BETWEEN TAO-1.5.7 and TAO-1.5.8
1344 ====================================================
1346 . Fixed bug in IDL compiler related to abstract interfaces
1348 . Fixed several issues in the AMI support
1350 . Added new -ORBAMICollocation 0 which disables AMI collocated calls
1352 . Improved a lot of test scripts to work with a cross host test
1353   environment where client and server are run on different hosts.
1354   This is used for automated testing with VxWorks
1356 . Fixed handled of a forward request when doing a locate
1357   request call
1359 . Added an option, -a, to the Event_Service to use the thread-per-consumer
1360   dispatching strategy instead of the default dispatching strategy.
1362 . Improved wide character compilation support.
1364 . Fixed IDL compiler to run on both OpenVMS Alpha and OpenVMS IA64.
1366 . Fixed memory leaks in the ImpleRepo_Service.
1368 . Fixed a bug in the IDL compiler relating to include paths.
1370 . Fixed Trader Service issues related to CORBA::Long and CORBA::ULong.
1372 USER VISIBLE CHANGES BETWEEN TAO-1.5.6 and TAO-1.5.7
1373 ====================================================
1375 . Removed ACE_THROW_RETURN.
1377 . Fixed a memory crash problem when using ETCL IN operator with
1378   Notify Service filter.
1380 . Remove exception specifications from ORB mediated operations (C++
1381   mapping requirement)
1383 . New diffserv library to specify diffserv priorities
1384   independent of RTCORBA
1386 . Addressed Coverity errors in core TAO libraries, TAO_IDL compiler,
1387   stubs and skeletons generated by TAO_IDL and the TAO Notification
1388   Service.
1390 . Extended current DynamicInterface to allow DII+AMI+DSI+AMH.
1391   (Thanks to OMC <www.omesc.com> for the sponsorship.)
1393 . Fixed bug in IDL compiler code generation for a comma-separated list of
1394   sequence typedefs.
1396 . TAO no longer sets the unexpected exception handler.
1398 USER VISIBLE CHANGES BETWEEN TAO-1.5.5 and TAO-1.5.6
1399 ====================================================
1401 . Removed all exception environment macros except ACE_THROW_RETURN
1402   and ACE_THROW_SPEC
1404 USER VISIBLE CHANGES BETWEEN TAO-1.5.4 and TAO-1.5.5
1405 ====================================================
1407 . Added an IDL compiler option to generate an explicit instantiation
1408   and export of template base classes generated for IDL sequences,
1409   sometimes necessary as a workaround for a Visual Studio compiler bug
1410   (Bugzilla 2703).
1412 . Beefed up error checking in the IDL compiler when processing
1413   #pragma version directives.
1415 . Modified IDL compiler's handling of a syntax error to eliminate
1416   the chance of a crash (Bugzilla 2688).
1418 . Fixed a bug in code generation for a valuetype when it inherits
1419   an anonymous sequence member from a valuetype in another IDL file.
1421 . Extended tests in tests/IDL_Test to cover generated code for
1422   tie classes.
1424 . Modified tao_idl to emit code to set the exception data in the
1425   Messaging::ExceptionHolder in the AMI _excep operation.  This has the
1426   effect of allowing user defined exceptions to be recognized when
1427   raising an exception without collocation.  This fixes Bug 2350.
1429 . Added hooks to enable custom Object to IOR conversion or allowing local
1430   objects (such as Smart Proxies) to be converted to an IOR string.
1432 . Removed warning issued when using corbaloc with a default object key.
1434 . Added implementation of Dynamic Any methods insert_*_seq() and
1435   get_*_seq() (spec-defined for sequences of IDL basic types),
1436   as well as implementation of insert and get methods for abstract
1437   interfaces.
1439 . Added support for CORBA/e compact
1441 . Added support for CORBA/e micro
1443 . Fixed issues relating to the CosTrading Server library.  The constraint
1444   language lexer now allow negative floating point values, 64-bit signed and
1445   unsigned integers (which can currently be represented as octal or decimal).
1446   Also, fixed a bug where negative integers were being stored and compared as
1447   unsigned integers which resulted in -3 > 0 evaluating to true.
1449 . Added Compression module that delivers the infrastructure
1450   classes with which data can be compressed. This can be used
1451   by regular applications but then also by the ORB in the future.
1453 . Removed support for -Ge 0 and -Ge 1 from the IDL compiler. In practice
1454   this means that the IDL compiler doesn't generate any environment macros
1455   anymore.
1457 . Fixed a problem where TAO mistakenly considered ALL messages
1458   with zero-length payload to be errors and was thus not properly
1459   parsing and handling the GIOP CloseConnection message.  This is
1460   tested via Bug_2702_Regression.
1462 . Added an optimization to servant activation to eliminate calls to
1463   check_bounds() on the object key sequence.  This has been observed
1464   to yield a 30% decrease in activation time for debug builds on VC71
1465   and linux gcc.
1467 . Merged in changes from OCI's distribution which originate from
1468   OCI request tickets [RT 8449] and [RT 8881]. In their totality,
1469   these changes add a feature whereby the notification service
1470   implementation can utilize a separate ORB for dispatching events to
1471   consumers.
1473 . Contributed the Transport::Current support - a TAO-specific
1474   feature providing IDL interfaces which enables users to obtain
1475   information about the Transports used to send or receive a
1476   message.  The basic intent is to provide (typically) a
1477   read-only interface to obtaining data like the number of bytes
1478   transferred or the number of messages sent and received.
1479   Since specific Transports may have very different
1480   characteristics, a simple generic implementation for
1481   Transport::Current is insufficient.  This implementation also
1482   provides support for specific Transport implementations. See
1483   the TC_IIOP implementation, which is an IIOP-specific
1484   Transport::Current. It extends the generic interface with
1485   operations providing information about IIOP endpoints, like
1486   host and port.  By default, TAO builds with support for this feature.
1487   Define "transport_current=0" in your default.features file to disable
1488   it. For more details of how the feature is intended
1489   to be used, see docs/transport_current/index.html
1491 USER VISIBLE CHANGES BETWEEN TAO-1.5.3 and TAO-1.5.4
1492 ====================================================
1494 . Added support for ACE_Dev_Poll_Reactor to Advanced_Resource_Factory.
1496 . Improved tao_idl performance, particularly over networked
1497   filesystems.
1499 . Added new option for the RTEC, -ECDispatchingThreadsFlags, that
1500   allows the user to pass in a list of thread creation flags and
1501   priority for dispatching threads.  These can be used for either the
1502   MT dispatching strategy or the TPC dispatching strategy.  See
1503   docs/ec_options.html for usage information.
1505   Also added -ECDebug option to enable debugging output from the RTEC.
1506   Only the option and variable was added, but no messages.  Therefore,
1507   at the moment, this does not generate much output.
1509 . Resolved Bugzilla #2651 to eliminate incompatibility with the new
1510   mechanism, allowing per-ORB configurations.
1512 . Fixed Bugzilla #2686, which involved correctly managing memory during
1513   exceptional situations.  Throwing an exception during the creation of the
1514   Root POA would cause a leak of a TAO_Adapter and POA manager related
1515   objects.
1517 . Fixed Bugzilla #2699, by uninlining generated code for the
1518   TIE template classes. Inlining of virtual functions in this
1519   code was causing problems with RTTI on some compilers. As a side
1520   result, the idl compiler doesn't generate a S_T.inl file anymore.
1522 . Fixed a bug where calling _set_policy_overrides() on a collocated servant
1523   would return an unusable object reference.
1525 . Addressed a number of Coverity errors (CHECKED_RETURN, DEADCODE, LOCK,
1526   USE_AFTER_FREE, RESOURCE_LEAK, FORWARD_NULL).  In particular, missing
1527   return value checks and unreachable code in the ACE CDR stream
1528   implementation were addressed.  Memory and resource management in the ACE
1529   Configuration classes was corrected.  A potential deadlock upon error was
1530   fixed in ACE_OS::rw_unlock().  Missing return value checks were addressed
1531   in ACE_OS::open() on Windows and ACE_Thread_Manager::wait().  A potential
1532   dereference of a null pointer in ACE_OS::scandir_emulation() was
1533   corrected.  Lastly, the ACE_UUID::lock() accessor interface and
1534   implementation was cleaned up so that it would not return a lock whose
1535   memory had been freed.
1537 USER VISIBLE CHANGES BETWEEN TAO-1.5.2 and TAO-1.5.3
1538 ====================================================
1540 . Added new options, -CECConsumerOperationTimeout and
1541   -CECSupplierOperationTimeout, to the CosEvent service.  See Bugzilla #2594
1542   and $TAO_ROOT/docs/cec_options.html for details.  The purpose of these
1543   options is to use the relative round-trip timeout feature from the TAO
1544   Messaging library to detect clients that are "hung" in push() or pull()
1545   operations but would otherwise not be detetcted as "bad" by the
1546   -CECReactive*Control options (since they have a thread available in
1547   orb->run()).
1549 . The Tk/Fl/Qt/Xt resource factories have been moved to subdirectories
1550   to make maintenance easier. If you are using these you have to update
1551   your include paths.
1553 . Fixed a compatibility problem between TAO and ORBs using Valuetype ID
1554   indirection, such as JacORB. This problem was inadvertently introduced
1555   in 1.5.2.
1557 . Oneway requests when using SYNC_NONE, SYNC_DELAYED_BUFFERING, or
1558   SYNC_EAGER_BUFFERING will be queued until the connection is completed.
1559   Connection completion occurs when one of the following occurs:
1560    a) A one-way request that does NOT use one of the sync-scopes mentioned
1561         above is sent via the same transport
1562    b) A two-way request is sent via the same transport
1563    c) orb->run() is called
1564   Applications that do not currently do one of the above will no longer
1565   establish a connection and therefore no data will be sent.
1567 . Fixed a problem with location forward objects being raised by colocal
1568   ServerInterceptors. This problem did not occure interacting with remote
1569   servers.  Now the raised object-reference will take effect on the object
1570   reference being held by client.
1572 . Fixed a problem with properly shutting down socket connections by
1573   explicitly calling release_os_resources from the destructor of protocol
1574   specific connection handlers. Maintainers of third-party (non-DOC)
1575   pluggable protocols must verify they are releasing any resources they
1576   acquired. The base Connection_Handler destructor can't do it for them.
1578 . Added COIOP as pluggable protocol. This stands for Collocated Only IOP
1579   and it only allows collocated calls. Can be used for embedded systems that
1580   do use corba but don't make any remote calls.
1582 . Notication service works with Microsoft Visual C++ 8.
1584 . Fixed Bugzilla #2582, related to IDL compiler generation of arg traits
1585   template specialization for typedefs.
1587 . Fixed Bugzilla #2583, a bug in the recursive check for local type
1588   containment that controls CDR operator generation in the IDL compiler.
1590 . Addressed Bugzilla #2603, which called for a -oS option for the IDL
1591   compiler to set the output directory for skeleton files.
1593 . Fixed Bugzilla #2634, which reported a bug in code generation for some
1594   escaped IDL identifiers.
1596 . Eliminated the dependency of the TAO Interface Repository IDL3 test on
1597   CIAO libraries.
1599 . Added output message to the IDL compiler, containing the name of the IDL
1600   file being processed.
1602 . Fixed IDL compiler to recognize CORBA::AbstractBase as a pseudo object.
1604 . Fixed a regression on Bugzilla #2074 caused by a reference
1605   counting problem on the Connection Handler.  This change
1606   affects all pluggable transport protocol implementations.
1607   Maintainers of third-party (non-DOC) pluggable protocols will
1608   need to make similar changes to their *_Connection_Handler
1609   implementations.
1611 . Fixed parsing of explicitly wildcarded IIOP endpoints.
1612   These might be iiop://[::]:, iiop://[]: or iiop://0.0.0.0:
1613   The first two examples are useful only when IPv6 is supported.
1614   The last example forces only IPv4 endpoints even when IPv6 is
1615   supported. Use iiop://: to get both IPv4 and IPv6 endpoints.
1617 . Fixed Bugzilla #2651 to properly handle order of destruction
1618   of Codeset Manager instances owned by the Default Resource
1619   Factory.  The ORB_Core is now responsible for managing the
1620   lifecycle of the Codeset Manager instance instead of the
1621   Resource Factory.  The Resource Factory now gives up ownership
1622   of the objects it creates.
1624 . Fixed Bugzilla #2545 so collocated DII oneway requests do not
1625   crash in get_in_arg().
1627 . Added a new "-b" option to the IDL compiler to control whether
1628   or not arguments on oneway invocations are "cloneable".  If the
1629   arguments are cloneable, and Custom Servant Dispatching (CSD)
1630   strategy is in use, the arguments for collocated oneways can be
1631   cloned during the copy of the TAO_Server_Request, which gives a
1632   performance improvement over the old method of copying the
1633   arguments using marshaling.
1635 . Fixed Bugzilla #2604 so the Implementation Repository can
1636   properly keep track of servers it launched in PER_CLIENT
1637   activation mode.
1639 . Fixed build warnings from some 64-bit compilers in code in which
1640   unsigned long and ACE_CDR::ULong were mixed.
1642 . Added various performance enhancements.  Many thread mutex/integer
1643   reference counts were replaced with ACE_Atomic_Op<unsigned long>.  Some
1644   buffers are allocated on the stack instead of the heap where possible.
1646 USER VISIBLE CHANGES BETWEEN TAO-1.5.1 and TAO-1.5.2
1647 ====================================================
1649 . To be able to support CORBA/e the pidl files within the core libs are
1650   now compiled during the building of the core libs. This means that gperf
1651   and TAO_IDL must be build before you can build the core libs!
1653 . Changed NT_Naming_Service project to require new MPC feature variable
1654   "winnt".  Avoids building and installing this on non-Windows systems.
1655   Fixes bugzilla bug #2412.
1657 . Changed NT_Notify_Service project to require new MPC feature variable
1658   "winnt".  Avoids building and installing this on non-Windows systems.
1659   Fixes bugzilla bug #2411.
1661 . Changed Telecom Log Service plug-in Strategy Interface.
1663   Added get_record_attribute(), set_record_attribute(), and
1664   set_records_attribute(); removed remove(), retrieve(), and update().
1665   This will allow plug-in Strategies to handle these high-level
1666   operations more efficiently.
1668   Added get_gauge() and reset_gauge(), to maintain "gauge" used for
1669   capacity threshold alarms when log channel's LogFullActionType is
1670   DsLogAdmin::wrap.  This resolves bugzilla 2420.
1672 . Allow different ORB instances to use a different sets of Service
1673   Objects in their own Service Repository instances. This resolves
1674   bugzilla #2486.
1676 . Integrate new sequence implementation made by Carlos O'Ryan. This
1677   also includes a rework of the TAO_String_Managers and CORBA::(W)String
1678   implementations.
1680 . Store Value Factories per orb instead of per process and made the
1681   storage thread safe.
1683 . Add on demand write functionality that writes out GIOP fragments to
1684   reduce the memory usage
1686 . The TIE files (_S.*) are not generated by default anymore by the
1687   IDL compiler. If you need these for your project, add -GT to the
1688   idl compiler flags.
1690 . Added optional support for implicitly typed values. When the Valuetype
1691   library is compiled with TAO_HAS_OPTIMIZED_VALUETYPE_MARSHALING defined
1692   TAO will skip the marshaling of the value's type when it is allowed to
1693   do so. It is allowed by the spec to do so when the value's actual type
1694   matches the formal type for the parameter through which the value is
1695   passed. As older versions of TAO did not correctly unmarshal implicitly
1696   typed values, the default behavior is for TAO to always marshal the
1697   type id for values.
1699 . Added support for CORBA specified truncatable valuetypes.
1701 . Added support for CORBA specified POAManagerFactory.
1703 . Added TAO-proprietary EndpointPolicy. This is used as a filter to limit
1704   which of an ORBs endpoints are inserted into an object reference. The
1705   endpoint policy is applied to POAManagers created via the POAManagerFactory
1706   and affect all POAs associated with that POAManager.
1708 . Added a client-side connection optimization, the Parallel Connect Strategy
1709   This strategy makes the client evaluate all endpoints in profile at the same
1710   time when trying to connect to the server. For this to work the server must
1711   be run with -ORBUseSharedProfile 1 and the client must be run with
1712   -ORBUseParallelConnect 1.
1714 . Fixed several bugs related to asynchronous connection establishment. These
1715   are represented by the AMI_Buffering tests and bug 2417's regression test.
1717 . Refactored PICurrent, removing PICurrent_Copy_Callback classes, subsuming
1718   this functionality inside PICurrent_Impl where it can be controlled
1719   correctly. The copying of PICurrent objects still performs lazy/deferred
1720   copying where possible, only taking a real physical copy when modifications
1721   are attempted. Interest in PICurrent objects where lazy copies have been
1722   taken can now be correctly reversed when the lazy copy is destroyed fixing
1723   a range of call-back bugs that were performed on already destroyed objects.
1724   (For detail see bugzilla 2552.)
1726 . Updated/Enhanced TAO/utils/nslist utilities nslist,nsadd and nsdel.
1727   These tools now allow for full ID.Kind processing (the separating character
1728   is user controlled, defaulting to .) and sub-context path processing (the
1729   separating character is also user controlled, defaulting to /).
1730   nsadd allows for (re)binding naming contexts in addition to final objects
1731   nsdel allows for destroying naming contexts when unbinding.
1732   nslist output has been prittyfide with user controlled character drawing
1733   of the naming context tree or sub-tree of full or limited depth.
1734   For full usage details execute these utilities with a ? parameter.
1736 . Add the ability to use the sendfile API to send out data
1737   on the transport
1740 USER VISIBLE CHANGES BETWEEN TAO-1.5 and TAO-1.5.1
1741 ====================================================
1743 . Fixed LOCATION_FORWARD_PERM handling. See bugzilla #1777 for full details.
1745 . Fixed bug in detecting name clashes between existing identifiers and
1746   extra code generated for AMI and AMH.
1748 . Fixed bug in connection closure. See bugzilla # 2391
1750 . Added support for the --enable-fl-reactor configure option to the
1751   autoconf build infrastructure to build the TAO_FlResource library.
1753 . Added support for the --enable-qt-reactor configure option to the
1754   autoconf build infrastructure to build the TAO_QtResource library.
1756 . Added support for the --enable-xt-reactor configure option to the
1757   autoconf build infrastructure to build the TAO_XtResource library.
1759 . Fixed a race condition involving two threads active in the same
1760   connection handler at the same time. See bug# 1647 for details.
1762 . Changed #include "..." preprocessor directives to use fully
1763   qualified (from $(ACE_ROOT), $(TAO_ROOT), or $(TAO_ROOT)/orbsvcs)
1764   paths.  We had been depending on non-standard behavior where files
1765   #included with "..." are first looked for in the current directory
1766   and then in the same directories used by #include <...>.  See bug
1767   #2448 for details.
1769 USER VISIBLE CHANGES BETWEEN TAO-1.4.10 and TAO-1.5.0
1770 ====================================================
1772 . Fixed Transport to handle incoming fragmented messages propperly, abstract
1773   interfaces TAO_Pluggable_Messaging and TAO_Transport have been
1774   modified. Custom transport/messaging implementations require
1775   interface modification.
1777 . Fix collocation optimisation when a location forward is received directing a
1778   client to a collocated object.
1780 . Prevent an OBJ_ADAPTER exception when using an object reference containing
1781   an ObjectID that corresponds to a collocated IORTable entry.
1783 . Reverted solution that allowed POA-level control over access to
1784   security-enabled objects due to conflicts with the specification,
1785   i.e. the  Security::SecQoP* are not server-side policies.
1787 . When suppressing any and typecodes during IDL compilation this will not
1788   trigger compile errors due to missing any insert operations
1790 . Bug fix in IFR when creating typecodes for nested structs and unions.
1792 . Added support for the --enable-tk-reactor configure option to the
1793   autoconf build infrastructure to build the TAO_TkResource library.
1795 IDL COMPILER
1796 ------------
1798 . Fix problem with missing includes in the skeleton files for imported arg
1799   trait declarations.
1801 USER VISIBLE CHANGES BETWEEN TAO-1.4.9 and TAO-1.4.10
1802 ====================================================
1804 . Fixed a bug, which allowed security unaware clients to make
1805   invocations on secure objects, when the ORB was configured with
1806   support for Security::SecQoPNoProtection.
1808 . Fixed Bugzilla #2145, which was preventing the building of
1809   the IDL compiler on HPUX.
1811 . Added boxed valuetype support to the Interface Repository
1812   loader.
1814 . Fixed several bugs in the PICurrent implementation
1816 . Fixed GOA factory name
1818 . Fixed -ORBConnectionHandlerCleanup arguments to accept 0 and 1.
1820 . Improved Portable Interceptor implementation.
1822 . Autoconfig improvements.
1824 . Improved Real-time CORBA support for dynamic threads.
1826 IDL COMPILER:
1827 -------------
1829 . Some bug fixes. See bug #2375 and #2390.
1831 USER VISIBLE CHANGES BETWEEN TAO-1.4.8 and TAO-1.4.9
1832 ====================================================
1834 . Added new endpoint selector implementation - Optimized
1835   Connection Endpoint Selector. A member of the tao/Strategies library,
1836   use svc.conf file to load the OC_Endpoint_Factory object. See
1837   tests/AlternateIIOP/svc.conf for an example.
1839 . Continued splitting ORB Services into stub, skeleton, and
1840   implementation libraries.  Changes to the Concurrency Service,
1841   Property Service, and RTEventLog Admin Service (TAO's RTEvent
1842   varient of the OMG Telecom Log Service) have been committed.
1844 . Added a new ORB run-time option "-ORBUseLocalMemoryPool [0|1]" which
1845   controls an individual application's use of TAO's Local Memory Pool.
1846   TAO can use a local memory pool to satisfy some of its needs for
1847   heap storage, as it is often more efficient than using the
1848   platform's default memory allocator. The pool will always grow as
1849   large as necessary to satisfy memory allocations, but it will never
1850   shrink. This means that sometimes a process can retain memory that
1851   it no longer needs. If the default allocator is used then TAO gives
1852   memory back as soon as it is not needed.
1853   The UseLocalMemoryPool option selects between using the local memory
1854   pool or using the default allocator, where 0 means don't use the pool,
1855   1 means use the pool. The default is still controlled by the original
1856   compile-time option controlled by the #define TAO_USE_LOCAL_MEMORY_POOL
1857   which defaults to 1 if not specified.
1859 . Add a property -ORBKeepalive to allow a user to specify that
1860   SO_KEEPALIVE is set on IIOP connections. See docs/Options.html
1861   and Bugzilla #2374.
1863 . Add support for RTCORBA::TCPPrototocolProperties::keep_alive, when
1864   RTCORBA is used, and the application is using a Server or Client
1865   ProtocolPolicy.
1867 . Refined the Telecom Log Service Strategy Interface.  Added methods
1868   to fetch/store capacity alarm thresholds, log QoS, and "week mask".
1869   Rework locking to avoid race conditions and to improve performance.
1871 IDL COMPILER:
1872 -------------
1874 . Fixed bug in computation of repository ids for predefined types.
1876 . Fixed bug in the handling of TAO_IDL_INCLUDE_DIR.
1878 Interface Repository:
1879 ---------------------
1881 . Fixed bug in the lookup of a valuetype member's type using its
1882   repository id.
1884 . Fixed bug in IFR loader in checking for pre-existence before
1885   creating an entry corresponding to an IDL typedef.
1887 . Fixed bug in lookup when checking for a local name clash.
1889 . Fixed bug in the describe_interface() operation when the IDL
1890   interface being described has multiple parents.
1892 USER VISIBLE CHANGES BETWEEN TAO-1.4.7 and TAO-1.4.8
1893 ====================================================
1895 . Fixed bugs in code generation for interfaces that inherit from both
1896   concrete and abstract interfaces.
1898 . Subset Anys and TypeCodes to a separate library. If you use Any/TypeCode
1899   or one of the core TAO libs uses it you should link the AnyTypeCode
1900   library with your application
1902 . PICurrent is moved to the PI library
1904 . POACurrent has been moved back from PI_Server to PortableServer
1906 . Added IPv6 support for IIOP
1908 . When Any and TypeCode generation is suppressed when compiling IDL
1909   no typecodes are generated anymore for user exceptions, they are not
1910   needed for the operation of the ORB
1912 . When making AMI invocation and the send blocks we buffer the message
1913   and send it out when the transport is available again
1915 . Emulated C++ exceptions are not maintained anymore. We are keeping
1916   the macros in the TAO code until x.5.1 is out, if nobody sponsors
1917   maintenance at that moment the macros will be removed from TAO.
1918   See also http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=2256
1920 . Support the latest AMI mapping, the old mapping will be kept working
1921   until 1.5.1 has been released. If you need the old mapping add
1922   the define TAO_HAS_DEPRECATED_EXCEPTION_HOLDER to your config.h
1923   file before you build TAO and the TAO_IDL compiler
1925 . Added CodecFactory::create_codec_with_codesets to create a codec with
1926   a specific codeset. See OMG issue 6050 for the background.
1928 . PortableInterceptor::IORInterceptor has been splitted in IORInterceptor
1929   and IORInterceptor_3_0. If you use IORInterceptors read the ChangeLog for
1930   the details, maybe you have to update your code!
1932 . Added the new Custom Servant Dispatching (CSD) feature to provide user
1933   applications with the ability to implement and "plug-in" custom strategies
1934   to handle the dispatching of requests to servants. This new feature is not
1935   currently tested for VxWorks. See TAO release notes for more information.
1937 . Added support for an TAO "versioned" namespace.  When enabled, TAO
1938   library sources will be placed within a namespace of the user's
1939   choice or a namespace of the form TAO_1_4_7 by default, where
1940   "1_4_7" is the TAO major, minor and beta versions.  The default may
1941   be overridden by defining the TAO_VERSIONED_NAMESPACE_NAME
1942   preprocessor symbol.  Enable overall versioned namespace support by
1943   adding "versioned_namespace=1" to your MPC default.features file.
1945 . Changed generated signatures of some valuetype member
1946   accessor/mutator pairs to be consistent with IN
1947   parameter semantics.
1949 . Added spec-required generation of member-initializing
1950   constructor for valuetypes. See C++ mapping (03-06-03)
1951   section 1.17.2. Closes Bugzilla #2270.
1953 . Added default include paths $TAO_ROOT, $TAO_ROOT/tao,
1954   $TAO_ROOT/orbsvcs, and $CIAO_ROOT/ciao to IDL compiler
1955   execution, eliminating the need to add them explicitly
1956   to the command line.
1958 . Added immediate exits to IDL compiler when some name clash
1959   errors are encountered, avoiding a crash if parsing is
1960   continued. Closes Bugzilla #2281.
1962 . Changed the behavior of the _default() method (generated
1963   for IDL unions that have an explicit or implicit default
1964   case label) to clean up memory used by the freed member,
1965   if necessary.
1967 . Fixed bug in IDL compiler when handling a native exception
1968   in an operation declared in Messaging::ExceptionHolder.
1970 . Although not presently supported by CIAO, added error
1971   checking to the IDL compiler's parsing of IDL home
1972   primary keys, which constrain the basic valuetype
1973   syntax in several ways.
1975 . Fixed order of generated base class stub constructor calls
1976   when the IDL interface has both concrete and abstract parents.
1978 . Fixed a bug in the handling of forward declared interfaces
1979   that have both concrete and abstract parents.
1981 . Fixed the command line parsing to preserve the literal
1982   quotes if they are used in an include path that has a space.
1983   Closes Bugzilla #2219.
1985 . Many changes related to refactoring of Anys and Typecodes
1986   into a separate library (POC is Johnny Willemsen
1987   <jwillemsen@remedy.nl>).
1989 . Merging of many Notification Service changes/fixes from OCITAO to
1990   the DOC version.  These generally addressed stability issues such as
1991   memory leaks, thread leaks, etc.
1993 . Introduction of the versioned namespaces changed the name of the
1994   factory function used for dynamically loading the Notification
1995   Service persistence mechanisms.  See the service configurator file
1996   in orbsvcs/tests/Notify/XML_Persistence for an example.
1998 USER VISIBLE CHANGES BETWEEN TAO-1.4.6 and TAO-1.4.7
1999 ====================================================
2001 . The Telecom Logging Service now supports dynamically loaded Strategies
2002   which can be used to implement a persistent log record store.  If none
2003   are specified, a default in-memory hash table implementation is used.
2005 . The CodecFactory is moved to its own library. If you use this in your
2006   application include tao/CodecFactory/CodecFactory.h and link the
2007   TAO_CodecFactory with your app
2009 . The ORBInitializer registry, PolicyFactory registry and ORBInitInfo
2010   are moved to the new PI library. If you use these clases include
2011   tao/PI/PI.h in your application code and link the new TAO_PI
2012   library with your application.
2014 . All server side PortableInterceptor support is moved to the new
2015   TAO_PI_Server library. If you use this, include tao/PI_Server/PI_Server.h
2016   in your application code and link the new TAO_PI_Server lib
2018 . A new set of examples and support code that show how to set up a
2019   multicast-based federation of  Notification Services is now available
2020   in $TAO_ROOT/orbsvcs/examples/Notify/Federation.
2022 . Hard coded loading of services with Service Configurator now uses the
2023   ACE_DYNAMIC_SERVICE_DIRECTIVE macro which also works when the xml
2024   version of service config is enabled.
2026 . The Codeset negotiation support is in its own library. The hooks are
2027   still present in the ORB Core to dynamically load the codeset support
2028   if needed. This behavior is overridden by the new ORB_init option
2029   -ORBNegotiateCodesets 0.
2031 . The Boxed Value Type as specified by the OMG is now accepted by the
2032   TAO_IDL compiler.
2034 . TAO clients now parse the OMG specified TAG_ALTERNATE_IIOP_ADDRESS
2035   profile component. To generate IORs using that component, add the
2036   new ORB_init option, -ORBUseSharedProfiles 1.
2038 . Refactored TAO's codeset negotiation feature to be optionally loadable.
2039   The implementation is now in a separate library, TAO_Codeset. Applications
2040   not wishing to use codeset support may pass -ORBNegotiateCodesets 0 to
2041   ORB_init() to avoid loading the library. When building dynamic applications
2042   codeset negotiation is available by default. For static applications, the
2043   default is to *not* include codeset negotiation. Staticly linked apps
2044   needing codeset negotiation support must do two things:
2045   - Define the new MPC feature "negotiate_codesets=1" in default.features
2046     and regenerate makefiles
2047   - Add "#include <tao/Codeset/Codeset.h>" somewhere in their application
2048     source. Placing this in the source file that includes calling ORB_init()
2049     is probably the best place.
2051 . Added CORBA::Object::_repository_id() and CORBA::Object::_get_orb()
2052   as described by the spec.
2054 USER VISIBLE CHANGES BETWEEN TAO-1.4.5 and TAO-1.4.6
2055 ====================================================
2057 . The RTOldEvent library has been removed. The RTEvent library has been
2058   split in a stub/skel and serv library.
2060 . Support for bi-directional communication over SSLIOP.
2062 . Servants are now always reference counted, in accordance with changes
2063   to the CORBA specification.
2065 . Added a -x option to catior that works like -f except that it reads
2066   the IOR from standard input rather than from a file. This makes catior
2067   much more like the unix "cat" command, and enables it to be used in a
2068   pipeline.
2070 . Changed the precedence rules for the -ORBListenEndpoints (aka
2071   -ORBEndpoint) so that the host identifier (either hostname or IP
2072   address) that appears in IIOP profiles is determined thus:
2074     1. value from hostname_in_ior (if specified);
2075     2. setting of -ORBDottedDecimalAddresses option;
2076     3. value for hostname in -ORBListenEndpoints specification;
2077     4. whatever TAO magically comes up with based on system
2078        configuration
2080   A new test (TAO/tests/IOR_Endpoint_Hostnames) verifies the
2081   operation of this feature.
2083 . Changed the way that Bidirectional endpoint processing happens when
2084   -ORBDottedDecimalAddresses 1 is in effect. The previous behavior
2085   always used the setting of the receiver, but that caused problems when
2086   the sender and receiver were not using the same dotted decimal
2087   addresses setting.  Bidirectional endpoint processing now uses
2088   whatever the sender provides as the hostname since that's also what
2089   will be in that sender's IORs.
2091 . Added a configuration property -ORBIMREndpointsInIOR [0|1] that
2092   controls whether ImR endpoints are written into persistent IORs. See
2093   $(TAO_ROOT)/docs/Options.html and bugzilla #2123 for usage.
2095 . Increment the refcount on the servant in the id_to_servant and
2096   reference_to_servant methods of the POA.
2098 . Improved g++ 4.0 support.  A number of RTTI related problems have been
2099   fixed, in addition to removal of duplicate internal ORB related
2100   singleton instances.
2102 . Fixed assertion that occured in some thru-POA collocated calls.
2104 . Fixed CORBA::UnknownUserException Any insertion problem.
2106 . Fixed TypeCode equivalence failure when comparing aliased and
2107   unaliased TypeCodes of the same type.
2109 USER VISIBLE CHANGES BETWEEN TAO-1.4.4 and TAO-1.4.5
2110 ====================================================
2112 . The POA is rewritten so that it uses strategies for its implementation.
2114 . The ImR handling is moved to the new ImR_Client library. If your server
2115   needs to register itself to the ImR you have to link the new ImR_Client
2116   library
2118 . The MIOP part of the POA is moved to the GOA. See the latest version of the
2119   MIOP specification. You have to link now with the PortableGroup
2120   library and retrieve a GOA instead of the RootPOA.
2122 . Implemented several missing parts of POA functionality as described
2123   by the latest corba specification. Missing functionality, incorrect
2124   exceptions, incorrect minor codes and much more.
2126 . Splitted the huge PortableServer.pidl file in several smaller files
2127   and regenerated all the generated files in the repository.
2129 . Move TAO_ORB_Manager from PortableServer to Utils library, this is a
2130   helper class.
2132 . The POA has been split in Root_POA and Regular_POA, on this we will more
2133   in the future so that the Root_POA just pulls in the minimal set of things
2134   needed.
2136 . The RootPOA now has "RootPOA" as its adapter name, previously it had
2137   an empty string.  This is required by the CORBA specification, you can
2138   overrule this by defining TAO_DEFAULT_ROOTPOA_NAME if you want to
2139   reduce the "RootPOA" string to be shorter, e.g., "".
2141 . Added support for GNU G++ 4.0.  Additional details in ACE `NEWS' file.
2143 . Explicit template support has been dropped for TAO and it is not possible
2144   to use it anymore.
2146 . CORBALOC/CORBANAME patched a memory leak and fixed performance related
2147   to the use of defaulted object keys.
2149 . Added support for Visual Age on AIX
2151 . Made it possible to run most ORB core test with VxWorks in a cross host
2152   scenario where one part of the test runs on the host and the other part
2153   of the test runs on the VxWorks target
2155 . The skeletons generated by the TAO_IDL compiler have been refactored
2156   to significantly reduce the size of server applications.  Please see
2158   http://www.dre.vanderbilt.edu/Stats/
2160   for metrics that illustrate the magnitude of the reduction.
2162 . New TypeCode implementation that reduces the size of TypeCodes in
2163   memory at run-time.
2165 USER VISIBLE CHANGES BETWEEN TAO-1.4.3 and TAO-1.4.4
2166 ====================================================
2168 . Reimplemented the way that TAO_Transport deals with GIOP headers.  In
2169   some cases partial GIOP message headers were read and used as if a full
2170   GIOP header were received. [Bug 1681]
2172 . GIOP fragment handling has changed where a single large allocation and
2173   copy occurs at the end of a fragment chain instead of an allocation and
2174   copy for every fragment received.
2176 . The tao-config script has been replaced by pkg-config metadata files
2177   which are installed in ${prefix}/lib/pkgconfig by the automake build.
2179 . SHMIOP respects now the dotted decimal addresses setting. When this is
2180   set it uses ip addresses instead of hostnames.
2182 . Removed the usage of the ACE_x_cast macros, we are using the C++ casts
2183   from now on.  The TAO core libraries will be updated before the x.4.5
2184   release.
2186 . Removed MPC code that creates unused and unnecessary subfolders in
2187   Visual Studio projects and makefiles.
2189 . Fixed unclosed temporary file created by the IDL compiler on platforms that
2190   lack mkstemp. [BUGID:2026]
2192 . Fixed IDL compiler bug related to handling null object references in a
2193   sequence. [BUGID:2027]
2195 . Made behavior when marshaling null value of an abstract interface similar
2196   to the behavior of CORBA::Object.
2198 . Made use of 'true' and 'false' with CORBA::Boolean more consistent in TAO
2199   source code and generated code.
2201 . Fixed bug in code generation for typedefs of IDL arrays that are not declared
2202   at global scope or in a module (i.e., in an interface, valuetype, eventtype
2203   or home).
2205 . Fixed bug in code generation of parent operations in AMI ReplyHandler
2206   interfaces.
2208 . Changed remaining instances of C-style casts in generated code to the
2209   appropriate C++-style cast.
2211 . Fixed typo in code generation of bounded sequences of CORBA::Object.
2213 . Fixed bug in code generation for attributes which are unaliased bounded
2214   (w)strings.
2216 . Changed implementation of TAO::Unknown_IDL_Type (a subclass of TAO::Any_Impl
2217   used when an Any is first decoded from the wire or created from a Dynamic
2218   Any) to contain its value in a TAO_InputCDR stream rather than an
2219   ACE_Message_Block*, thus cleaning up alignment and memory management code
2220   related to this type.
2222 USER VISIBLE CHANGES BETWEEN TAO-1.4.2 and TAO-1.4.3
2223 ====================================================
2225 . New pluggable protocol for GIOP over HTBP, known as HTIOP.  Source in
2226   orbsvcs/orbsvcs/HTIOP.
2228 . All TAO-specific vendor IDs are now found in the "TAO" namespace.
2229   Documentation for these constants has also been improved in a number
2230   of cases.
2232 . Further reduced inter-header dependencies, which should improve
2233   compilation times for TAO and TAO applications.
2235 . Fixed memory leak in CDR encapsulation Codec's encode_value() method.
2237 . Modified PerlACE scripts for Tests/test environment to allow
2238   per-platform customization of process startup delay.  Used the changes
2239   in various run_test scripts.
2241 . SyncScope::NONE blocks during connects [Bug 1476].
2243 . Improved compatibility with JDK orb.
2245 . Added Wait on LF No Upcalls (MT_NOUPCALLS) wait strategy.  However,
2246   recent experiences with it indicate there may be problems in scenarios
2247   other than its original motivating case (see ChangeLog).  This feature
2248   should be considered EXPERIMENTAL, and use it at your own risk.
2250 . New CORBALOC parsing is available. This feature allows TAO clients to
2251   use any third-party pluggable protocol in corbaloc strings.
2253 . Fixed bug that caused memory fault when incoming object reference
2254   contains an unknown profile.
2256 . Fixed problem in some modules when platform lacks unsigned long long
2257   support.
2259 . Modified catior to allow decoding of additional protocols.
2261 . The PortableServer library isn't depended anymore on the
2262   ObjRefTemplate and IORInterceptor libraries.  ObjRefTemplate and
2263   IORInterceptor are loaded on demand and depend on PortableServer.
2265 . IDL compiler can be built for environments that lack unsigned long
2266   long.
2268 . Reduced the amount of code generated by the TAO_IDL compiler when
2269   using forward declarations.
2271 . Naming Service implementation memory leak fixes.
2273 . Split ORB Services into stub, skeleton, and implementation libraries.
2274   Changes to the Naming, Trading, Event, Notification, and Logging
2275   Services have been committed.
2277 . Common utilities (tao_imr, tao_ifr, nslist, nsadd, nsdel,
2278   NamingViewer) now installed in $ACE_ROOT/bin.
2280 . Changed #includes of orbsvcs header files to be consistent.  The
2281   pathname now always contains a "orbsvcs/" prefix.
2283 . Notification Service EventReliability and ConnectionReliability QoS
2284   have been added to bring the DOC version of Notification Service
2285   into feature parity (in this area) with OCITAO's 1.3a version of the
2286   Notification Service.  Note that due to changes between 1.3a's
2287   source base and DOC's 1.4.3 source base, this is a re-implementation
2288   of the changes and not a simple port.
2290   In addition to the changes made directly to the Notification Service
2291   a number of test and example programs have been created for the
2292   reliable notification service. These programs may be found in
2293   subdirectories of $TAO_ROOT/orbsvcs/tests/Notify. A README file
2294   in each directory provides more detailed information, and a run_test.pl
2295   script is included to run the example or test.
2297 . A change has been made to the Notification Service IDL to improve build
2298   times and reduce the Notification Service footprint. The change suppresses
2299   the generation proxy and stub code for the many interfaces that are
2300   specified by the OMG, but are not implemented in TAO.
2302 . Implementation Repository refactored to allow the locator and
2303   activator to be used as services in the ACE Service Configurator
2304   framework.  The locator and activator services have been split into
2305   separate libraries and executables.  There have also been
2306   miscellaneous bugs fixed and performance enhancements made.
2308 . Fixed Load Balancer binary generation problem.  Libraries were being
2309   created rather than executables.
2311 . Work around MSVC++ 6 namespace brain damage in new Security/SSLIOP
2312   code.
2314 . Fixed memory management problem in SecurityLevel3 code.
2317 USER VISIBLE CHANGES BETWEEN TAO-1.4.1 and TAO-1.4.2
2318 ====================================================
2320 . Overall
2321   - Support for g++ 3.4.1.
2322   - Support added for latest HP aCC compiler.
2323   - Improved Doxygen documentation.
2324   - Reduced header file dependencies, which should speedup compilation
2325     and help minimize static footprint.
2327 . ORB
2328   - Fixed memory leak in DII exception handling.
2329   - Fixed insertion of label values when creating a union type code
2330     with create_union_tc().
2331   - Support for retrieving AMI and AMH reply handlers from a local
2332     memory pool.
2333   - Fixed location forwarding to collocated objects.
2335 . POA
2336    It is now possible to pass user-defined policies unknown to the
2337     POA with corresponding registered policy factories to the
2338     POA::create_POA() method via its policy list parameter, as
2339     required by the CORBA specification.
2341 . TAO_IDL
2342   - Closed security hole on platforms that support mkstemp() function.
2343   - Fixed potential buffer overrun problem.
2344   - A number of scoped name bugs have been fixed, including some
2345     workarounds for MSVC++ 6 scope resolution problems.
2346   - Fixed mixing of *Implicit and *Explicit inheritance lines when the
2347     there is a chain of inheritance in component homes.
2348   - Improved error checking of component and home declarations.
2349   - Code generation for valuetypes that support one or more abstract
2350     interfaces.
2351   - Added new "-GA" option that causes CORBA::Any operators and
2352     TypeCode bodies to be generated in a separate "fooA.cpp" file.
2353     Helps reduce footprint for applications that do not use Anys or
2354     TypeCodes.
2355   - Added required _downcast() method to generated value factories.
2356   - Disabled generation of implementation class for abstract
2357     interfaces.
2358   - Removed support for reading an IDL file from stdin.  This feature
2359     is legacy code used for debugging the IDL compiler in the early
2360     days of its implementation, and is not useful in application
2361     situations.
2362   - Generated stub/skeleton inline files now end in ".inl" instead of
2363     ".i".  The latter is generally used as the extension for
2364     pre-processed C sources.
2365   - Process multiple IDL files in a single execution by iteration
2366     in a single process, rather than spawning a process for each
2367     file as before.
2368   - Added the remaining spec-defined sequences of predefined types
2369     to the CORBA namespace in TAO.
2371 . Added CPU utilization load monitor to TAO's Cygnus load balancer.
2373 . Added basic CSIv2 support, which is the latest CORBA Security
2374   architecture specification.
2376 USER VISIBLE CHANGES BETWEEN TAO-1.4 and TAO-1.4.1
2377 ==================================================
2381 .  Changed the name of a parameter to the TAO type code
2382    internal method to avoid a name clash with STL.
2384 . Added the spec-required ostream insertion operator for
2385   CORBA::Exception* to go with the existing ostream
2386   insertion operator for CORBA::Exception&.
2388 . Moved the above ostream insertion operators into the
2389   CORBA namespace, so they cannot be accidentally hidden by an
2390   application.
2392 . Moved the declaration of Any operators for some ORB
2393   types so that the corresponding definitions may
2394   remain unlinked if the Any operators are not used in
2395   an application.
2397 . Fixed typo in type code factory code that is compiled
2398   only when ACE_SWAP_ON_WRITE is defined.
2400 . Several fixes to MakeProjectCreator (MPC) files, which
2401   generate GNU makefiles, Borland makefiles, and Microsoft
2402   Visual Studio project files.
2404 . Fixed Any insertion and extraction operators for bounded
2405   strings and wstrings to prevent an error if they are
2406   inserted as bounded with bound 0 and extracted as
2407   unbounded, or vice versa.
2409 . Deprecated the TAO-specific _type() method for exceptions.
2410   which is no longer used anywhere in TAO, and is retained
2411   solely for backward compatibility.
2413 . Fixed bug in TAO_SSLIOP pluggable protocol that prevented large
2414   requests from being sent.  [Bug 1429]
2416 . Cleaned up interceptor memory leaks that occurred when
2417   CORBA::ORB::destroy() was called.
2419 . Fixed problem where a ServerRequestInterceptor could be called after
2420   the ORB was shutdown.  [Bug 1642]
2422 . Overhauled PICurrent support to fix several problems. [Bug 1215, 1738]
2424 . SSLIOP documentation is now available.
2426 . Fixed memory leaks in servers when the ORB is operating in a
2427   thread-per-connection  mode. This problem showed up when clients
2428   keep connecting and disconnecting from the servers.
2430 . Fixed memory leaks in AMI clients that connect to a servers over
2431   unreliable connections that keeps getting dropped.
2433 . Fixed a race connection in Any_Impl implementation.
2435 . Fixed a byte order problem with DSI gateways
2437 . Added support for OVATION to work with this BFO of TAO.
2439 IDL COMPILER
2440 -------------
2442 . Changed the names of some local variables in generated
2443   operation code, to reduce that chance of a name clash.
2445 . Fixed bug where a #pragma version directive is sometimes
2446   not reflected in the generated repository id.
2448 . Disambiguated generated template instantiations for array
2449   _var, _out and _forany classes, when two or more arrays
2450   have the same element type and bound.
2452 . Added check for a name clash between a valuetype member
2453   and the first segment of a scoped name referenced in
2454   the valuetype.
2456 . Fixed incorrect code generation for the CDR operator of a
2457   struct/union/exception with an undefined forward declared
2458   interface member.
2460 . Fixed incorrect code generation for operation arguments
2461   that are typedefs of char, octet and boolean.
2463 . Fixed bug in handling complex recursive types.
2465 . Added -GId command line option to generate line and
2466   file debug info in *I.* files, similar to what is
2467   already generated in *C.* and *S.* files. This debug
2468   info generation is now off by default in *I.* files.
2470 . Fixed the handling of included orb.idl file to generate
2471   corresponding C++ includes for the files orb.idl
2472   itself includes, which contain spec-required declarations
2473   of sequences of basic CORBA types.
2475 . Fixed generation of ORB file includes triggered by the
2476   presence of one or more abstract interfaces in an IDL file.
2478 . Added check to the generation of _setup_collocation()
2479   method for abstract interfaces, to make it more robust.
2481 . Added a version of the realpath() system function that
2482   can be used with LynxOS, which does not have a native
2483   version.
2485 . Fixed code generation for bounded strings and wstrings
2486   when they appear anonymously (without a typedef) as operation
2487   parameters.
2489 . Fixed code generation of flat names for AMI-related types.
2491 . Fixed errors in code generation of sequences of components
2492   and eventtypes.
2494 . Fixed code generation of CDR operators for aggregate types
2495   that contain one or more abstract interfaces.
2497 . Fixed bogus errors produced when there are repeated forward
2498   declarations of an interface.
2500 . Fixed errors in some use cases of the propagation of a #pragma
2501   prefix directive to nested scopes in generated repository ids.
2503 . Fixed errors in code generation for attributes in Asynchronous
2504   Method Handler (AMH) classes.
2506 . Fixed a bug that caused the IDL compiler to crash when it sees
2507   certain kinds of illegal IDL.
2509 . Fixed problems in the interaction of checks for local interface
2510   and for null object reference when marshaling an interface
2511   member of an aggregate type.
2513 . Fixed generation of operations inherited by a local interface
2514   from a non-local one - these operations must be regenerated
2515   as pure virtual.
2517 . Added a space between some generated template parameter
2518   opening brackets and a leading double colon of a fully
2519   scoped name, since some compilers would read "<:" as
2520   the digraph character for ']'.
2522 . Fixed bug in code generation for an array of typedef of
2523   string and wstring.
2525 . Fixed a bug in the generation of repository ids for
2526   explicit, implicit and equivalent interfaces for component
2527   homes.
2529 . Fixed bugs in the generation of marshaling and demarshaling
2530   code for aggregate types with component or eventtype members.
2532 ORB SERVICES:
2533 -------------
2535 IFR:
2538 . Fixed bug in creating entries for attributes, which in CORBA 3.x may
2539   have separate get- and set- exceptions lists.
2541 . Added some method overrides to disambiguate multiple inheritance
2542   problems some compilers would have in classes added to support CORBA
2543   3.0 extensions.
2545 . Fixed bugs in entering attributes of abstract and local interfaces,
2546   and in querying for attributes of components.
2548 . Added a "-m" option to IFR_Service to enable multicast discovery of
2549   the service.
2551 LOAD BALANCING
2552 --------------
2554 . Added two new strategies, namely LoadAverage and LoadMinimum.
2556 NOTIFICATION SERVICE:
2557 ---------------------
2558 . Corrected the implementation to add the caller's <subscribed_types>
2559   to the Admin Object's types. This solves the problem that if a
2560   proxy's connect_structured_push_consumer() is called *AFTER* the
2561   proxy's subscription_change(), then the subscriptions do not work.
2563 . Added the -NoUpdates option to the Notification svc.conf
2564   options. If this option is specified, the
2565   subscription_change/offer_change messages are NOT sent to proxy
2566   objects.  This option is useful to turn off entire updates for
2567   applications that do not reply on subscription_change/offer_change
2568   messages.
2571 USER VISIBLE CHANGES BETWEEN TAO-1.3.6 and TAO-1.4
2572 ==================================================
2574 IDL COMPILER:
2575 -------------
2576 . Fixed bug related to the order of #pragma prefix and #include
2577   directives
2579 . Fixed bug in generation of copy constructor for AMH interface
2580   classes.
2582 . Fixed incorrect handling of a parameter name in an AMI sendc_xxx
2583   operation that clashes with a C++ keyword.
2585 . Readded the generation of _unchecked_narrow () back into the stub
2586   code since it is required by the latest OMG CORBA specification.
2588 CORE ORB
2589 -------
2591 . SCIOP endpoints are not created by default. They need explicit
2592   specification of -ORBEndpoint sciop:// at startup.
2594 . Fixed a bug that caused the ORB to dump a core when server side
2595   interceptors returns an exception and if the operation parameters
2596   contains a sequence an out parameter.
2598 . Fixed a bug that caused extraction of basic data types that are
2599   aliased from an Any.
2601 . Added a couple of regressions tests for some of AMH features.
2603 . Lots of other bug fixes (see the bottom of this message for a
2604   complete list of bugzilla bugids fixed in this beta).
2606 . Fixed a problem with dynamic loading of the ORB. This was introduced
2607   by "magic" static constructors in the TAO PortableServer headers
2608   where dynamic loading/unloading of the ORB failed.
2610 . Added an option, -ORBDisableRTCollocation which allows users to
2611   disable the RT collocation technique used by TAO and fall back on the
2612   default collocation technique used for the vanilla ORB.
2614 . Prevent the TP_Reactor used within TAO from exiting when it receives
2615   a EINTR during select ().
2617 ORB SERVICES
2618 ------------
2620 . Added new security variable so that libTAO_Security could be built
2621   independently of libTAO_SSLIOP, and set the default to true.
2623 . An initial implementation of the FTCORBA spec has been added to
2624   TAO. This release features an initial cut of ReplicationManager,
2625   FaultNotifier, and a FaultDetector. Please see
2627   $TAO_ROOT/orbsvcs/tests/FT_App/README
2629   for a simple example that uses the different FTCORBA features that
2630   have been implemented in TAO.
2632 . Fixed a bug, in PG_ObjectGroupManager::remove_member () methods
2633   which caused the group entry to be available in the location_map
2634   when a member of the object group is removed.